:root {
  --purple-900: #0f2744;
  --purple-800: #1a365d;
  --purple-700: #2c5282;
  --purple-600: #3182ce;
  --purple-100: #ebf4ff;
  --gold-500: #b8860b;
  --gold-400: #c9a227;
  --gold-300: #d4af37;
  --ivory: #f8f9fb;
  --cream: #f0f4f8;
  --cream-dark: #e2e8f0;
  --text: #1a202c;
  --text-muted: #4a5568;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(15, 39, 68, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 39, 68, 0.1);
  --shadow-lg: 0 16px 40px rgba(15, 39, 68, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --transition: 0.25s ease;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", "Noto Sans Devanagari", "Noto Sans Telugu", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 4.5rem 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-700);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--purple-900);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.65;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 44, 106, 0.08);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo img {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple-900);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}

.nav-desktop a:hover { color: var(--purple-800); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-switcher {
  display: flex;
  background: var(--white);
  border: 1px solid rgba(74, 44, 106, 0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.lang-btn {
  padding: 0.3rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--purple-800);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple-800);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--purple-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--purple-800);
  border: 1.5px solid var(--purple-800);
}

.btn-outline:hover {
  background: var(--purple-800);
  color: var(--white);
}

.btn-gold {
  background: var(--gold-500);
  color: var(--purple-900);
}

.btn-gold:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--purple-900);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(74, 44, 106, 0.1);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.25rem 1.25rem;
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid var(--cream-dark);
}

.nav-mobile a:last-child { border-bottom: none; }

.hero {
  padding: 6.5rem 0 4rem;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--purple-100) 50%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(74, 44, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple-800);
  margin-bottom: 1rem;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 600;
  color: var(--purple-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 400px;
}

.stat-item {
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--purple-800);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.hero-visual { position: relative; }

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: -1rem;
  left: -0.5rem;
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 220px;
}

.hero-float-icon {
  width: 36px;
  height: 36px;
  background: var(--purple-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero-float-card strong {
  display: block;
  font-size: 0.8rem;
  color: var(--purple-900);
}

.hero-float-card span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.business-details {
  background: var(--white);
  border-bottom: 1px solid rgba(74, 44, 106, 0.08);
  padding: 1.5rem 0;
}

.business-details-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.biz-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--ivory);
  border-radius: var(--radius-md);
  border: 1px solid rgba(74, 44, 106, 0.06);
}

.biz-detail-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--purple-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.biz-detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--purple-700);
  margin-bottom: 0.15rem;
}

.biz-detail-value {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}

a.biz-detail-value:hover { color: var(--purple-800); }

.offers-banner {
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-900) 100%);
}

.offers-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
}

.offers-badge {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  background: var(--gold-500);
  color: var(--purple-900);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
}

.offers-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.offers-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  max-width: 640px;
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

.about-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-features {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-feature {
  display: flex;
  gap: 0.85rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.about-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--purple-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.about-feature h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-900);
  margin-bottom: 0.2rem;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.services { background: var(--white); }

.services-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.service-card {
  padding: 1.35rem;
  background: var(--ivory);
  border: 1px solid rgba(74, 44, 106, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: rgba(74, 44, 106, 0.2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.service-icon {
  width: 42px;
  height: 42px;
  background: var(--purple-800);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple-900);
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: 1fr;
}

.why-card {
  display: flex;
  gap: 0.85rem;
  padding: 1.1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.why-card:hover { transform: translateY(-2px); }

.why-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--gold-500);
  color: var(--purple-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.why-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-900);
  margin-bottom: 0.2rem;
}

.why-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.testimonials { background: var(--purple-900); color: var(--white); }

.testimonials .section-label { color: var(--gold-400); }
.testimonials .section-title { color: var(--white); }

.testimonials-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.testimonial-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.testimonial-card:hover { background: rgba(255, 255, 255, 0.09); }

.testimonial-stars {
  color: var(--gold-500);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.gallery-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 26, 61, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 0.85rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 500;
}

.videos { background: var(--white); }

.videos-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  grid-template-columns: 1fr;
}

.video-card {
  background: var(--ivory);
  border: 1px solid rgba(74, 44, 106, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.video-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 26, 61, 0.35);
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.video-card:hover .video-play { opacity: 1; }

.video-info {
  padding: 1rem 1.15rem 1.15rem;
}

.video-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--purple-900);
  margin-bottom: 0.35rem;
}

.video-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.video-cta-card {
  background: linear-gradient(135deg, var(--purple-100), var(--ivory));
  border-color: rgba(74, 44, 106, 0.12);
}

.video-cta-inner {
  padding: 1.5rem;
  text-align: center;
}

.video-cta-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.video-cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--purple-900);
  margin-bottom: 0.5rem;
}

.video-cta-inner p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cta-strip {
  background: linear-gradient(135deg, var(--purple-800), var(--purple-900));
  padding: 2.5rem 0;
  color: var(--white);
}

.cta-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.cta-strip h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.cta-strip p {
  font-size: 0.875rem;
  opacity: 0.9;
}

.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cta-strip .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.cta-strip .btn-outline:hover {
  background: var(--white);
  color: var(--purple-800);
}

.contact { background: var(--ivory); }

.contact-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 0.85rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--purple-800);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.contact-card h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-900);
  margin-bottom: 0.15rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-card a:hover { color: var(--purple-800); }

.contact-form-wrap {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74, 44, 106, 0.08);
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-900);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  border: 1px solid rgba(74, 44, 106, 0.15);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-600);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-message {
  font-size: 0.8rem;
  margin-top: 0.75rem;
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  display: none;
}

.form-message.success {
  display: block;
  background: var(--purple-100);
  color: var(--purple-800);
}

.form-message.error {
  display: block;
  background: #fde8e8;
  color: #9b2c2c;
}

.map-section { margin-top: 3rem; }

.map-section h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--purple-900);
  margin-bottom: 1rem;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(74, 44, 106, 0.1);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--purple-800);
}

.map-link:hover { color: var(--purple-700); }

.footer {
  background: var(--purple-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255, 255, 255, 0.5); }

.footer-tagline {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.footer-links a,
.footer-contact a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--gold-400); }

.footer-address {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.25rem 0;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--gold-500);
  color: var(--purple-900);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 24px; height: 24px; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(42, 26, 61, 0.92);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--purple-900);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .business-details-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .offers-content { flex: 1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .videos-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-strip-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .business-details-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .header-actions .btn-primary { display: none; }
  .lang-btn { padding: 0.28rem 0.38rem; font-size: 0.6rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
}
