/* ==========================================================================
   THE CAKISTRY - DESIGN SYSTEM & LUXURY STYLESHEET
   Location: Chennai | Phone: +91 97908 58555
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & VARIABLE DECLARATIONS
   -------------------------------------------------------------------------- */
:root {
  /* Palette - Warm, Handcrafted Luxury */
  --bg-cream: #FFF9F5;
  --bg-beige: #F6EEE8;
  --bg-white: #FFFFFF;
  --bg-card: #FAF4F0;
  
  --pink-blush: #F7C8D0;
  --pink-soft: #FDF2F4;
  --rose-muted: #E8AEB7;
  --rose-dark: #C97B88;
  
  --brown-dark: #3A2B27;   /* Primary Text - Never pure black */
  --brown-choco: #5D4037;  /* Secondary / Headers */
  --brown-light: #8C6B61;  /* Subtitles & Muted text */
  --brown-warm: #4A352F;
  
  --gold: #C7A66A;
  --gold-hover: #B59355;
  --gold-light: #FAF3E6;
  --gold-glow: rgba(199, 166, 106, 0.25);

  --whatsapp-green: #25D366;
  --whatsapp-hover: #20BA5C;
  --whatsapp-dark: #128C7E;
  --whatsapp-glow: rgba(37, 211, 102, 0.3);

  /* Typography */
  --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Elevation */
  --shadow-sm: 0 4px 12px rgba(58, 43, 39, 0.04);
  --shadow-md: 0 8px 24px rgba(58, 43, 39, 0.08);
  --shadow-lg: 0 16px 40px rgba(58, 43, 39, 0.12);
  --shadow-float: 0 20px 50px rgba(93, 64, 55, 0.15);
  --shadow-gold: 0 10px 30px rgba(199, 166, 106, 0.2);

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --border-light: 1px solid rgba(93, 64, 55, 0.08);
  --border-gold: 1px solid rgba(199, 166, 106, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--brown-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Utility Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brown-dark);
  font-weight: 700;
  line-height: 1.25;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--pink-soft);
  color: var(--brown-choco);
  border: 1px solid var(--pink-blush);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--brown-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--brown-light);
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

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

/* --------------------------------------------------------------------------
   3. BUTTONS & UI COMPONENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-normal);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
  box-shadow: var(--whatsapp-glow);
}

.btn-primary:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
  background-color: var(--brown-choco);
  color: var(--bg-cream);
}

.btn-secondary:hover {
  background-color: var(--brown-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--brown-dark);
  border: 1.5px solid var(--brown-choco);
}

.btn-outline:hover {
  background: var(--brown-choco);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #D4B67D 100%);
  color: var(--brown-dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(199, 166, 106, 0.4);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   4. NAVIGATION BAR (HEADER)
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 1.25rem 0;
  background: rgba(255, 249, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(93, 64, 55, 0.05);
}

.header.scrolled {
  padding: 0.85rem 0;
  background: rgba(255, 249, 245, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--pink-blush) 0%, var(--rose-muted) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}

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

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brown-dark);
  letter-spacing: 0.5px;
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brown-dark);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--brown-dark);
  padding: 0.5rem;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  padding-top: 9rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(247, 200, 208, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(199, 166, 106, 0.15) 0%, transparent 40%),
              var(--bg-cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  background: #FFFFFF;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: var(--border-gold);
  margin-bottom: 1.5rem;
}

.hero-badge .stars {
  color: #FFB800;
  font-size: 0.9rem;
}

.hero-badge .rating-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brown-dark);
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--brown-dark);
  margin-bottom: 1.5rem;
}

.hero-headline span {
  color: var(--gold);
  font-style: italic;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--brown-light);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-contact-note {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: var(--border-light);
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown-choco);
}

.hero-contact-item svg {
  color: var(--gold);
}

/* Hero Media Card */
.hero-media-wrapper {
  position: relative;
}

.hero-media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 8px solid #FFFFFF;
  background: var(--brown-dark);
  transform: rotate(1.5deg);
  transition: var(--transition-slow);
  height: 500px;
}

.hero-media-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-img-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.hero-img-player.active {
  opacity: 1;
  z-index: 2;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58, 43, 39, 0.15) 0%, rgba(58, 43, 39, 0.25) 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 10;
  animation: float 4s ease-in-out infinite alternate;
}

.hero-floating-card.top-right {
  top: 10%;
  right: -5%;
}

.hero-floating-card.bottom-left {
  bottom: 8%;
  left: -6%;
  animation-delay: 2s;
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--brown-choco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.floating-text h4 {
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--brown-dark);
  margin-bottom: 2px;
}

.floating-text p {
  font-size: 0.75rem;
  color: var(--brown-light);
}

/* --------------------------------------------------------------------------
   6. TRUST BADGES TICKER / BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  background-color: var(--bg-beige);
  padding: 1.5rem 0;
  border-top: var(--border-light);
  border-bottom: var(--border-light);
}

.trust-badges-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 1.1rem;
}

.trust-badge-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown-dark);
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION ("More Than Just Cakes")
   -------------------------------------------------------------------------- */
.about {
  padding: 6rem 0;
  background-color: var(--bg-cream);
  position: relative;
}

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

.about-image-wrapper {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.about-img-single {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  border: 8px solid #FFFFFF;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.about-badge-seal {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110px;
  height: 110px;
  background: var(--brown-dark);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gold);
  transform: rotate(-10deg);
}

.about-badge-seal span.year {
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}

.about-badge-seal span.tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bg-cream);
  margin-top: 4px;
}

.about-content p {
  color: var(--brown-light);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--brown-dark);
}

.about-highlight-item svg {
  color: var(--whatsapp-green);
}

/* --------------------------------------------------------------------------
   8. CATEGORIES SECTION
   -------------------------------------------------------------------------- */
.categories {
  padding: 6rem 0;
  background-color: var(--bg-beige);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.category-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: var(--border-light);
  display: flex;
  flex-direction: column;
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.category-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.category-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-thumb img {
  transform: scale(1.08);
}

.category-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brown-choco);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--brown-dark);
}

.category-info p {
  font-size: 0.9rem;
  color: var(--brown-light);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.category-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: var(--border-light);
}

.category-cta-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--whatsapp-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.category-cta-link:hover {
  color: var(--whatsapp-green);
  gap: 0.6rem;
}

/* --------------------------------------------------------------------------
   9. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-us {
  padding: 6rem 0;
  background-color: var(--bg-cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  background: #FFFFFF;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: var(--border-light);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--pink-blush) 100%);
  opacity: 0;
  transition: var(--transition-fast);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--pink-soft);
  color: var(--brown-choco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.925rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. GALLERY SECTION (PURE MASONRY IMAGE PORTFOLIO)
   -------------------------------------------------------------------------- */
.gallery {
  padding: 6rem 0;
  background-color: var(--bg-beige);
}

.gallery-masonry {
  column-count: 4;
  column-gap: 1.5rem;
  width: 100%;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  background: var(--bg-cream);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 43, 39, 0.25);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 18px;
}

.gallery-overlay i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-float);
  z-index: 2;
}

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

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Portfolio Fullscreen Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 12, 0.95);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-container img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.lightbox-action-btn {
  margin-top: 1.25rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 2010;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 2010;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

/* Responsive Masonry Columns */
@media (max-width: 1024px) {
  .gallery-masonry {
    column-count: 3;
    column-gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .gallery-masonry {
    column-count: 2;
    column-gap: 0.85rem;
  }

  .gallery-item {
    margin-bottom: 0.85rem;
    border-radius: 14px;
  }

  .gallery-item img {
    border-radius: 14px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* --------------------------------------------------------------------------
   11. CUSTOM CAKE PROCESS TIMELINE
   -------------------------------------------------------------------------- */
.process {
  padding: 6rem 0;
  background-color: var(--bg-cream);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 3rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-gold);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 2px solid var(--gold);
  color: var(--brown-choco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.process-step:hover .process-num {
  background: var(--gold);
  color: #FFFFFF;
  transform: scale(1.15);
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--brown-light);
}

/* --------------------------------------------------------------------------
   12. FLAVOURS SECTION
   -------------------------------------------------------------------------- */
.flavours {
  padding: 6rem 0;
  background-color: var(--bg-beige);
}

.flavours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}

.flavour-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.flavour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-blush);
}

.flavour-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--brown-choco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.flavour-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.flavour-info p {
  font-size: 0.875rem;
  color: var(--brown-light);
  margin-bottom: 0.75rem;
}

.flavour-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   13. INTERACTIVE WHATSAPP CAKE BUILDER WIDGET
   -------------------------------------------------------------------------- */
.cake-builder-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #5D4037 0%, #3A2B27 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.cake-builder-box {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.builder-title {
  color: #FFFFFF;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.builder-subtitle {
  color: var(--pink-blush);
  text-align: center;
  margin-bottom: 2.5rem;
}

.builder-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink-soft);
}

.form-control {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

.form-control option {
  background: var(--brown-dark);
  color: #FFFFFF;
}

.builder-full-width {
  grid-column: span 2;
}

/* --------------------------------------------------------------------------
   14. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials {
  padding: 6rem 0;
  background-color: var(--bg-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 2.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-stars {
  color: #FFB800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--brown-dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-blush);
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.author-info h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--brown-dark);
}

.author-info p {
  font-size: 0.75rem;
  color: var(--brown-light);
}

/* --------------------------------------------------------------------------
   15. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq {
  padding: 6rem 0;
  background-color: var(--bg-beige);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  border: var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-question {
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--brown-dark);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--brown-choco);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--brown-choco);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.75rem;
  color: var(--brown-light);
  font-size: 0.975rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.5rem 1.75rem;
  transition: max-height 0.4s ease-in-out;
}

/* --------------------------------------------------------------------------
   16. FINAL CTA BANNER
   -------------------------------------------------------------------------- */
.final-cta {
  padding: 7rem 0;
  background: radial-gradient(circle at center, rgba(247, 200, 208, 0.4) 0%, transparent 70%),
              var(--bg-cream);
  text-align: center;
  position: relative;
}

.final-cta-box {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 4rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: var(--border-gold);
}

.final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.15rem;
  color: var(--brown-light);
  margin-bottom: 2.5rem;
}

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--brown-dark);
  color: var(--pink-soft);
  padding-top: 5rem;
  padding-bottom: 2rem;
}

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

.footer-brand .logo-title {
  color: #FFFFFF;
}

.footer-brand p {
  color: var(--pink-blush);
  font-size: 0.925rem;
  margin: 1.25rem 0;
  line-height: 1.6;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--pink-soft);
  font-size: 0.9rem;
  opacity: 0.85;
}

.footer-links a:hover {
  color: var(--gold);
  opacity: 1;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

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

/* --------------------------------------------------------------------------
   18. FLOATING WHATSAPP BUTTON & MOBILE QUICK BAR
   -------------------------------------------------------------------------- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition-normal);
  animation: pulse-green 2.5s infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  background: var(--whatsapp-hover);
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: var(--border-light);
  padding: 0.75rem 1rem;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.sticky-mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-timeline::before {
    display: none;
  }

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

  .lightbox-content {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-cream);
    flex-direction: column;
    padding: 1.5rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: var(--border-light);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .header-actions .btn {
    display: none;
  }

  .builder-form-grid {
    grid-template-columns: 1fr;
  }

  .builder-full-width {
    grid-column: span 1;
  }

  .sticky-mobile-bar {
    display: block;
  }

  .floating-whatsapp-btn {
    bottom: 5rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

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

  .about-img-secondary {
    position: relative;
    width: 100%;
    bottom: 0;
    right: 0;
    margin-top: 1rem;
  }
  
  .about-img-primary {
    width: 100%;
  }
}
