/* 
   Favourite Shop Landing Page stylesheet
   Color Palette: Forest Green & Gold (Heritage, Trust, Premium)
   Typography: Playfair Display (Headings) & Outfit (Body)
*/

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

/* --- CSS Variables --- */
:root {
  --primary-green: #0B2F1D;
  --primary-green-light: #15452C;
  --primary-green-dark: #05160E;
  --accent-gold: #C5A85A;
  --accent-gold-light: #DFCD9D;
  --accent-gold-dark: #A58941;
  --bg-cream: #FAF8F5;
  --bg-cream-dark: #F2EDE4;
  --text-dark: #1E2822;
  --text-muted: #5A6B60;
  --white: #FFFFFF;
  --error-color: #A34848;
  --success-color: #2E6A4F;
  --card-shadow: 0 10px 30px rgba(11, 47, 29, 0.05);
  --card-shadow-hover: 0 20px 45px rgba(11, 47, 29, 0.12);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- Base Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-green-light);
  border: 2px solid var(--bg-cream);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-green);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
  font-weight: 400;
}

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

.gold-text {
  color: var(--accent-gold);
}

/* --- Layout Utilities --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-weight: 600;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(11, 47, 29, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent-gold);
  color: var(--primary-green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 168, 90, 0.3);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--primary-green-dark);
  box-shadow: 0 4px 15px rgba(197, 168, 90, 0.25);
  font-weight: 600;
}

.btn-gold:hover {
  background-color: var(--white);
  color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline {
  border: 2px solid var(--accent-gold);
  background-color: transparent;
  color: var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--primary-green-dark);
  transform: translateY(-3px);
}

/* --- Navigation Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
}

header.scrolled {
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.8rem 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border-bottom: 1px solid var(--bg-cream-dark);
}

header.scrolled h2 {
  color: var(--primary-green);
}

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

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

.logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-green);
}

header.scrolled .logo-text {
  color: var(--primary-green);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-green);
  position: relative;
  padding: 5px 0;
}

header:not(.scrolled) .nav-link {
  color: var(--primary-green-dark);
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-green);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* --- Section 1: Hero Section --- */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-color: var(--bg-cream-dark);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(197, 168, 90, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  z-index: 2;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}

.hero-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold-dark);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.hero-title {
  font-size: 3.8rem;
  margin-bottom: 25px;
  color: var(--primary-green);
  font-weight: 700;
}

.hero-title span {
  font-style: italic;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--text-muted);
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-image-container {
  position: relative;
  height: 520px;
  opacity: 0;
  transform: scale(0.95);
  animation: scaleUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
}

.hero-img-card {
  width: 100%;
  height: 100%;
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(11, 47, 29, 0.15);
  border: 6px solid var(--white);
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero-image-container:hover .hero-img-card img {
  transform: scale(1.08);
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background-color: var(--primary-green);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px dashed var(--accent-gold);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transform: rotate(-10deg);
  transition: var(--transition-smooth);
}

.hero-image-container:hover .hero-badge {
  transform: rotate(5deg) scale(1.05);
}

.hero-badge .badge-year {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--accent-gold);
  line-height: 1;
}

.hero-badge .badge-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* --- Section 2: Brand Story / About Us --- */
.story {
  background-color: var(--white);
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image-wrap {
  position: relative;
}

.story-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.story-img-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--primary-green);
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 250px;
  border-left: 5px solid var(--accent-gold);
  box-shadow: 0 15px 35px rgba(11, 47, 29, 0.15);
}

.story-img-badge h4 {
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.story-img-badge p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.story-content .lead {
  font-size: 1.25rem;
  color: var(--primary-green);
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.4;
}

.story-content p {
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.story-signature {
  border-top: 1px solid var(--bg-cream-dark);
  padding-top: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sig-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-dark);
  font-size: 1.5rem;
}

.sig-text h5 {
  font-size: 1.1rem;
  color: var(--primary-green);
}

.sig-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Section 3: Category Showcase --- */
.categories {
  background-color: var(--bg-cream);
}

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

.category-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 420px;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
  border-bottom: 4px solid var(--accent-gold);
}

.category-img {
  height: 65%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

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

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

.category-content {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  transition: var(--transition-fast);
}

.category-card:hover h3 {
  color: var(--accent-gold-dark);
}

.category-card p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  flex-grow: 1;
}

.category-link {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.category-link svg {
  transition: var(--transition-fast);
}

.category-card:hover .category-link svg {
  transform: translateX(5px);
}

/* --- Section 4: Muslin Newborn Spotlight --- */
.muslin-spotlight {
  background-color: var(--bg-cream-dark);
  position: relative;
  overflow: hidden;
}

.muslin-spotlight::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 0l40 40-40 40L0 40z' fill='%230b2f1d' fill-opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
}

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

.muslin-image-stack {
  position: relative;
  height: 480px;
}

.muslin-img-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  border: 4px solid var(--white);
}

.muslin-img-front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 75%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border: 4px solid var(--white);
  transition: var(--transition-smooth);
}

.muslin-image-stack:hover .muslin-img-front {
  transform: translateY(-10px) scale(1.02);
}

.muslin-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.muslin-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 35px;
  margin-bottom: 40px;
}

.muslin-feature-item {
  display: flex;
  gap: 15px;
}

.feature-icon-circle {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(197, 168, 90, 0.15);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.feature-desc h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-green);
}

.feature-desc p {
  font-size: 0.85rem;
}

/* --- Section 5: Paarth Premium Sub-label --- */
.paarth {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.paarth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(197, 168, 90, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.paarth-border-wrap {
  border: 1px solid rgba(197, 168, 90, 0.3);
  padding: 60px;
  border-radius: 24px;
  position: relative;
}

.paarth-badge-corner {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-green);
  padding: 5px 30px;
  border: 1px solid var(--accent-gold);
  border-radius: 50px;
  color: var(--accent-gold);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.paarth-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.paarth-content {
  padding-right: 20px;
}

.paarth-logo {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.paarth-tagline {
  font-size: 1.25rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.9);
  margin-bottom: 25px;
  display: block;
}

.paarth-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 35px;
}

.paarth-highlights {
  list-style: none;
  margin-bottom: 45px;
}

.paarth-highlights li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.paarth-highlights li svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.paarth-image-container {
  position: relative;
}

.paarth-img-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 55px rgba(0,0,0,0.3);
  position: relative;
  height: 480px;
}

.paarth-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease;
}

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

.paarth-overlay-label {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: var(--accent-gold);
  color: var(--primary-green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* --- Section 6: USPs (Why Choose Us) --- */
.usps {
  background-color: var(--white);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.usp-card {
  text-align: center;
  padding: 2.5rem 1.8rem;
  border-radius: 16px;
  background-color: var(--bg-cream);
  transition: var(--transition-smooth);
  border: 1px solid var(--bg-cream-dark);
}

.usp-card:hover {
  transform: translateY(-8px);
  background-color: var(--white);
  box-shadow: var(--card-shadow);
  border-color: rgba(197, 168, 90, 0.3);
}

.usp-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--accent-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  border: 1px solid var(--bg-cream-dark);
}

.usp-card:hover .usp-icon-wrap {
  background-color: var(--primary-green);
  color: var(--accent-gold);
  transform: rotateY(360deg);
}

.usp-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-green);
}

.usp-card p {
  font-size: 0.9rem;
}

/* --- Section 7: Testimonials --- */
.testimonials {
  background-color: var(--bg-cream);
  overflow: hidden;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: var(--card-shadow);
  position: relative;
  border-top: 4px solid var(--accent-gold);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 4rem;
  color: rgba(197, 168, 90, 0.15);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.stars {
  color: var(--accent-gold);
  font-size: 0.95rem;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  line-height: 1.5;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-cream-dark);
  color: var(--primary-green);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 2px solid var(--accent-gold);
}

.author-info h4 {
  font-size: 1.05rem;
  color: var(--primary-green);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

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

/* --- Section 8: Gallery --- */
.gallery {
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  box-shadow: var(--card-shadow);
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 47, 29, 0.8) 0%, rgba(11, 47, 29, 0) 80%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-caption {
  color: var(--white);
}

.gallery-caption h4 {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.gallery-caption p {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 47, 29, 0.95);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

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

.lightbox-img {
  max-width: 100%;
  max-height: 100vh;
  border-radius: 8px;
  border: 4px solid var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

/* --- Section 9: Contact & Connect With Us --- */
.contact {
  background-color: var(--bg-cream);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-panel {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 3.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(11, 47, 29, 0.15);
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(197, 168, 90, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-panel h3 {
  color: var(--accent-gold);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-info-panel > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
}

.info-details-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(197, 168, 90, 0.2);
}

.info-text h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-text p, .info-text a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.info-text a:hover {
  color: var(--accent-gold);
}

.social-links-wrap h4 {
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 15px;
}

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

.social-btn:hover {
  background-color: var(--accent-gold);
  color: var(--primary-green-dark);
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}

/* Contact Form Styling */
.contact-form-panel {
  background-color: var(--white);
  padding: 3.5rem;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--bg-cream-dark);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

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

.form-label span {
  color: var(--error-color);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  border: 1px solid var(--bg-cream-dark);
  background-color: var(--bg-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

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

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

.form-error-msg {
  color: var(--error-color);
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
  font-weight: 500;
}

.form-group.has-error .form-control {
  border-color: var(--error-color);
  background-color: rgba(163, 72, 72, 0.02);
}

.form-group.has-error .form-error-msg {
  display: block;
}

/* Success Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 47, 29, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2001;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.success-modal.active {
  opacity: 1;
  pointer-events: all;
}

.success-modal-card {
  background-color: var(--white);
  padding: 3.5rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: translateY(30px);
  transition: var(--transition-smooth);
  border-top: 8px solid var(--accent-gold);
}

.success-modal.active .success-modal-card {
  transform: translateY(0);
}

.success-icon-check {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: rgba(46, 106, 79, 0.1);
  color: var(--success-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 25px auto;
  border: 2px solid var(--success-color);
}

.success-modal-card h3 {
  font-size: 1.8rem;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.success-modal-card p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* --- Section 10: Footer --- */
footer {
  background-color: var(--primary-green-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  border-top: 2px solid var(--accent-gold);
}

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

.footer-about h3 {
  color: var(--accent-gold);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 25px;
  max-width: 320px;
}

.footer-links h4, .footer-instagram h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

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

.footer-instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.footer-insta-item {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  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, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

/* --- Scroll animations utility classes --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .story-grid {
    gap: 40px;
  }
  .paarth-border-wrap {
    padding: 40px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 80px 0;
  }
  
  .hero {
    height: auto;
    padding-top: 140px;
    padding-bottom: 80px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-container {
    height: 450px;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .hero-badge {
    left: -10px;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .story-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .muslin-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .muslin-image-stack {
    max-width: 500px;
    margin: 0 auto;
    height: 400px;
  }
  
  .paarth-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .paarth-content {
    padding-right: 0;
    text-align: center;
  }
  
  .paarth-highlights {
    display: inline-block;
    text-align: left;
  }
  
  .paarth-image-container {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: 80px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-toggle {
    display: block;
    z-index: 1000;
  }
  
  .nav-menu.active ~ .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .nav-menu.active ~ .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-menu.active ~ .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .contact-info-panel, .contact-form-panel {
    padding: 2rem 1.5rem;
  }
  
  .story-img-badge {
    bottom: -15px;
    right: 0;
    padding: 1.5rem;
    left: 0;
  }
  
  .muslin-features {
    grid-template-columns: 1fr;
  }
}
