/* style.css - Global Setup & Variables */
/* Import Google Fonts is already linked in HTML, but we define CSS fallback */
:root {
  /* Luxury color palette */
  --primary-dark: #1A1A1A;
  --bg-cream: #F9F6F3;
  --text-muted: #666666;
  --white: #FFFFFF;
  --navbar-scroll-bg: #FFFFFF;
  --navbar-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  --transition-smooth: all 0.3s ease-in-out;
}

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

/* Smooth scrolling for anchor links / UX */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-cream);
  color: var(--primary-dark);
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings use luxury serif font */
h1, h2, h3, h4, h5, h6,
.hero-heading,
.nav-logo a {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ========== NAVBAR STYLES ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(0px);
  padding: 1.25rem 2rem;
}

/* When navbar becomes solid on scroll (JS-triggered class) */
.navbar.scrolled {
  background-color: var(--white);
  box-shadow: var(--navbar-shadow);
  backdrop-filter: none;
}

/* container inside navbar for layout */
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Brand logo */
.nav-logo a {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

/* When navbar is scrolled, logo color changes to dark for contrast */
.navbar.scrolled .nav-logo a {
  color: var(--primary-dark);
}

/* Center Navigation Links */
.nav-links ul {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.3px;
  transition: color 0.25s ease, border-bottom 0.2s;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

/* hover effect with subtle border */
.nav-links a:hover {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

/* scrolled nav links become dark gray */
.navbar.scrolled .nav-links a {
  color: var(--primary-dark);
}
.navbar.scrolled .nav-links a:hover {
  color: #4a4a4a;
  border-bottom-color: var(--primary-dark);
}

/* Right side icons + login text */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.action-icon {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--white);
  transition: transform 0.2s ease, color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
}

.action-icon svg {
  stroke: var(--white);
  transition: stroke 0.2s;
}

.navbar.scrolled .action-icon svg {
  stroke: var(--primary-dark);
}

.navbar.scrolled .action-icon {
  color: var(--primary-dark);
}

.action-icon:hover {
  transform: scale(1.05);
  opacity: 0.85;
}

.login-text span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  color: inherit;
}

/* Hero Section full viewport height */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000&auto=format&fit=crop') center center/cover no-repeat;
}

/* Dark tinted overlay over the image for better text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.48); /* rich dark overlay with sophistication */
  pointer-events: none;
  z-index: 1;
}

/* Centered content container */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
  margin: 0 auto;
}

.hero-heading {
  font-size: 3.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 2.2rem auto;
  line-height: 1.6;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Crisp white pill-shaped button */
.btn-shop {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 100px; /* pill shape */
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-shop:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.2);
  color: #000;
}

/* subtle bouncing scroll-down indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.2s;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  stroke: var(--white);
  width: 32px;
  height: 32px;
}

.scroll-indicator:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Responsive Design: adjust heading and nav for tablets/mobile */
@media (max-width: 992px) {
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .nav-links ul {
    gap: 1.2rem;
  }
  .hero-heading {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none; /* For simplicity & elegance on mobile, but keep functional for desktop - but we show minimal responsive */
  }
  /* On smaller screens we hide center links to preserve clean navbar, but maintain luxury minimalism */
  .nav-actions {
    gap: 1rem;
  }
  .hero-heading {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
  .btn-shop {
    padding: 0.75rem 1.8rem;
    font-size: 0.9rem;
  }
  .scroll-indicator {
    bottom: 1.2rem;
  }
}

/* For tablets, we keep nav-links visible but slightly smaller gap */
@media (max-width: 880px) and (min-width: 769px) {
  .nav-links ul {
    gap: 1.3rem;
  }
  .nav-links a {
    font-size: 0.9rem;
  }
  .hero-heading {
    font-size: 3rem;
  }
}

/* optional utility container (hero-content uses its own) */
.container {
  width: 100%;
}

/* Ensure background for hero works on all devices, high quality unsplash */
/* Fallback background for any loading issues: set bg-cream blended? but no, overlay already */

/* ========== FEATURED CATEGORIES SECTION ========== */
.featured-categories {
  background-color: var(--white);
  padding: 100px 0;
}

.featured-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Column Text Styles */
.section-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.featured-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.featured-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 90%;
}

/* Right Column Image Styles */
.featured-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-image:hover img {
  transform: scale(1.03);
}

/* ========== OUR NEW COLLECTIONS SECTION ========== */
.new-collections {
  background-color: var(--bg-cream);
  padding: 100px 0;
}

.collections-header {
  text-align: center;
  margin-bottom: 3rem;
}

.collections-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}

.collections-heading::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-dark);
  border-radius: 2px;
}

/* Product Grid Layout */
.product-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Product Card Styles */
.product-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

/* Card Header with Badge and Swatches */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem 0.5rem 1.2rem;
}

.badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
}

.color-swatches {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.swatch:hover {
  transform: scale(1.15);
}

/* Product Image - UPDATED with uniform aspect ratio */
.product-image {
  padding: 1rem 1.5rem 0.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  /* Add fixed aspect ratio for uniformity */
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover; /* Ensures images fill the space without distortion */
  transition: transform 0.4s ease;
}

/* Alternative: If you prefer contain to show full furniture without cropping */
/* .product-image img {
  object-fit: contain;
} */

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

/* Product Info Section */
.product-info {
  padding: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-title-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0;
}

.product-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.view-details {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-dark);
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.view-details:hover {
  opacity: 1;
  transform: translateX(5px);
}

/* Section Footer Button */
.collections-footer {
  text-align: center;
  margin-top: 4rem;
}

.btn-outline {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--primary-dark);
  background-color: transparent;
  border: 2px solid var(--primary-dark);
  padding: 0.9rem 2.5rem;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ========== RESPONSIVE DESIGN ========== */
/* Tablet Landscape & Medium Screens */
@media (max-width: 1024px) {
  .featured-heading {
    font-size: 2.5rem;
  }
  
  .product-grid {
    gap: 1.5rem;
  }
  
  .collections-heading {
    font-size: 2.4rem;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .featured-categories {
    padding: 60px 0;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  
  .featured-heading {
    font-size: 2rem;
  }
  
  .featured-description {
    max-width: 100%;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding: 0 1.5rem;
  }
  
  .collections-heading {
    font-size: 2rem;
  }
  
  .collections-heading::after {
    width: 50px;
  }
  
  .new-collections {
    padding: 60px 0;
  }
  
  .product-title {
    font-size: 1rem;
  }
  
  .product-price {
    font-size: 0.9rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .featured-categories {
    padding: 50px 0;
  }
  
  .featured-grid {
    padding: 0 1.2rem;
  }
  
  .featured-heading {
    font-size: 1.8rem;
  }
  
  .section-tag {
    font-size: 0.75rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  
  .collections-heading {
    font-size: 1.8rem;
  }
  
  .btn-outline {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }
  
  .badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.7rem;
  }
  
  .swatch {
    width: 14px;
    height: 14px;
  }
}

/* Small Mobile */
@media (max-width: 380px) {
  .product-title-price {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .card-header {
    padding: 0.8rem 1rem 0.3rem 1rem;
  }
}

/* ========== RECOMMENDED WITH STYLE SECTION ========== */
.recommended-section {
  background-color: var(--white);
  padding: 100px 0;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Asymmetrical Grid Layout */
.style-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Left Side - Living Room (spans full height on left) */
.living-room {
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}

/* Right Side Top - Bedroom */
.bedroom {
  grid-column: 2 / 3;
  aspect-ratio: 16 / 9;
}

/* Right Side Bottom - Dining */
.dining {
  grid-column: 2 / 3;
  aspect-ratio: 16 / 9;
}

/* Full Width Bottom - Office */
.office {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 5;
}

/* Category Card Base Styles */
.grid-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.grid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Dark Overlay for Text Readability */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
  transition: background 0.3s ease;
}

/* Card Content (Bottom-Left Position) */
.card-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  color: var(--white);
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.card-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.card-link:hover {
  gap: 0.75rem;
  border-bottom-color: var(--white);
  color: var(--white);
}

/* Hover Effect - Image Zoom */
.grid-card:hover img {
  transform: scale(1.03);
}

.grid-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 100%);
}

/* Adjust title sizes for different card proportions */
.living-room .card-title {
  font-size: 2rem;
}

.office .card-title {
  font-size: 1.8rem;
}

/* ========== RESPONSIVE DESIGN ========== */
/* Tablet Landscape */
@media (max-width: 1024px) {
  .section-heading {
    font-size: 2.4rem;
  }
  
  .card-title {
    font-size: 1.5rem;
  }
  
  .living-room .card-title {
    font-size: 1.7rem;
  }
  
  .card-content {
    bottom: 1.5rem;
    left: 1.5rem;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .recommended-section {
    padding: 60px 0;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  
  .style-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 1.5rem;
  }
  
  .living-room {
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }
  
  .bedroom,
  .dining {
    grid-column: auto;
    aspect-ratio: 16 / 10;
  }
  
  .office {
    aspect-ratio: 16 / 7;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .living-room .card-title {
    font-size: 1.3rem;
  }
  
  .office .card-title {
    font-size: 1.3rem;
  }
  
  .card-content {
    bottom: 1.2rem;
    left: 1.2rem;
  }
  
  .card-link {
    font-size: 0.8rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .recommended-section {
    padding: 50px 0;
  }
  
  .section-heading {
    font-size: 1.8rem;
  }
  
  .style-grid {
    padding: 0 1rem;
    gap: 16px;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .card-content {
    bottom: 1rem;
    left: 1rem;
  }
  
  .card-link {
    font-size: 0.75rem;
  }
}

/* ========== WHAT SETS US APART - VALUE PROPOSITION SECTION ========== */
.value-proposition {
  background-color: var(--bg-cream);
  padding: 100px 0;
}

/* Section Header */
.value-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.value-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}

.value-heading::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: var(--primary-dark);
  border-radius: 2px;
}

/* Three-Column Grid Layout */
.value-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Left & Right Column Shared Styles */
.value-left,
.value-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Individual Value Item */
.value-item {
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateX(5px);
}

.value-left .value-item:hover {
  transform: translateX(5px);
}

.value-right .value-item:hover {
  transform: translateX(-5px);
}

.value-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.15);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.value-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 90%;
}

/* Center Column - Arched Image FIXED - Perfect Pill/Stadium Shape */
.value-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.arch-image-container {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 9999px; /* Perfect pill/stadium shape - rounded on all sides */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  aspect-ratio: 3 / 4;
}

.arch-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.arch-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.arch-image-container:hover img {
  transform: scale(1.05);
}

/* ========== RESPONSIVE DESIGN ========== */
/* Tablet Landscape */
@media (max-width: 1024px) {
  .value-proposition {
    padding: 80px 0;
  }
  
  .value-heading {
    font-size: 2.4rem;
  }
  
  .value-grid {
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }
  
  .value-center {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 2rem;
  }
  
  .arch-image-container {
    max-width: 450px;
    aspect-ratio: 3 / 3.5;
  }
  
  .value-left,
  .value-right {
    gap: 2rem;
  }
  
  .value-description {
    max-width: 100%;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .value-proposition {
    padding: 60px 0;
  }
  
  .value-heading {
    font-size: 2rem;
  }
  
  .value-heading::after {
    width: 50px;
    bottom: -10px;
  }
  
  .value-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  
  .value-center {
    grid-row: auto;
    margin-bottom: 1rem;
  }
  
  .arch-image-container {
    max-width: 380px;
    aspect-ratio: 3 / 3.8;
  }
  
  .value-left,
  .value-right {
    gap: 2rem;
  }
  
  .value-number {
    font-size: 2rem;
  }
  
  .value-title {
    font-size: 1.3rem;
  }
  
  .value-description {
    font-size: 0.9rem;
  }
  
  .value-item:hover {
    transform: translateX(0) !important;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .value-proposition {
    padding: 50px 0;
  }
  
  .value-heading {
    font-size: 1.8rem;
  }
  
  .value-grid {
    padding: 0 1rem;
    gap: 1.8rem;
  }
  
  .arch-image-container {
    max-width: 280px;
    border-radius: 140px 140px 0 0;
  }
  
  .value-number {
    font-size: 1.8rem;
  }
  
  .value-title {
    font-size: 1.2rem;
  }
  
  .value-description {
    font-size: 0.85rem;
  }
  
  .value-left,
  .value-right {
    gap: 1.8rem;
  }
}

/* ========== FAQ SECTION ========== */
.faq-section {
  background-color: var(--white);
  padding: 100px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.faq-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.faq-contact-btn {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--white);
  background-color: var(--primary-dark);
  padding: 0.8rem 2rem;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.faq-contact-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Grid - 2 Columns */
.faq-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* FAQ Item Styles */
.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background-color: var(--white);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-dark);
  background-color: var(--white);
  border-radius: 12px;
  transition: background-color 0.2s ease;
}

.faq-question span {
  flex: 1;
  padding-right: 1rem;
}

.faq-arrow {
  stroke: var(--primary-dark);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.2rem 1.5rem;
}

.faq-answer p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ========== FOOTER CTA BANNER ========== */
.footer-cta {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000&auto=format&fit=crop') center center/cover no-repeat;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 3rem 2rem;
}

.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-button {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.3);
  color: #000;
}

/* ========== RESPONSIVE DESIGN FOR NEW SECTIONS ========== */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-heading {
    font-size: 2rem;
  }
  
  .faq-description {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1.5rem;
  }
  
  .faq-question {
    font-size: 0.9rem;
    padding: 1rem 1.2rem;
  }
  
  .cta-heading {
    font-size: 2rem;
  }
  
  .footer-cta {
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-heading {
    font-size: 1.8rem;
  }
  
  .faq-grid {
    padding: 0 1rem;
  }
  
  .faq-question {
    font-size: 0.85rem;
    padding: 0.9rem 1rem;
  }
  
  .cta-heading {
    font-size: 1.6rem;
  }
  
  .cta-button {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }
  
  .footer-cta {
    min-height: 350px;
  }
}

/* ========== TRUE FOOTER SECTION ========== */
.main-footer {
  background-color: var(--primary-dark);
  padding-top: 80px;
  padding-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Footer Grid - 4 Columns */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Column */
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.footer-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* Social Media Icons */
.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

.social-icon svg {
  stroke: currentColor;
}

.social-icon:hover {
  background-color: var(--white);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Footer Headings */
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

/* Footer Links Lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

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

/* Newsletter Column */
.newsletter-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.2rem;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s ease;
}

.newsletter-form:hover {
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.newsletter-form:focus-within {
  border-bottom-color: var(--white);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.newsletter-form button:hover {
  color: var(--white);
  transform: translateX(3px);
}

.newsletter-form button svg {
  stroke: currentColor;
}

/* Footer Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-left p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-right a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-right a:hover {
  color: var(--white);
}

.footer-last {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-last p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-last a{
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
}

.footer-last a:hover {
  color: var(--white);
}

.separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* ========== RESPONSIVE DESIGN FOR FOOTER ========== */
/* Tablet Landscape */
@media (max-width: 1024px) {
  .footer-grid {
    gap: 2rem;
  }
  
  .footer-heading {
    font-size: 1.1rem;
  }
}

/* Tablet Portrait - 2 Columns */
@media (max-width: 768px) {
  .main-footer {
    padding-top: 60px;
    padding-bottom: 25px;
  }
  
  .footer-container {
    padding: 0 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-bottom: 2.5rem;
  }
  
  .footer-logo {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .footer-bottom-right {
    justify-content: center;
  }
  .footer-last {
    justify-content: center;
  }
}

/* Mobile - 1 Column */
@media (max-width: 480px) {
  .main-footer {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  
  .footer-container {
    padding: 0 1.2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-logo {
    font-size: 1.5rem;
  }
  
  .footer-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-links a,
  .footer-description,
  .newsletter-text {
    font-size: 0.85rem;
  }
  
  .newsletter-form input {
    font-size: 0.85rem;
  }
  
  .footer-bottom-left p,
  .footer-last p,
  .footer-bottom-right a {
    font-size: 0.75rem;
  }
}

/* ========== PREMIUM ANIMATIONS ========== */

/* Hero Entrance Animation - On Page Load */
.hero-content h1,
.hero-content p,
.hero-content .btn-shop {
  opacity: 0;
  transform: translateY(20px);
  animation: luxuryFadeInUp 1.1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-content p {
  animation-delay: 0.15s;
}

.hero-content .btn-shop {
  animation-delay: 0.3s;
}

@keyframes luxuryFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Global Scroll-Reveal Base Class */
.reveal {
  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.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Transition Delays for Product Cards */
.product-card.reveal {
  transition-delay: 0s;
}

.product-card.reveal:nth-child(1) { transition-delay: 0s; }
.product-card.reveal:nth-child(2) { transition-delay: 0.05s; }
.product-card.reveal:nth-child(3) { transition-delay: 0.1s; }
.product-card.reveal:nth-child(4) { transition-delay: 0.15s; }
.product-card.reveal:nth-child(5) { transition-delay: 0.2s; }
.product-card.reveal:nth-child(6) { transition-delay: 0.25s; }

/* Staggered Delays for Grid Cards */
.grid-card.reveal:nth-child(1) { transition-delay: 0s; }
.grid-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.grid-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.grid-card.reveal:nth-child(4) { transition-delay: 0.24s; }

/* Staggered Delays for FAQ Items */
.faq-item.reveal:nth-child(1) { transition-delay: 0s; }
.faq-item.reveal:nth-child(2) { transition-delay: 0.04s; }
.faq-item.reveal:nth-child(3) { transition-delay: 0.08s; }
.faq-item.reveal:nth-child(4) { transition-delay: 0.12s; }
.faq-item.reveal:nth-child(5) { transition-delay: 0.16s; }
.faq-item.reveal:nth-child(6) { transition-delay: 0.2s; }

/* Featured Grid Stagger */
.featured-text.reveal { transition-delay: 0s; }
.featured-image.reveal { transition-delay: 0.12s; }

/* Value Grid Stagger */
.value-left.reveal { transition-delay: 0s; }
.value-center.reveal { transition-delay: 0.1s; }
.value-right.reveal { transition-delay: 0.2s; }

/* ========== LUXURY NAVBAR LINK HOVER ========== */
/* Premium animated underline that expands from center */
.nav-links a {
  position: relative;
  display: inline-block;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0%;
  height: 1.5px;
  background-color: currentColor;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
  left: 50%;
}

/* Scrolled navbar hover underline color */
.navbar.scrolled .nav-links a::after {
  background-color: var(--primary-dark);
}

/* Transparent navbar hover underline */
.navbar:not(.scrolled) .nav-links a::after {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Optional: Add subtle scale on hover for extra refinement */
.nav-links a:hover {
  transform: scale(1.02);
}

/* Remove transform if it conflicts with other styles */