/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Design System Variables */
:root {
  --primary-navy: #0B162C;
  --primary-navy-rgb: 11, 22, 44;
  --secondary-crimson: #8C1C24;
  --secondary-crimson-rgb: 140, 28, 36;
  --accent-gold: #C5A059;
  --accent-gold-hover: #E5C483;
  --bg-cream: #FAF6F0;
  --bg-dark: #050B15;
  --text-dark: #1E2530;
  --text-light: #F5F7FA;
  --text-muted: #8E98A8;
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Montserrat', Helvetica, Arial, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-gold: 1px solid rgba(197, 160, 89, 0.3);
  --border-gold-heavy: 2px solid rgba(197, 160, 89, 0.8);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--primary-navy);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.gold-text {
  color: var(--accent-gold);
  background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #AA7C11 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-padding {
  padding: 6rem 0;
}

/* Section Header */
.section-header {
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-header.dark h2 {
  color: var(--text-light);
}

.section-header .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
}

.section-header .line {
  height: 1px;
  width: 50px;
  background-color: var(--accent-gold);
}

.section-header .star {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

.section-header .subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary-crimson);
  font-weight: 600;
}

.section-header.dark .subtitle {
  color: var(--accent-gold);
}

/* Header & Navigation */
header {
  background-color: rgba(11, 22, 44, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-gold);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
  background-color: rgba(6, 13, 26, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: height 0.4s ease;
}

header.scrolled .navbar {
  height: 70px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.logo-svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 2px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--accent-gold);
  margin-top: 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-sub span {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--secondary-crimson);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
}

.nav-links a.nav-cta {
  background: linear-gradient(135deg, var(--secondary-crimson) 0%, #631217 100%);
  color: var(--text-light);
  padding: 0.95rem 2.25rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  display: inline-block;
  line-height: 1;
  border: 1px solid var(--accent-gold);
  border-bottom: 1px solid var(--accent-gold);
  transition: var(--transition);
}

.nav-links a.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #9F7E3B 100%);
  color: var(--primary-navy);
  border-bottom: 1px solid var(--accent-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  background-image: linear-gradient(rgba(11, 22, 44, 0.85), rgba(5, 11, 21, 0.95)), url('../assets/shop_front.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
  padding-top: 90px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--accent-gold);
  background-color: var(--primary-navy);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.hero-badge span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  color: #FFFFFF;
}

.hero-badge i {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  display: block;
  font-size: 2.2rem;
  letter-spacing: 8px;
  font-weight: 400;
  margin-top: 10px;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #A68444 100%);
  color: var(--primary-navy);
  border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F3E5AB 0%, var(--accent-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: var(--border-gold-heavy);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.hero-meta {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-meta i {
  color: var(--accent-gold);
}

/* About / Legacy Section */
.about {
  background-color: var(--bg-cream);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-content h3 {
  font-size: 1.8rem;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-content h3::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: var(--accent-gold);
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  border-left: 3px solid var(--secondary-crimson);
  padding-left: 1.5rem;
}

.feature-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  border: var(--border-gold-heavy);
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.badge-seal {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background-color: var(--primary-navy);
  color: var(--text-light);
  border: var(--border-gold-heavy);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.badge-seal i {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.badge-seal span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

/* Services Section */
.services {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.service-category {
  background-color: rgba(255, 255, 255, 0.02);
  border: var(--border-gold);
  padding: 3rem;
  border-radius: 4px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-category:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(197, 160, 89, 0.05);
}

.category-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-title i {
  font-size: 1.4rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-item {
  display: flex;
  flex-direction: column;
}

.service-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
}

.service-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  margin: 0 1rem;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

.services-note {
  margin-top: 4rem;
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
}

/* Gallery Section */
.gallery {
  background-color: var(--bg-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: var(--border-gold);
  border-radius: 4px;
  background-color: var(--primary-navy);
  aspect-ratio: 4 / 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 22, 44, 0.95) 0%, rgba(11, 22, 44, 0.4) 60%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--text-light);
}

.gallery-overlay h4 {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  transform: translateY(15px);
  transition: transform 0.4s ease;
}

.gallery-overlay p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  transform: translateY(15px);
  transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--primary-navy);
  color: var(--text-light);
  border-top: var(--border-gold);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(197, 160, 89, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: var(--border-gold);
  padding: 3rem 2rem;
  position: relative;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(197, 160, 89, 0.08);
  background-color: rgba(255, 255, 255, 0.03);
}

.testimonial-card i.quote {
  font-size: 2rem;
  color: var(--accent-gold);
  opacity: 0.3;
  margin-bottom: 1.5rem;
  display: block;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #E2E8F0;
}

.testimonial-stars {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 0.8rem;
}

.testimonial-author {
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  color: var(--text-light);
}

.testimonial-author-title {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* Contact & Info Section */
.contact {
  background-color: var(--bg-cream);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-card {
  background: white;
  border: var(--border-gold);
  padding: 2.5rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.04);
  border-radius: 4px;
}

.contact-card h3 {
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(11, 22, 44, 0.1);
  padding-bottom: 0.75rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(11, 22, 44, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-crimson);
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.info-item-content h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.info-item-content p {
  color: #555;
  font-size: 0.95rem;
}

.info-item-content a:hover {
  color: var(--secondary-crimson);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table td.day {
  font-weight: 600;
  color: var(--primary-navy);
}

.hours-table td.time {
  text-align: right;
  color: #555;
}

.map-wrapper {
  height: 100%;
  min-height: 450px;
  border: var(--border-gold-heavy);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
  background-color: #fff;
  padding: 1rem;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--primary-navy);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
  border: var(--border-gold);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(11, 22, 44, 0.8), rgba(11, 22, 44, 0.8)), url('https://api.mapbox.com/styles/v1/mapbox/dark-v10/static/-78.6472,43.0189,14,0/600x450?access_token=mock');
  background-size: cover;
  background-position: center;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-top: var(--border-gold-heavy);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-links h5, .footer-newsletter h5 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--accent-gold);
  color: var(--primary-navy);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.color-banner {
  background: linear-gradient(90deg, var(--secondary-crimson) 0%, var(--secondary-crimson) 33%, #FFFFFF 33%, #FFFFFF 66%, var(--primary-navy) 66%, var(--primary-navy) 100%);
  height: 4px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Floating Contact Widgets (SMS & WhatsApp) */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-btn i {
  font-size: 1.6rem;
}

.floating-btn.whatsapp {
  background-color: #25D366;
}

.floating-btn.whatsapp::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25D366;
  top: 0;
  left: 0;
  animation: pulse 2s infinite;
  opacity: 0;
  pointer-events: none;
}

.floating-btn.sms {
  background-color: #007AFF; /* Apple Message Blue */
}

.floating-btn.sms::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #007AFF;
  top: 0;
  left: 0;
  animation: pulse 2s infinite 1s;
  opacity: 0;
  pointer-events: none;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.floating-btn .tooltip {
  position: absolute;
  right: 80px;
  background-color: var(--primary-navy);
  color: var(--text-light);
  border: var(--border-gold);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.floating-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .hero-content h1 span {
    font-size: 1.8rem;
  }
  .about-grid, .services-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image img {
    height: 400px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 80px;
    position: relative;
  }
  
  .navbar.active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(11, 22, 44, 0.99);
    border-bottom: 2px solid var(--accent-gold);
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 999;
  }

  .navbar.active .nav-links li {
    width: 100%;
    text-align: center;
  }

  .navbar.active .nav-links a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
  }

  .navbar.active .nav-links a.nav-cta {
    display: inline-block;
    width: 80%;
    max-width: 300px;
    padding: 0.9rem 1.5rem;
    margin-top: 0.5rem;
  }

  .navbar.active .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .navbar.active .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .navbar.active .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 130px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero-content h1 span {
    font-size: 1.2rem;
    letter-spacing: 4px;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
  }

  .hero-meta {
    position: static;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 4rem;
    width: auto;
    align-items: center;
  }

  .section-header h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .about-content h3 {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .about-image img {
    height: 320px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .floating-actions {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .floating-btn i {
    font-size: 1.3rem;
  }
}

/* Page Load fadeInUp Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}

.hero-content h1 {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
}

.hero-desc {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.6s;
}

.hero-actions {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.8s;
}

.hero-meta {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1s;
}

/* Button Shimmer Effect */
.btn-primary, .nav-links a.nav-cta {
  position: relative;
  overflow: hidden;
}

.btn-primary::before, .nav-links a.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  pointer-events: none;
}

.btn-primary:hover::before, .nav-links a.nav-cta:hover::before {
  left: 150%;
  transition: 0.75s;
}

/* Service Item Underline Hover Effect */
.service-item {
  position: relative;
  transition: var(--transition);
}

.service-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item:hover::after {
  width: 100%;
}

/* Feature Card translation hovers */
.feature-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-left-color 0.3s ease;
}

.feature-card:hover {
  transform: translateX(6px);
  border-left-color: var(--accent-gold);
}

/* Brand Emoji Professional Alignment */
.brand-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  vertical-align: middle;
  margin-left: 0.35rem;
  transform: translateY(-2px);
}

.brand-emoji.hero-emoji {
  font-size: 2.8rem;
  margin-left: 0.75rem;
  transform: translateY(-6px);
}

/* ==========================================================================
   Scratch Card Promotion Styles
   ========================================================================== */

/* Modal Container */
.promo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 11, 21, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1rem;
}

.promo-modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Content Card */
.promo-content {
  background-color: var(--primary-navy);
  border: var(--border-gold-heavy);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  position: relative;
  padding: 3rem 2rem 2.5rem 2rem;
  text-align: center;
  color: var(--text-light);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-modal.active .promo-content {
  transform: scale(1) translateY(0);
}

/* Close Button */
.promo-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-close:hover {
  color: var(--accent-gold);
  transform: rotate(90deg);
}

/* Typography inside Promo */
.promo-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Scratch Ticket Box */
.scratch-container {
  position: relative;
  width: 320px;
  height: 200px;
  margin: 0 auto 1.5rem auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(197, 160, 89, 0.4);
  background-color: #080f1e;
  user-select: none;
  -webkit-user-select: none;
}

/* Canvas styling */
.scratch-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: grab;
  transition: opacity 0.5s ease-out;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.scratch-canvas:active {
  cursor: grabbing;
}

/* Hidden Prize Layer */
.prize-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, var(--primary-navy) 0%, #060c18 100%);
  border: 3px dashed var(--accent-gold);
  margin: 0;
  border-radius: 8px;
  padding: 1.5rem;
  box-sizing: border-box;
}

/* Prize Details */
.prize-seal {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
  animation: prize-pulse 2s infinite ease-in-out;
}

.prize-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--text-light);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.prize-desc {
  font-size: 0.8rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.prize-code-box {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px dashed rgba(197, 160, 89, 0.6);
  padding: 0.35rem 1rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--text-light);
  letter-spacing: 1.5px;
}

/* Screenshot Guide Area */
.screenshot-guide {
  background: rgba(140, 28, 36, 0.12);
  border: 1px solid rgba(140, 28, 36, 0.4);
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.screenshot-guide.highlight-alert {
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
  animation: pulse-gold-glow 2s infinite alternate;
}

.screenshot-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.screenshot-header i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.screenshot-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.step-item strong {
  color: var(--text-light);
}

.step-number {
  background-color: var(--accent-gold);
  color: var(--primary-navy);
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Animations */
@keyframes prize-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); color: var(--accent-gold-hover); }
  100% { transform: scale(1); }
}

@keyframes pulse-gold-glow {
  0% {
    box-shadow: 0 0 5px rgba(197, 160, 89, 0.2);
    border-color: rgba(197, 160, 89, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
    border-color: rgba(197, 160, 89, 1);
  }
}

/* Ribbon style for promotional callout */
.promo-badge-nav {
  background-color: var(--secondary-crimson);
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  animation: badge-pulse 2.5s infinite;
}

@keyframes badge-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); background-color: #a8222a; }
  100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .scratch-container {
    width: 280px;
    height: 175px;
  }
  .promo-title {
    font-size: 1.5rem;
  }
  .prize-title {
    font-size: 1.4rem;
  }
  .promo-content {
    padding: 2.5rem 1.25rem 2rem 1.25rem;
  }
}



