/* ==========================================================================
   LOVE BITE BAKERY - PREMIUM DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* 1. Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* 2. Custom Properties (Variables) */
:root {
  --primary-cream: #FFFDF9;
  --primary-pink: #FCEAEB;
  --beige-light: #F5EBE0;
  --beige-dark: #D5BDAF;
  --gold: #C5A880;
  --gold-light: #E6D5C3;
  --gold-dark: #A4845D;
  --text-charcoal: #2C2523;
  --text-muted: #60524E;
  --white: #FFFFFF;
  --whatsapp-color: #25D366;
  --whatsapp-hover: #128C7E;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --shadow-sm: 0 4px 12px rgba(44, 37, 35, 0.04);
  --shadow-md: 0 10px 25px rgba(44, 37, 35, 0.06);
  --shadow-lg: 0 15px 35px rgba(44, 37, 35, 0.1);
  --shadow-gold: 0 10px 25px rgba(197, 168, 128, 0.2);
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
  
  --max-width: 1200px;
  --header-height: 80px;
}

/* 3. Base & Reset Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--primary-cream);
  color: var(--text-charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* 4. Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-charcoal);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
  font-weight: 500;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--gold);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

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

/* 5. Utility Layout Components */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section.alt-bg {
  background-color: var(--primary-pink);
}

.section.beige-bg {
  background-color: var(--beige-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
  gap: 10px;
}

.btn-primary {
  background-color: var(--text-charcoal);
  color: var(--primary-cream);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--text-charcoal);
  border: 1px solid var(--text-charcoal);
}

.btn-secondary:hover {
  background-color: var(--text-charcoal);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(197, 168, 128, 0.35);
}

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

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

/* 6. Sticky Header & Navigation */
header {
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

header.scrolled {
  background-color: rgba(255, 253, 249, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  height: 70px;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 50%;
  border: 1px solid var(--gold);
  padding: 2px;
  background-color: var(--white);
  transition: var(--transition-smooth);
}

header.scrolled .logo-img {
  height: 40px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-charcoal);
  transition: var(--transition-smooth);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-charcoal);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--gold);
  transition: var(--transition-smooth);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-charcoal);
  transition: var(--transition-smooth);
  transform-origin: left center;
}

/* 7. Home Page Specific Styles */
/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(255, 253, 249, 0.82), rgba(255, 253, 249, 0.7)), 
              url('../images/hero_bg.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-content {
  max-width: 650px;
  z-index: 2;
}

.badge-lucrative {
  display: inline-block;
  padding: 8px 18px;
  background-color: rgba(197, 168, 128, 0.12);
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

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

.hero h1 {
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 35px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Features Section (Why Choose Us) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(197, 168, 128, 0.1);
  text-align: center;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--gold-dark);
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background-color: var(--gold);
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

/* Featured Products Grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.cake-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(197, 168, 128, 0.08);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.cake-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.cake-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 95%; /* Make it square-ish */
}

.cake-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.cake-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(5px);
  color: var(--gold-dark);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 30px;
  border: 1px solid var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

.cake-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cake-info h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.cake-tag {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cake-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Call to Action WhatsApp Book */
.cake-card-btn {
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--whatsapp-color);
  color: var(--whatsapp-color);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.cake-card-btn:hover {
  background: var(--whatsapp-color);
  color: var(--white);
}

/* Testimonials / Reviews */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(197, 168, 128, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: var(--font-heading);
  font-size: 6rem;
  color: rgba(197, 168, 128, 0.12);
  line-height: 1;
}

.stars {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 1rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 25px;
  color: var(--text-muted);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-initial {
  width: 45px;
  height: 45px;
  background-color: var(--primary-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--text-charcoal);
  border: 1px solid var(--gold-light);
}

.author-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-bottom: 0;
}

/* Customer Satisfaction Stats */
.stats-section {
  background: linear-gradient(135deg, var(--beige-light), var(--primary-pink));
  padding: 80px 0;
  border-top: 1px solid rgba(197, 168, 128, 0.15);
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0;
}

/* Instagram Preview Section */
.instagram-header {
  text-align: center;
  margin-bottom: 40px;
}

.instagram-handle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.instagram-handle:hover {
  color: var(--text-charcoal);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 45px;
}

.insta-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1;
}

.insta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 37, 35, 0.6);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

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

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

/* Contact Banner Call To Action */
.cta-banner {
  background: linear-gradient(rgba(44, 37, 35, 0.7), rgba(44, 37, 35, 0.75)), 
              url('../images/bakery_interior.png') no-repeat center center/cover;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  border-radius: 30px;
  margin-top: 40px;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta-banner h2::after {
  background-color: var(--gold);
}

.cta-banner p {
  color: rgba(255, 253, 249, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 35px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* 8. Products Page Specific Styles */
.products-header {
  padding: 120px 0 60px;
  text-align: center;
  background-color: var(--primary-pink);
}

.products-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 15px auto 0;
}

.filter-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--gold-light);
  color: var(--text-charcoal);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 35px;
  margin-bottom: 80px;
}

/* Filter Animation */
.cake-card.hide {
  display: none;
}

/* 9. About Us Page Specific Styles */
.about-header {
  padding: 120px 0 60px;
  text-align: center;
  background-color: var(--beige-light);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-frame {
  position: relative;
  padding: 15px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold-light);
}

.about-img-frame img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.about-content h3 {
  font-size: 1.8rem;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.owner-signature {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed var(--gold-light);
}

.owner-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-charcoal);
}

.owner-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(197, 168, 128, 0.1);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.value-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 15px;
}

/* 10. Contact Us Page Specific Styles */
.contact-header {
  padding: 120px 0 60px;
  text-align: center;
  background-color: var(--primary-pink);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 80px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(197, 168, 128, 0.08);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid var(--gold-light);
}

.contact-detail-text h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-detail-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
  white-space: pre-line;
}

.contact-form-panel {
  background: var(--white);
  padding: 50px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(197, 168, 128, 0.1);
}

.contact-form-panel h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.contact-form-panel p {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-charcoal);
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: 30px;
  border: 1px solid var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-charcoal);
  background-color: var(--primary-cream);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-dark);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

textarea.form-control {
  border-radius: 20px;
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  width: 100%;
  border: none;
}

/* Success Modal & Feedback */
.form-success-message {
  display: none;
  background-color: rgba(37, 211, 102, 0.1);
  border: 1px solid var(--whatsapp-color);
  color: #1a7f3f;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Google Map Container */
.map-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold-light);
  height: 450px;
  margin-bottom: 80px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 11. Footer Section */
footer {
  background-color: var(--text-charcoal);
  color: var(--white);
  padding: 80px 0 30px;
  margin-top: auto;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 253, 249, 0.7);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 253, 249, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 253, 249, 0.1);
}

.social-icon-link:hover {
  background-color: var(--gold);
  color: var(--text-charcoal);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: rgba(255, 253, 249, 0.7);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-list li {
  font-size: 0.9rem;
  color: rgba(255, 253, 249, 0.7);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-list i {
  color: var(--gold);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 253, 249, 0.5);
  margin-bottom: 0;
}

.footer-bottom a.developer-link {
  color: var(--gold);
  font-weight: 600;
}

.footer-bottom a.developer-link:hover {
  color: var(--white);
  text-decoration: underline;
}

/* 12. Floating Chatbot Component */
.chatbot-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(197, 168, 128, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chatbot-bubble:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--gold-dark);
  box-shadow: 0 12px 30px rgba(197, 168, 128, 0.5);
}

.chatbot-window {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 380px;
  height: 520px;
  background-color: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(197, 168, 128, 0.25);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.chatbot-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chatbot-header {
  background-color: var(--text-charcoal);
  color: var(--white);
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--gold);
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--gold-light);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-charcoal);
}

.chatbot-title h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.chatbot-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255, 253, 249, 0.75);
}

.chatbot-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--whatsapp-color);
  display: inline-block;
}

.chatbot-close-btn {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.chatbot-close-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.chatbot-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: rgba(245, 235, 224, 0.3);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-light) transparent;
}

.chatbot-messages::-webkit-scrollbar {
  width: 5px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background-color: var(--gold-light);
  border-radius: 10px;
}

.chat-bubble {
  max-width: 80%;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: bubbleAppear 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes bubbleAppear {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-bubble-bot {
  background-color: var(--white);
  border: 1px solid rgba(197, 168, 128, 0.15);
  color: var(--text-charcoal);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(44, 37, 35, 0.02);
}

.chat-bubble-user {
  background-color: var(--gold);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  box-shadow: 0 4px 10px rgba(197, 168, 128, 0.15);
}

.chatbot-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 20px;
  background-color: rgba(255, 253, 249, 0.7);
  border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.chatbot-option-btn {
  background-color: var(--white);
  border: 1px solid var(--gold-light);
  color: var(--text-charcoal);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.chatbot-option-btn:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.chatbot-input-area {
  padding: 15px 20px;
  background-color: var(--white);
  border-top: 1px solid rgba(197, 168, 128, 0.15);
  display: flex;
  gap: 10px;
  align-items: center;
}

.chatbot-input {
  flex-grow: 1;
  border: 1px solid var(--gold-light);
  padding: 10px 18px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-charcoal);
  outline: none;
  transition: var(--transition-fast);
}

.chatbot-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(197, 168, 128, 0.1);
}

.chatbot-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.chatbot-send-btn:hover {
  background-color: var(--gold-dark);
  transform: scale(1.05);
}

/* Floating WhatsApp Book Icon Button */
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--whatsapp-color);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-floating:hover {
  transform: scale(1.1) rotate(-5deg);
  background-color: var(--whatsapp-hover);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* 13. Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Delay modifiers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* 14. Responsive Media Queries */
@media (max-width: 1024px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-cream);
    box-shadow: -10px 0 30px rgba(44, 37, 35, 0.08);
    flex-direction: column;
    padding: 100px 40px;
    gap: 30px;
    transition: var(--transition-smooth);
    z-index: 1005;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 2px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -2px);
  }
  
  /* Hero */
  .hero {
    text-align: center;
    background-position: 35% center;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  /* Layout grids */
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .contact-form-panel {
    padding: 30px;
  }
  
  /* Chatbot Window on mobile */
  .chatbot-window {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
    bottom: 95px;
    height: 480px;
  }
  
  .chatbot-bubble {
    right: 20px;
    bottom: 20px;
  }
  
  .whatsapp-floating {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .insta-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .hero-btns .btn {
    width: 100%;
  }
}
