@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   CSS CUSTOM PROPERTIES (DESIGN SYSTEM)
   ========================================== */
:root {
  /* Colors */
  --primary: #1E3A5F;
  --primary-hover: #152B45;
  --accent-red: #D93A4A;
  --accent-red-hover: #B92D3C;
  --warm-gold: #D87A42;
  --warm-gold-hover: #BC6330;
  --white: #FFFFFF;
  --light-bg: #F8FAFC;
  --section-bg: #EEF2F6;
  --heading-color: #1B2430;
  --body-text: #4B5563;
  --dark-footer: #101820;
  
  /* Transparent & Backdrop variants */
  --header-bg-trans: rgba(255, 255, 255, 0.9);
  --header-bg-dark-trans: rgba(16, 24, 32, 0.95);
  --glass-shadow: rgba(0, 0, 0, 0.08);
  --glass-border: rgba(255, 255, 255, 0.4);
  
  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacings */
  --container-max-width: 1200px;
  --section-padding: 5rem 1.5rem;
  --section-padding-mobile: 3.5rem 1rem;
  
  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease-in-out;
  
  /* Border Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ==========================================
   BASE & RESET
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.25;
}

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

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Accessibility Focus Outline */
*:focus-visible {
  outline: 2px solid var(--warm-gold);
  outline-offset: 4px;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile);
  }
}

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

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

.section-title-wrapper {
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.section-subtitle {
  color: var(--warm-gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--warm-gold);
  border-radius: var(--radius-full);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px; /* Explicit height to align all button shapes */
  padding: 0 2rem; /* Horizontal padding only */
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
  border: 2px solid transparent; 
  box-sizing: border-box; /* Include border in height calculation */
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.35);
}

/* WhatsApp Brand CTA Button */
.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  border-color: #25D366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  border-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--warm-gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(216, 122, 66, 0.25);
}

.btn-accent:hover {
  background-color: var(--warm-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 122, 66, 0.35);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
  background-color: var(--light-bg);
  transform: translateY(-2px);
}

.btn-sm {
  height: 38px; /* Explicit height for small buttons */
  padding: 0 1.25rem;
  font-size: 0.85rem;
  box-sizing: border-box;
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.header-transparent {
  background-color: transparent;
}

.header-scrolled {
  background-color: var(--header-bg-trans);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

.header-scrolled .header-container {
  height: 70px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 55px;
  width: auto;
  transition: var(--transition-smooth);
}

.header-transparent:not(.header-scrolled) .logo img {
  filter: brightness(0) invert(1);
}

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

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 2rem;
}

@media (max-width: 1200px) and (min-width: 993px) {
  .nav-menu {
    gap: 1rem;
  }
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  position: relative;
  padding: 0.5rem 0;
}

@media (max-width: 1200px) and (min-width: 993px) {
  .nav-link {
    font-size: 0.82rem;
  }
}

.header-transparent:not(.header-scrolled) .nav-link {
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--warm-gold) !important;
}

/* CTA Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background-color: rgba(30, 58, 95, 0.1);
  color: var(--primary);
  transition: var(--transition-smooth);
}

.header-transparent:not(.header-scrolled) .nav-phone-btn {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.nav-phone-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

/* WhatsApp Nav Button Styles */
.nav-whatsapp-btn {
  background-color: rgba(37, 211, 102, 0.1) !important;
  color: #25D366 !important;
}

.header-transparent:not(.header-scrolled) .nav-whatsapp-btn {
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: var(--white) !important;
}

.nav-whatsapp-btn:hover {
  background-color: #25D366 !important;
  color: var(--white) !important;
}

/* Hamburger menu button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.header-transparent:not(.header-scrolled) .hamburger span {
  background-color: var(--white);
}

/* Hamburger active states */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--primary) !important;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--primary) !important;
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: 100px 2.5rem 2rem 2.5rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
    gap: 1.5rem;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    color: var(--heading-color) !important;
    font-size: 1.1rem;
    text-shadow: none !important;
  }
  
  .nav-actions {
    display: none; /* In mobile menu, we'll embed actions inside or show simplified icons */
  }
  
  .nav-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
  }
}

@media (min-width: 993px) {
  .nav-actions-mobile {
    display: none;
  }
}

/* ==========================================
   LUXURY ASYMMETRICAL HERO SECTION
   ========================================== */
.hero-luxury {
  position: relative;
  background-color: var(--primary);
  background-image: radial-gradient(circle at 80% 20%, rgba(30, 58, 95, 0.45) 0%, rgba(16, 24, 32, 1) 100%);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 130px; /* Offset the fixed header beautifully */
  padding-bottom: 4rem;
}

.hero-luxury-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1528459801416-a9e53bbf4e17?q=80&w=1600&auto=format&fit=crop') center/cover;
  opacity: 0.04; /* faint gold fabric/marble pattern texture */
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

.hero-luxury-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-luxury-content {
  max-width: 650px;
}

.hero-luxury-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-gold);
  border: 1px solid rgba(216, 122, 66, 0.3);
  background-color: rgba(216, 122, 66, 0.08);
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-bottom: 1.75rem;
}

.hero-luxury-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-luxury-title .text-gold {
  color: var(--warm-gold);
  background: linear-gradient(135deg, #E28C56 0%, #B95C25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-luxury-desc {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-luxury-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Right Side Showcase Portrait Frame */
.hero-luxury-showcase {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.showcase-gold-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 480px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--warm-gold);
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.showcase-gold-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 30px;
  height: 30px;
  border-top: 3px solid var(--warm-gold);
  border-left: 3px solid var(--warm-gold);
  pointer-events: none;
}

.showcase-gold-frame::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 30px;
  height: 30px;
  border-bottom: 3px solid var(--warm-gold);
  border-right: 3px solid var(--warm-gold);
  pointer-events: none;
}

.showcase-gold-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
  transition: var(--transition-smooth);
}

.showcase-gold-frame:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 35px 70px rgba(216, 122, 66, 0.15);
}

.showcase-badge {
  position: absolute;
  bottom: 25px;
  left: -20px;
  background-color: var(--primary);
  border-left: 3px solid var(--warm-gold);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.showcase-badge .badge-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--warm-gold);
  letter-spacing: 1px;
}

.showcase-badge .badge-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.2rem;
}

/* Responsive Queries */
@media (max-width: 992px) {
  .hero-luxury {
    padding-top: 110px;
    padding-bottom: 5rem;
    min-height: auto;
  }
  
  .hero-luxury-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  
  .hero-luxury-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-luxury-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-luxury-buttons {
    justify-content: center;
  }
  
  .hero-luxury-showcase {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .hero-luxury-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .hero-luxury-title {
    font-size: 2.2rem;
  }
  
  .showcase-gold-frame {
    max-width: 290px;
    height: 380px;
  }
}

/* ==========================================
   TRUST HIGHLIGHTS TICKER
   ========================================== */
.trust-bar {
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem 0;
  border-bottom: 4px solid var(--warm-gold);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 200px;
  transition: var(--transition-smooth);
}

.trust-item:hover {
  transform: translateY(-3px);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-gold);
  font-size: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.trust-item:hover .trust-icon {
  background-color: var(--warm-gold);
  color: var(--white);
  border-color: var(--warm-gold);
  transform: scale(1.1) rotate(5deg);
}

.trust-text h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.trust-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .trust-container {
    justify-content: center;
  }
  .trust-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}

/* ==========================================
   ABOUT PREVIEW SECTION (SPLIT)
   ========================================== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about-preview {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-img-wrapper {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-bottom: 4px solid var(--warm-gold);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--warm-gold);
  line-height: 1;
}

.about-badge .badge-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

@media (max-width: 576px) {
  .about-badge {
    position: static;
    margin-top: 1rem;
    right: 0;
    bottom: 0;
  }
  .about-img-main {
    height: 300px;
  }
}

.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.about-text {
  margin-bottom: 1.5rem;
}

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

.about-feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--heading-color);
}

.about-feat i {
  color: var(--warm-gold);
}

/* ==========================================
   DEPARTMENTS SECTION
   ========================================== */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .dept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dept-grid {
    grid-template-columns: 1fr;
  }
}

.dept-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

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

.dept-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(16, 24, 32, 0.9) 0%, rgba(16, 24, 32, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  z-index: 2;
  transition: var(--transition-smooth);
}

.dept-title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.dept-cta {
  color: var(--warm-gold);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition-smooth);
}

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

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

.dept-card:hover .dept-overlay {
  background: linear-gradient(to top, rgba(30, 58, 95, 0.95) 0%, rgba(16, 24, 32, 0.4) 60%, rgba(16, 24, 32, 0.1) 100%);
}

.dept-card:hover .dept-cta {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================
   FEATURED BRANDS (CAROUSEL TICKER)
   ========================================== */
.brand-carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1rem 0;
}

.brand-carousel-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: scrollBrands 25s linear infinite;
}

.brand-carousel-container:hover .brand-carousel-track {
  animation-play-state: paused;
}

.brand-item {
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  opacity: 0.85;
}

.brand-item:hover {
  opacity: 1;
  transform: scale(1.08);
}

@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: var(--transition-smooth);
}

.why-icon {
  width: 60px;
  height: 60px;
  background-color: var(--section-bg);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--warm-gold);
}

.why-card:hover .why-icon {
  background-color: var(--primary);
  color: var(--white);
}

/* ==========================================
   STORE EXPERIENCE SECTION
   ========================================== */
.experience-cta {
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  box-shadow: var(--shadow-lg);
}

.experience-cta-content {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-cta-img {
  background-size: cover;
  background-position: center;
  min-height: 350px;
}

.experience-cta h3 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.experience-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.experience-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.exp-feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.exp-feat-item i {
  color: var(--warm-gold);
}

@media (max-width: 992px) {
  .experience-cta {
    grid-template-columns: 1fr;
  }
  .experience-cta-content {
    padding: 3rem 2rem;
  }
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-smooth);
}

.review-quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: rgba(30, 58, 95, 0.05);
}

.review-stars {
  color: var(--warm-gold);
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--body-text);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  background-color: var(--section-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  border: 2px solid var(--warm-gold);
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--body-text);
}

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

/* ==========================================
   GALLERY PREVIEW & MASONRY
   ========================================== */
.gallery-filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(30, 58, 95, 0.15);
  color: var(--body-text);
  transition: var(--transition-smooth);
}

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

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

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 320px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 58, 95, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
}

.gallery-item-overlay i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--warm-gold);
  transform: translateY(-10px);
  transition: var(--transition-smooth);
}

.gallery-item-overlay h4 {
  color: var(--white);
  font-size: 1.15rem;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

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

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

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

/* ==========================================
   CONTACT CTA SECTION
   ========================================== */
.contact-cta {
  background-color: var(--section-bg);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.contact-cta-text {
  max-width: 580px;
}

.contact-cta-text h3 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.contact-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 993px) {
  .contact-cta-buttons {
    flex-wrap: nowrap; /* Keep all three buttons side-by-side on desktop */
  }
}

@media (max-width: 992px) {
  .contact-cta {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
  }
  .contact-cta-buttons {
    justify-content: center;
  }
}

/* ==========================================
   PAGES SPECIFIC STYLES
   ========================================== */

/* Page Banner */
.page-banner {
  background-color: var(--primary);
  padding: 9rem 1.5rem 5rem 1.5rem;
  color: var(--white);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.95), rgba(16, 24, 32, 0.85));
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.page-banner h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-banner {
    padding: 8rem 1rem 4rem 1rem;
  }
  .page-banner h1 {
    font-size: 2.25rem;
  }
}

/* Timeline (About page) */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--primary);
  opacity: 0.15;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 1.5rem 3rem;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: var(--white);
  border: 4px solid var(--warm-gold);
  top: 2rem;
  border-radius: 50%;
  z-index: 1;
}

.timeline-left {
  left: 0;
  text-align: right;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -8px;
}

.timeline-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--primary);
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-gold);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.timeline-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-item::after {
    left: 23px;
    right: auto;
  }
  .timeline-left {
    left: 0;
    text-align: left;
  }
  .timeline-right {
    left: 0;
  }
}

/* Owner message styling */
.owner-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.owner-img-wrapper {
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.owner-img-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95);
}

.owner-message blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--warm-gold);
  padding-left: 1.5rem;
}

@media (max-width: 992px) {
  .owner-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Core Values Cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* COLLECTION PAGES STYLES */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1200px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.product-img-wrapper {
  position: relative;
  height: 380px;
  overflow: hidden;
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--accent-red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.wedding-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--warm-gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.product-info {
  padding: 1.5rem;
}

.product-category {
  font-size: 0.8rem;
  color: var(--warm-gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--body-text);
  margin-bottom: 1.25rem;
}

.product-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

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

.product-card:hover img {
  transform: scale(1.06);
}

/* Wedding Page Extra Accent Colors */
.wedding-theme {
  --primary: #2C221E; /* Dark Champagne/Chocolate base */
  --primary-hover: #1F1714;
  --section-bg: #F5EFEB; /* Champagne wash */
  --light-bg: #FAF6F4;
  --warm-gold: #C59B27; /* Rich Gold */
  --warm-gold-hover: #A07C1C;
}

.wedding-theme .page-banner::before {
  background: linear-gradient(135deg, rgba(44, 34, 30, 0.95), rgba(197, 155, 39, 0.2) 60%, rgba(44, 34, 30, 0.95));
}

.wedding-theme .section-title::after {
  background: var(--warm-gold);
}

.wedding-theme .btn-primary {
  background-color: var(--warm-gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(197, 155, 39, 0.25);
}

.wedding-theme .btn-primary:hover {
  background-color: var(--warm-gold-hover);
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.35);
}

/* CONTACT PAGE STYLES */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

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

.contact-info-card {
  display: flex;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(30, 58, 95, 0.08);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-info-details p,
.contact-info-details a {
  font-size: 0.95rem;
  color: var(--body-text);
}

.contact-form-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-group {
  margin-bottom: 1.5rem;
}

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

.contact-form-input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(75, 85, 99, 0.15);
  background-color: var(--light-bg);
  color: var(--heading-color);
  transition: var(--transition-fast);
}

.contact-form-input:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.08);
}

.contact-map-wrapper {
  margin-top: 3.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

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

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--dark-footer);
  color: rgba(255, 255, 255, 0.65);
  padding: 5rem 1.5rem 2rem 1.5rem;
}

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

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-col-brand img {
  height: 55px;
  margin-bottom: 1.5rem;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--warm-gold);
}

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

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item i {
  color: var(--warm-gold);
  margin-top: 0.25rem;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-smooth);
}

.social-icon-btn:hover {
  background-color: var(--warm-gold);
  color: var(--white);
  transform: scale(1.1);
}

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

/* Lightbox/Gallery Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(16, 24, 32, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
}

.lightbox-content img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: transparent;
}

/* Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* ==========================================
   STORE EXPERIENCE PREMIUM PARALLAX SECTION
   ========================================== */
.store-experience-parallax {
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.94), rgba(30, 58, 95, 0.9)), 
              url('https://images.unsplash.com/photo-1528459801416-a9e53bbf4e17?q=80&w=1600&auto=format&fit=crop') fixed center/cover;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem;
}

/* Glassmorphism Card Wrapper */
.experience-glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 4.5rem 3.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .experience-glass-card {
    padding: 3rem 1.5rem;
  }
}

/* Premium Features Grid */
.exp-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .exp-premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .exp-premium-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Individual Feature Item */
.exp-premium-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
  transition: var(--transition-smooth);
}

.exp-premium-icon {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-full);
  background-color: rgba(216, 122, 66, 0.1);
  border: 1.5px solid var(--warm-gold);
  color: var(--warm-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.exp-premium-item h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.exp-premium-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 220px;
}

/* Hover effects */
.exp-premium-item:hover {
  transform: translateY(-5px);
}

.exp-premium-item:hover .exp-premium-icon {
  background-color: var(--warm-gold);
  color: var(--white);
  box-shadow: 0 0 20px rgba(216, 122, 66, 0.5);
  transform: scale(1.08);
}

/* ==========================================
   ABOUT PREVIEW BACKGROUND DECORATIONS
   ========================================== */
.about-preview-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(255, 254, 252, 1) 0%, rgba(248, 244, 234, 1) 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 122, 66, 0.06);
}

.about-bg-pattern {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
  animation: slowRotate 45s linear infinite;
}

.about-bg-pattern-left {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
  animation: slowRotateCounter 55s linear infinite;
}

@keyframes slowRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes slowRotateCounter {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

/* ==========================================
   ABOUT PREVIEW HIGHLIGHTS FEATURE CARDS
   ========================================== */
.about-features-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .about-features-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.about-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-left: 3px solid var(--warm-gold);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
  transition: var(--transition-smooth);
}

.about-feature-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(216, 122, 66, 0.08);
  background-color: rgba(216, 122, 66, 0.02);
}

.feat-box-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(216, 122, 66, 0.08);
  color: var(--warm-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.about-feature-box:hover .feat-box-icon {
  background-color: var(--warm-gold);
  color: var(--white);
  transform: scale(1.05);
}

.feat-box-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.feat-box-info p {
  font-size: 0.78rem;
  color: var(--body-text);
  line-height: 1.4;
  margin: 0;
}
