:root {
  --primary: #2c3e50;
  --secondary: #c9a961;
  --accent: #8b7355;
  --light: #f8f6f3;
  --cream: #faf9f7;
  --dark: #1a1a1a;
  --text: #333333;
  --text-light: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

nav .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.logo:hover {
  transform: scale(1.05);
  color: var(--secondary);
}

nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}


/* Contact Button Styles - FIXED OVERLAP ISSUE */
nav ul li a.nav-button {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb, 44, 62, 80), 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  margin-left:  1rem; /* Increased from 1rem to prevent overlap */
  z-index: 2; /* Lower z-index so it doesn't cover Gallery */
}

nav ul li a.nav-button::after {
  display: none;
}

nav ul li a.nav-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.3s ease;
}

nav ul li a.nav-button:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb, 44, 62, 80), 0.3);
  z-index: 10; /* Keep same z-index on hover */
}

nav ul li a.nav-button:hover::before {
  left: 100%;
}

nav ul li a.nav-button:active {
  transform: translateY(-1px);
}

/* Make sure Gallery link is always clickable */
nav ul li:nth-last-child(2) a {
  z-index: 20; /* Gallery link gets higher z-index */
  position: relative;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #f8f6f3 0%,
    #e8e4de 50%,
    #f8f6f3 100%
  );
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  z-index: 1;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 97, 0.1) 0%,
    transparent 70%
  );
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-30px, -30px) rotate(5deg);
  }
}

.hero-content {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(auto, 700px) 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  padding-left: 3rem;
  max-width: 700px;
  justify-self: end;
}

.hero-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-text .subtitle {
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-buttons {
  display: flex;
  gap: 3.5rem;
  animation: fadeInUp 1s ease-out 0.6s backwards;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  min-width: 160px;
  text-align: center;
}

/* Shine effect */
.btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 10%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(25deg);
  transition: left 0.5s ease;
}

.btn:hover::after {
  left: 120%;
}

/* Primary Button - Updated to match contact button gradient */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  position: relative;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb, 44, 62, 80), 0.2);
}

/* Add depth effect on hover */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: 1;
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary span {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Arrow animation on hover */
.btn-primary span::after {
  content: "→";
  position: absolute;
  right: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.btn-primary:hover span {
  transform: translateX(5px);
  padding-right: 20px;
}

.btn-primary:hover span::after {
  right: 0;
  opacity: 1;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  transform: translateY(-3px);
  box-shadow: 
    0 15px 30px rgba(var(--primary-rgb, 44, 62, 80), 0.3),
    0 10px 10px rgba(0, 0, 0, 0.12);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb, 44, 62, 80), 0.2);
}

/* Shine effect matching contact button */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
  z-index: 1;
}

.btn-primary:hover::after {
  left: 100%;
}

/* Secondary Button - Updated to match contact button style */
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  position: relative;
  overflow: hidden;
}

/* Border animation - using gradient */
.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-secondary:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 
    0 10px 20px rgba(var(--primary-rgb, 44, 62, 80), 0.15),
    0 6px 6px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

/* Shine effect for secondary button */
.btn-secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.7s ease;
  z-index: 1;
}

.btn-secondary:hover::after {
  left: 100%;
}

.btn-secondary:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(var(--primary-rgb, 44, 62, 80), 0.1);
}

/* Updated icon animation for secondary button */
.btn-secondary span {
  position: relative;
  display: inline-block;
  z-index: 2;
  transition: all 0.3s ease;
}

.btn-secondary span::before {
  content: "✉️";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-secondary:hover span {
  padding-left: 25px;
}

.btn-secondary:hover span::before {
  left: 0;
  opacity: 1;
}

/* Remove old underline effect */
.btn-secondary span::after {
  display: none;
}

/* Add new style for tertiary/outline button */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  z-index: -1;
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-color: transparent;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-buttons {
    gap: 1rem;
    justify-content: center;
  }
  
  .btn {
    padding: 0.9rem 2rem;
    min-width: 140px;
    font-size: 0.9rem;
  }
  
  .btn-primary:hover span {
    padding-right: 15px;
  }
  
  .btn-secondary:hover span {
    padding-left: 15px;
  }
}

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Animation for attention */
@keyframes subtlePulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 44, 62, 80), 0.2);
  }
  50% {
    box-shadow: 0 4px 20px rgba(var(--primary-rgb, 44, 62, 80), 0.4);
  }
}

.btn-primary.pulse {
  animation: subtlePulse 2s infinite;
}


.hero-image {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  animation: fadeIn 1.2s ease-out 0.3s backwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.image-placeholder {
  width: 100%;
  height: 600px;
  background: linear-gradient(135deg, #c9a961 0%, #8b7355 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 0 0 8px;
  box-shadow: 
    0 20px 60px rgba(44, 62, 80, 0.2),
    0 0 0 1px rgba(201, 169, 97, 0.1),
    inset 0 0 60px rgba(201, 169, 97, 0.08);
}

/* Elegant corner accent - top left */
.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--secondary);
  border-left: 3px solid var(--secondary);
  z-index: 10;
  opacity: 0.8;
}

/* Elegant corner accent - bottom right */
.image-placeholder::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-bottom: 3px solid var(--secondary);
  border-right: 3px solid var(--secondary);
  z-index: 10;
  opacity: 0.8;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* Subtle overlay gradient for depth */
.image-placeholder > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(44, 62, 80, 0.05) 0%,
    transparent 50%,
    rgba(201, 169, 97, 0.05) 100%
  );
  pointer-events: none;
  z-index: 5;
}

/* Hover effect - subtle zoom */
.image-placeholder:hover img {
  transform: scale(1.05);
}

/* About Section */
.about {
  padding: 8rem 3rem;
  background: white;
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  font-size: 0.95rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "✨";
  position: absolute;
  right: -40px;
  top: 0;
  opacity: 0;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.section-description {
  max-width: 800px;
  margin: 1.5rem auto 0;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}


.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  order: 1;
  position: relative;
}

.about-text {
  order: 2;
}


.about-image .image-placeholder {
  height: 650px;
  width: 100%;
  border-radius: 12px;
  background: white;
  box-shadow: 
    0 25px 80px rgba(44, 62, 80, 0.18),
    0 10px 25px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(44, 62, 80, 0.08);
  transition: all 0.4s ease;
}

.about-image .image-placeholder:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 90px rgba(44, 62, 80, 0.22),
    0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Hover effect for about image */
.about-image .image-placeholder:hover img {
  transform: scale(1.05);
}

/* Show full image in about section */
.about-image .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}


.about-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1.8rem;
  line-height: 1.3;
  font-weight: 600;
}


.about-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
  line-height: 1.9;
  text-align: justify;
}

.about-text p:last-of-type {
  margin-bottom: 2rem;
}


.highlight-box {
  background: linear-gradient(135deg, var(--light) 0%, #faf9f7 100%);
  padding: 2.5rem 2.5rem;
  margin-top: 2.5rem;
  border-radius: 20px;
  border: 2px solid var(--secondary);
  border-left: 5px solid var(--secondary);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(201, 169, 97, 0.1),
    inset 0 0 40px rgba(201, 169, 97, 0.03);
  transition: all 0.3s ease;
}

.highlight-box::before {
  content: "💬";
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 2.5rem;
  opacity: 0.15;
  transition: all 0.3s ease;
}

.highlight-box::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.highlight-box:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(201, 169, 97, 0.15),
    inset 0 0 50px rgba(201, 169, 97, 0.05);
  border-color: var(--accent);
}

.highlight-box:hover::before {
  opacity: 0.25;
  transform: scale(1.1);
}

.highlight-box p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--primary);
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.highlight-box p::before {
  content: '"';
  font-size: 3rem;
  color: var(--secondary);
  opacity: 0.3;
  position: absolute;
  top: -15px;
  left: -10px;
  font-family: Georgia, serif;
  line-height: 1;
}

/* =========================
   Education Section
========================= */
.education {
  padding: 8rem 3rem;
  background: var(--light);
}

.education .section-header {
  text-align: center;
}

.education .section-label {
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.education .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: var(--primary);
}

/* Grid Layout */
.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

/* Individual Card */
.education-card {
  background: white;
  padding: 3rem 2rem 2rem 2rem; /* extra top for icon */
  border-radius: 30px; /* rounded corners */
  border-top: 4px solid var(--secondary);
  position: relative;
  transform-style: preserve-3d;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.education-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(201, 169, 97, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover Effects */
.education-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  background: rgba(201, 169, 97, 0.1); /* card hover color */
  border-color: var(--secondary);
}

.education-card:hover::before {
  opacity: 1;
}

/* Circular Icon */
.education-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  background: var(--light);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 80px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.education-card:hover .education-icon {
  transform: translateX(-50%) scale(1.1) rotate(10deg);
  color: white; /* icon color on hover */
  background: var(--secondary); /* icon background on hover */
}

/* Card Text */
.education-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 1rem 0 0.5rem 0;
}

.education-card .degree {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.education-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* =========================
   Professional Journey Section - MINIMAL CLEAN DESIGN
========================= */
.journey {
  padding: 8rem 3rem;
  background: white;
  position: relative;
}

.journey .section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.journey .section-label {
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.journey .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: var(--primary);
  font-weight: 600;
}

/* Timeline container */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Simple left vertical line - shifted more to the left */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 2px;
  height: 100%;
  background: var(--secondary);
  opacity: 0.3;
}

/* Timeline items */
.timeline-item {
  position: relative;
  width: 100%;
  padding: 0 0 3rem 50px;
  box-sizing: border-box;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

/* Simple timeline card */
.timeline-content {
  background: var(--light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 3px solid var(--secondary);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left-color: var(--primary);
}

/* Simple timeline dot - shifted left */
.timeline-dot {
  position: absolute;
  left: 3px;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--secondary);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--light);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  background: var(--primary);
  transform: scale(1.2);
}

/* Clean typography */
.timeline-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

/* Timeline icon styles - removed as not used in HTML */

/* Impact Section - CLEAN SIMPLE DESIGN */ 
.impact { 
  padding: 8rem 3rem; 
  background: var(--light);
  color: var(--text);
  position: relative;
} 

.impact .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.impact .section-label { 
  color: var(--secondary); 
} 
    
.impact .section-title {
  color: var(--primary); 
} 
  
.impact .section-description { 
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
} 
   
.impact-grid { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 2.5rem;
  margin-top: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
} 
   

.impact-card { 
  background: white;
  padding: 3rem 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease; 
  position: relative;
  text-align: center;
} 
  
.impact-card:hover { 
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); 
  border-left-color: var(--primary);
} 
  
.impact-icon { 
  font-size: 3rem;
  margin-bottom: 1.5rem; 
  color: white;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
  margin-left: auto;
  margin-right: auto;
} 
  
.impact-card:hover .impact-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 30px rgba(201, 169, 97, 0.4);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
} 
   
.impact-content { 
  position: relative;
} 
  
.impact-number { 
  font-family: "Cormorant Garamond", serif; 
  font-size: 2.8rem; 
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1rem;
  line-height: 1.2;
} 
      
.impact-card:hover .impact-number { 
  color: var(--primary);
} 
    
.impact-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem; 
  margin-bottom: 1rem; 
  font-weight: 600; 
  color: var(--primary);
} 
  
.impact-card p { 
  color: var(--text-light); 
  line-height: 1.8;
  font-size: 1rem; 
} 

/* Gallery Section */
.gallery {
  padding: 8rem 3rem;
  background: var(--light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #c9a961 0%, #8b7355 100%);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 
    0 10px 40px rgba(44, 62, 80, 0.15),
    0 0 0 1px rgba(201, 169, 97, 0.1),
    inset 0 0 60px rgba(201, 169, 97, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Top-left corner accent */
.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--secondary);
  border-left: 2px solid var(--secondary);
  z-index: 10;
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* Bottom-right corner accent */
.gallery-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid var(--secondary);
  border-right: 2px solid var(--secondary);
  z-index: 10;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
  width: 80px;
  height: 80px;
}

.gallery-item:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 
    0 30px 60px rgba(44, 62, 80, 0.25),
    0 0 0 1px rgba(201, 169, 97, 0.2);
}

/* Values Section - CLEAN SIMPLE DESIGN */
.values {
  padding: 8rem 3rem;
  background: white;
  position: relative;
}

.values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.1;
}

.values .section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.values .section-header h2 {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.values .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.values .section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 2rem auto 0;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.value-card {
  text-align: center;
  padding: 3.5rem 2.5rem;
  min-height: 400px;
  background: var(--light);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 4px solid var(--secondary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #ffffff, var(--light));
  border-top-color: transparent;
}

.value-icon-container {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--light), white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.value-card:hover .value-icon-container {
  background: linear-gradient(135deg, var(--primary-light), white);
  transform: rotate(5deg);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.15);
}

.value-icon {
  font-size: 3.2rem;
  color: var(--primary);
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  color: var(--secondary);
  transform: scale(1.1);
}

.value-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.value-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--secondary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover h3::after {
  opacity: 1;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.9;
  font-size: 1.1rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.value-cta {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
}

.value-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.1s;
}

.value-card:hover .value-learn-more {
  opacity: 1;
  transform: translateY(0);
}

.value-learn-more:hover {
  color: var(--secondary);
  gap: 1rem;
}

.value-learn-more i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.value-learn-more:hover i {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .values-grid {
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .values {
    padding: 6rem 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 2rem;
  }
  
  .value-card {
    min-height: 350px;
    padding: 2.5rem 2rem;
  }
  
  .values .section-header h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .values {
    padding: 5rem 1.5rem;
  }
  
  .value-card {
    min-height: 320px;
    padding: 2rem 1.5rem;
  }
  
  .value-icon-container {
    width: 80px;
    height: 80px;
  }
  
  .value-icon {
    font-size: 2.5rem;
  }
  
  .values .section-header h2 {
    font-size: 2.3rem;
  }
}

/* Animation for cards on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.value-card {
  animation: fadeInUp 0.6s ease forwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
.value-card:nth-child(6) { animation-delay: 0.6s; }



/* ================= BLOG SECTION ================= */

.blog {
  background: #f8f6f3;
  padding: 7rem 0 6rem;
  position: relative;
}

/* Fix spacing when clicking navbar link */
#blog {
  scroll-margin-top: 100px;
}

/* Container */
.blog .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Grid layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

/* Blog Card */
.blog-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Hover effect */
.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* Blog Image */
.blog-image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Image zoom on hover */
.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

/* Content */
.blog-content {
  padding: 2.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Date */
.blog-date {
  font-size: 0.85rem;
  font-weight: 500;
  color: #9a8c6a;
  display: inline-block;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

/* Title */
.blog-content h3 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Description */
.blog-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #555;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

/* ================= RESPONSIVE ================= */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .blog-image {
    height: 260px;
  }
}

/* Desktop (1025px - 1399px) */
@media (max-width: 1399px) and (min-width: 1025px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}



/* Tablet Landscape (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .blog-image {
    height: 220px;
  }
  
  .blog-content {
    padding: 1.8rem;
  }
  
  .blog-content h3 {
    font-size: 1.35rem;
  }
}

/* Tablet Portrait (601px - 768px) */
@media (max-width: 768px) and (min-width: 601px) {
  .blog {
    padding: 5rem 0;
  }
  
  .blog .container {
    padding: 0 1.5rem;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-top: 2.5rem;
  }
  
  .blog-image {
    height: 200px;
  }
  
  .blog-content {
    padding: 1.6rem;
  }
  
  .blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .blog-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .blog-date {
    font-size: 0.8rem;
  }
}

/* Mobile Landscape (481px - 600px) */
@media (max-width: 600px) and (min-width: 481px) {
  .blog {
    padding: 4rem 0;
  }
  
  .blog .container {
    padding: 0 1.5rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .blog-card {
    max-width: 100%;
  }
  
  .blog-image {
    height: 220px;
  }
  
  .blog-content {
    padding: 1.8rem;
  }
  
  .blog-content h3 {
    font-size: 1.35rem;
  }
  
  .blog-card:hover {
    transform: translateY(-8px);
  }
}

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
  .blog {
    padding: 3.5rem 0;
  }
  
  .blog .container {
    padding: 0 1.2rem;
  }
  
  .section-header {
    text-align: center;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-label {
    font-size: 0.85rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-top: 1.8rem;
  }
  
  .blog-card {
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  }
  
  .blog-image {
    height: 200px;
  }
  
  .blog-content {
    padding: 1.5rem;
  }
  
  .blog-date {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
  }
  
  .blog-content p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }
  
  /* Reduce hover effect on mobile for better UX */
  .blog-card:hover {
    transform: translateY(-5px);
  }
}

/* Small Mobile (max-width: 320px) */
@media (max-width: 320px) {
  .blog {
    padding: 3rem 0;
  }
  
  .blog .container {
    padding: 0 1rem;
  }
  
  .blog-grid {
    gap: 1.5rem;
  }
  
  .blog-image {
    height: 180px;
  }
  
  .blog-content {
    padding: 1.2rem;
  }
  
  .blog-content h3 {
    font-size: 1.2rem;
  }
  
  .blog-content p {
    font-size: 0.85rem;
  }
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .blog-card,
  .blog-card:hover,
  .blog-image img,
  .blog-card:hover .blog-image img {
    transition: none;
    transform: none;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .blog {
    background: #1a1a1a;
  }
  
  .blog-card {
    background: #2d2d2d;
  }
  
  .blog-content h3 {
    color: #ffffff;
  }
  
  .blog-content p {
    color: #cccccc;
  }
  
  .blog-card {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  }
}


/* Contact Section - UPDATED WITH SOCIAL LINKS */
.contact {
  padding: 8rem 3rem 4rem;
  background: var(--primary);
  color: white;
  text-align: center;
}

.contact .section-label {
  color: var(--secondary);
}

.contact .section-title {
  color: white;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  padding: 1.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  min-width: 150px;
}

.social-link:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-link:hover .social-icon {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
}

.social-link span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

/* Social icon container */
.social-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-icon i {
  font-size: 32px;
  transition: all 0.3s ease;
}

/* Smooth lift on hover */
.social-link:hover .social-icon i {
  transform: translateY(-2px);
}

/* Instagram - Official brand color */
.social-link .fa-instagram {
  color: #E1306C; /* Instagram's official pink */
}

.social-link:hover .fa-instagram {
  color: #E1306C;
  text-shadow: 0 0 10px rgba(225, 48, 108, 0.5);
}

.social-link:hover .social-icon.instagram {
  background: linear-gradient(45deg, #E1306C, #C13584, #833AB4, #5851DB, #405DE6);
  box-shadow: 0 5px 20px rgba(225, 48, 108, 0.3);
}

/* YouTube - Official brand color */
.social-link .fa-youtube {
  color: #FF0000; /* YouTube's official red */
}

.social-link:hover .fa-youtube {
  color: #FF0000;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.social-link:hover .social-icon.youtube {
  background: #FF0000;
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

/* LinkedIn - Official brand color */
.social-link .fa-linkedin-in {
  color: #0A66C2; /* LinkedIn's official blue */
}

.social-link:hover .fa-linkedin-in {
  color: #0A66C2;
  text-shadow: 0 0 10px rgba(10, 102, 194, 0.5);
}

.social-link:hover .social-icon.linkedin {
  background: #0A66C2;
  box-shadow: 0 5px 20px rgba(10, 102, 194, 0.3);
}

/* Twitter/X - Official brand color (if added later) */
.social-link .fa-twitter {
  color: #1DA1F2; /* Twitter's official blue */
}

.social-link:hover .fa-twitter {
  color: #1DA1F2;
  text-shadow: 0 0 10px rgba(29, 161, 242, 0.5);
}

.social-link:hover .social-icon.twitter {
  background: #1DA1F2;
  box-shadow: 0 5px 20px rgba(29, 161, 242, 0.3);
}

/* Facebook - Official brand color (if added later) */
.social-link .fa-facebook-f {
  color: #1877F2; /* Facebook's official blue */
}

.social-link:hover .fa-facebook-f {
  color: #1877F2;
  text-shadow: 0 0 10px rgba(24, 119, 242, 0.5);
}

.social-link:hover .social-icon.facebook {
  background: #1877F2;
  box-shadow: 0 5px 20px rgba(24, 119, 242, 0.3);
}

/* WhatsApp - Official brand color (if added later) */
.social-link .fa-whatsapp {
  color: #25D366; /* WhatsApp's official green */
}

.social-link:hover .fa-whatsapp {
  color: #25D366;
  text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.social-link:hover .social-icon.whatsapp {
  background: #25D366;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

/* GitHub - Official brand color (if added later) */
.social-link .fa-github {
  color: #333; /* GitHub's official black/gray */
}

.social-link:hover .fa-github {
  color: #333;
  text-shadow: 0 0 10px rgba(51, 51, 51, 0.5);
}

.social-link:hover .social-icon.github {
  background: #333;
  box-shadow: 0 5px 20px rgba(51, 51, 51, 0.3);
}

/* Medium - Official brand color (if added later) */
.social-link .fa-medium {
  color: #00AB6C; /* Medium's official green */
}

.social-link:hover .fa-medium {
  color: #00AB6C;
  text-shadow: 0 0 10px rgba(0, 171, 108, 0.5);
}

.social-link:hover .social-icon.medium {
  background: #00AB6C;
  box-shadow: 0 5px 20px rgba(0, 171, 108, 0.3);
}

/* Add text color change on hover */
.social-link:hover span {
  color: #fff;
  font-weight: 600;
}

/* Add subtle animation on load */
@keyframes socialFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-link {
  animation: socialFadeIn 0.6s ease backwards;
}

.social-link:nth-child(1) { animation-delay: 0.1s; }
.social-link:nth-child(2) { animation-delay: 0.2s; }
.social-link:nth-child(3) { animation-delay: 0.3s; }
.social-link:nth-child(4) { animation-delay: 0.4s; }
.social-link:nth-child(5) { animation-delay: 0.5s; }
.social-link:nth-child(6) { animation-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-links {
    gap: 1.5rem;
  }
  
  .social-link {
    min-width: 120px;
    padding: 1.2rem;
  }
  
  .social-icon {
    width: 60px;
    height: 60px;
  }
  
  .social-icon i {
    font-size: 28px;
  }
  
  .social-link span {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .social-links {
    gap: 1rem;
  }
  
  .social-link {
    min-width: 100px;
    padding: 1rem;
  }
  
  .social-icon {
    width: 50px;
    height: 50px;
  }
  
  .social-icon i {
    font-size: 24px;
  }
  
  .social-link span {
    font-size: 0.85rem;
  }
}
/* Contact Form Section */
.contact-form-section {
  padding: 6rem 3rem;
  background: white;
}

.contact-form-section .section-header {
  margin-bottom: 3rem;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--light);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-intro h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.form-intro p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.form-intro .domain-name {
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 600;
  margin: 1rem 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 2px solid rgba(44, 62, 80, 0.1);
  background: white;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  margin-top: 1rem;
}

.form-submit button {
  width: 100%;
  padding: 1.2rem;
  background: var(--primary);
  color: white;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.form-submit button:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.3);
}

.form-submit button:active {
  transform: translateY(0);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  text-align: center;
  border-radius: 5px;
  display: none;
}

.form-message.success {
  background: rgba(46, 204, 113, 0.1);
  color: #27ae60;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-message.error {
  background: rgba(231, 76, 60, 0.1);
  color: #c0392b;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Footer */
/* Footer Styles */
.footer-content {
  width: 100%;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-disclaimer {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid var(--secondary);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Hover effect for the entire disclaimer box */
.footer-disclaimer:hover {
  background: linear-gradient(135deg, #fff8e1 0%, #fffbf0 100%);
  border-left: 4px solid var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.15);
}

/* Subtle shine effect on hover */
.footer-disclaimer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  transition: left 0.6s ease;
}

.footer-disclaimer:hover::before {
  left: 100%;
}

/* Icon hover effect */
.footer-disclaimer-icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #1a2530 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.footer-disclaimer:hover .footer-disclaimer-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

/* Text hover effects */
.footer-disclaimer-text h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.footer-disclaimer:hover .footer-disclaimer-text h4 {
  color: var(--secondary);
  transform: translateX(5px);
}

.footer-disclaimer-text p {
  color: var(--text);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.footer-disclaimer:hover .footer-disclaimer-text p {
  color: var(--primary);
}

.footer-disclaimer-text a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.footer-disclaimer-text a:hover {
  color: var(--primary);
  text-decoration: underline;
  transform: translateY(-1px);
}

/* Pulsing animation for email links on disclaimer hover */
.footer-disclaimer:hover .footer-disclaimer-text a {
  animation: subtlePulse 2s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: none;
  }
  50% {
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(201, 169, 97, 0.2);
  }
}

.footer-copyright {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.footer-copyright p {
  margin: 0;
  line-height: 1.5;
}

/* Optional: Add hover effect to copyright too */
.footer-copyright:hover {
  color: var(--text);
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-content {
    padding: 1.5rem 0;
  }
  
  .footer-disclaimer {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }
  
  .footer-disclaimer:hover {
    transform: translateY(-1px);
  }
  
  .footer-disclaimer-icon {
    align-self: center;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .footer-disclaimer:hover .footer-disclaimer-text h4 {
    transform: translateX(0);
  }
  
  .footer-disclaimer-text h4 {
    font-size: 1.2rem;
  }
  
  .footer-disclaimer-text p {
    font-size: 0.9rem;
  }
  
  .footer-copyright {
    padding-top: 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer-disclaimer {
    padding: 1rem;
  }
  
  .footer-disclaimer-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .footer-disclaimer-text h4 {
    font-size: 1.1rem;
  }
  
  .footer-disclaimer-text p {
    font-size: 0.85rem;
  }
  
  .footer-disclaimer-text a {
    font-size: 0.85rem;
  }
  
  .footer-copyright {
    font-size: 0.8rem;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  nav .container {
    padding: 0 2rem;
  }
}

@media (max-width: 1024px) {
  /* Show burger menu */
  .burger {
    display: flex;
  }

  /* Hide desktop menu */
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
  }

  nav ul.active {
    right: 0;
  }

  nav ul li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
  }

  nav ul.active li {
    opacity: 1;
    transform: translateX(0);
  }

  nav ul.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  nav ul.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  nav ul.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  nav ul.active li:nth-child(4) {
    transition-delay: 0.4s;
  }
  nav ul.active li:nth-child(5) {
    transition-delay: 0.5s;
  }
  nav ul.active li:nth-child(6) {
    transition-delay: 0.6s;
  }
  nav ul.active li:nth-child(7) {
    transition-delay: 0.7s;
  }

  nav a {
    font-size: 1.2rem;
  }

  /* Hero adjustments */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem;
    max-width: 100%;
  }
  
  .hero-text {
    padding-left: 0;
    max-width: 100%;
    justify-self: center;
  }
  
  .image-placeholder {
    border-radius: 8px;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text .subtitle {
    font-size: 1.1rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .image-placeholder {
    height: 500px;
  }

  /* About section */
  
.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

  .about-image .image-placeholder {
    height: 400px;
  }

  /* Impact section */
  .impact {
    padding: 5rem 2rem;
  }

  .impact-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  /* Values section */
  .values {
    padding: 5rem 2rem;
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  /* Timeline adjustments */
  .journey {
    padding: 5rem 2rem;
  }

  .timeline {
    padding-left: 0.5rem;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    padding: 0 0 2.5rem 50px;
  }

  .timeline-dot {
    left: 3px;
  }

  .timeline-content {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  nav .container {
    padding: 0 1.5rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  nav ul {
    max-width: 100%;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-content {
    padding: 0 1.5rem;
  }
  
  .hero-text {
    padding-left: 0;
  }
  
  .image-placeholder {
    border-radius: 8px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text .subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
  }

  .image-placeholder {
    height: 400px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-label {
    font-size: 0.85rem;
  }

  .about,
  .education,
  .impact,
  .journey,
  .gallery,
  .values,
  .contact,
  .contact-form-section {
    padding: 5rem 1.5rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  
.about-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1.8rem;
  line-height: 1.3;
  font-weight: 600;
}

  
.about-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
  line-height: 1.9;
  text-align: justify;
}

.about-text p:last-of-type {
  margin-bottom: 2rem;
}

  .education-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .education-card {
    padding: 2rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .impact-card {
    padding: 2rem 1.5rem;
  }

  .impact-number {
    font-size: 2.5rem;
  }

  .impact-icon {
    font-size: 2.5rem;
  }

  .impact-card h3 {
    font-size: 1.4rem;
  }

  .timeline {
    padding-left: 0.5rem;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    padding: 0 0 2.5rem 45px;
  }

  .timeline-dot {
    left: 3px;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .timeline-year {
    font-size: 1rem;
  }

  .timeline-content h3 {
    font-size: 1.4rem;
  }

  .timeline-content p {
    font-size: 0.95rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .value-card {
    padding: 2rem 1.5rem;
  }

  .value-icon {
    font-size: 2.5rem;
  }

  .value-card h3 {
    font-size: 1.6rem;
  }

  .social-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .social-link {
    width: 100%;
  }

  .form-container {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .image-placeholder {
    height: 350px;
  }

  .about-image .image-placeholder {
    height: 350px;
  }

  .btn {
    font-size: 0.85rem;
    padding: 0.9rem 1.5rem;
  }

  .timeline-item {
    padding: 0 0 2rem 40px;
  }

  .timeline-content {
    padding: 1.2rem;
  }

  .timeline-year {
    font-size: 0.9rem;
  }

  .timeline-content h3 {
    font-size: 1.3rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }

  .education-card h3 {
    font-size: 1.5rem;
  }

  .value-card h3 {
    font-size: 1.5rem;
  }

  .value-card {
    padding: 1.8rem 1.5rem;
  }

  .value-icon {
    font-size: 2.2rem;
  }

  .value-card p {
    font-size: 0.95rem;
  }

  .impact-number {
    font-size: 2.2rem;
  }

  .impact-icon {
    font-size: 2.2rem;
  }

  .impact-card {
    padding: 1.8rem 1.5rem;
  }

  .impact-card h3 {
    font-size: 1.3rem;
  }

  .impact-card p {
    font-size: 0.95rem;
  }

  .form-container {
    padding: 1.5rem;
  }
}

/* Tablet landscape specific */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .image-placeholder {
    height: 400px;
  }
}
/* Disclaimer Popup Styles - COMPACT VERSION */
.disclaimer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.92);
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.disclaimer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Using your color variables */
:root {
  --primary: #2c3e50;
  --secondary: #c9a961;
  --accent: #8b7355;
  --light: #f8f6f3;
  --cream: #faf9f7;
  --dark: #1a1a1a;
  --text: #333333;
  --text-light: #666666;
}

.disclaimer-content {
  background: var(--cream);
  max-width: 580px;
  width: 90%;
  max-height: 75vh;
  border-radius: 8px;
  position: relative;
  animation: fadeInUp 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
  border: 1px solid rgba(201, 169, 97, 0.2);
  margin: 1rem;
  overflow: hidden;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Body with equal spacing */
.disclaimer-body {
  padding: 1.5rem 2rem 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  text-align: center;
}

/* Notice box styling */
.notice-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #3a506b 100%);
  color: var(--light);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  margin: 0 auto 1rem; /* Equal gap below */
  border: 2px solid var(--secondary);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
  position: relative;
  overflow: hidden;
}

.notice-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.notice-box h2 {
  font-size: 1.2rem;
  color: var(--light);
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.notice-icon {
  font-size: 1.3rem;
  color: var(--secondary);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
  position: relative;
  z-index: 1;
  animation: gentlePulse 2s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 1; 
  }
  50% { 
    transform: scale(1.1);
    opacity: 0.9; 
  }
}

/* All text elements with equal margin */
.disclaimer-body p {
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 1rem 0; /* Equal gap below each paragraph */
  font-size: 0.95rem;
  word-wrap: break-word;
}

/* Single email link with equal spacing */
.single-email {
  margin: 1rem 0 1rem 0; /* Equal gap above and below */
  width: 100%;
}

.disclaimer-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  word-break: break-word;
  background: rgba(201, 169, 97, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(139, 115, 85, 0.2);
}

.disclaimer-body a:hover {
  color: var(--secondary);
  text-decoration: none;
  transform: translateY(-2px);
  background: rgba(201, 169, 97, 0.15);
  border-color: var(--secondary);
  box-shadow: 0 3px 10px rgba(201, 169, 97, 0.2);
}

.disclaimer-body a i {
  margin-right: 0.5rem;
  font-size: 0.9rem;
  color: var(--secondary);
}

/* Button with equal spacing */
.understand-btn {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--primary) 0%, #3a506b 100%);
  color: var(--light);
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0 0 8px 8px;
  margin-top: 1rem; /* Equal gap from email */
  flex-shrink: 0;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  position: relative;
  overflow: hidden;
}

.understand-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.2), transparent);
  transition: left 0.6s ease;
}

.understand-btn:hover {
  background: linear-gradient(135deg, #3a506b 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
}

.understand-btn:hover::before {
  left: 100%;
}

/* Prevent body scroll when disclaimer is active */
body.disclaimer-active {
  overflow: hidden !important;
}

body.disclaimer-active nav,
body.disclaimer-active section,
body.disclaimer-active footer {
  filter: none;
  pointer-events: none;
  user-select: none;
}

/* Responsive with consistent spacing */
@media (max-width: 768px) {
  .disclaimer-content {
    width: 92%;
    max-height: 80vh;
    margin: 0.5rem;
  }
  
  .disclaimer-body {
    padding: 1.2rem 1.5rem 0.8rem;
  }
  
  .notice-box {
    padding: 0.5rem 1.2rem;
    margin-bottom: 1rem; /* Maintain equal gap */
  }
  
  .notice-box h2 {
    font-size: 1.1rem;
  }
  
  .notice-icon {
    font-size: 1.2rem;
  }
  
  .disclaimer-body p {
    margin: 0 0 0.9rem 0; /* Slightly reduced but equal */
    font-size: 0.9rem;
  }
  
  .single-email {
    margin: 0.9rem 0; /* Equal spacing */
  }
  
  .understand-btn {
    margin-top: 0.9rem; /* Equal spacing */
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .disclaimer-content {
    width: 94%;
    max-height: 85vh;
  }
  
  .notice-box {
    padding: 0.4rem 1rem;
    margin-bottom: 0.9rem; /* Maintain equal gap */
  }
  
  .notice-box h2 {
    font-size: 1rem;
  }
  
  .notice-icon {
    font-size: 1.1rem;
  }
  
  .disclaimer-body p {
    margin: 0 0 0.8rem 0; /* Equal spacing */
    font-size: 0.85rem;
  }
  
  .single-email {
    margin: 0.8rem 0; /* Equal spacing */
  }
  
  .disclaimer-body a {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
  
  .understand-btn {
    margin-top: 0.8rem; /* Equal spacing */
    padding: 0.7rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .disclaimer-content {
    width: 96%;
    max-height: 90vh;
  }
  
  .disclaimer-body {
    padding: 1rem 1.2rem 0.6rem;
  }
  
  .notice-box {
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.8rem; /* Maintain equal gap */
  }
  
  .notice-box h2 {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
  
  .notice-icon {
    font-size: 1rem;
  }
  
  .disclaimer-body p {
    margin: 0 0 0.7rem 0; /* Equal spacing */
    font-size: 0.8rem;
  }
  
  .single-email {
    margin: 0.7rem 0; /* Equal spacing */
  }
  
  .disclaimer-body a {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }
  
  .understand-btn {
    margin-top: 0.7rem; /* Equal spacing */
    padding: 0.6rem;
    font-size: 0.8rem;
  }
}
/* Impact Statement - Beautiful Quote Box (Wider & More Compact) */
.impact-statement {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 2rem 3.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
  border-radius: 16px;
  border: 2px solid var(--secondary);
  box-shadow: 
    0 20px 60px rgba(44, 62, 80, 0.12),
    0 0 0 1px rgba(201, 169, 97, 0.1),
    inset 0 0 60px rgba(201, 169, 97, 0.03);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.impact-statement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
}

.impact-statement::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.impact-statement:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 70px rgba(44, 62, 80, 0.15),
    0 0 0 1px rgba(201, 169, 97, 0.2),
    inset 0 0 60px rgba(201, 169, 97, 0.05);
  border-color: var(--accent);
}

.statement-icon {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(201, 169, 97, 0.3));
  position: relative;
  z-index: 1;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.impact-statement p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--primary);
  text-align: center;
  font-style: italic;
  font-weight: 500;
  margin: 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

.impact-statement p::before,
.impact-statement p::after {
  content: '"';
  font-size: 3.5rem;
  color: var(--secondary);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 0;
  position: absolute;
}

.impact-statement p::before {
  top: -5px;
  left: -20px;
}

.impact-statement p::after {
  bottom: -35px;
  right: -20px;
}


/* =========================
   RESPONSIVE MEDIA QUERIES
   Organized and Optimized
========================= */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
  /* Hero Section */
  .hero {
    min-height: auto !important;
    padding-top: 80px;
    padding-bottom: 0;
    height: fit-content;
    padding-right: 20px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 2rem 1rem;
  }

  .hero-text {
    padding-left: 0;
    text-align: center;
  }

  .hero-image {
    height: auto;
    margin-bottom: 0;
  }

  .image-placeholder {
    height: 400px;
    margin: 0;
  }

  .subtitle {
    padding-top: 40px;
  }

  /* About Section */
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    order: 2;
  }

  .about-text {
    order: 1;
  }

  .about-image .image-placeholder {
    height: 500px;
  }

  .about-text h3 {
    font-size: 2.2rem;
    text-align: center;
  }

  .about-text p {
    text-align: left;
    font-size: 1.05rem;
  }

  .highlight-box {
    padding: 2rem;
    padding-top: 2rem;
    padding-left: 20px;
    border-radius: 16px;
  }

  /* Values Section */
  .impact-statement {
    max-width: 95%;
    padding: 2rem 2.5rem;
  }
  
  /* Remove pseudo-elements */
  .hero::after {
    display: none;
  }
}

/* Tablet - 768px and below */
@media (max-width: 768px) {
  /* Hero Section */
  .hero {
    padding-top: 70px;
    padding-bottom: 0;
    min-height: auto;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e4de 100%);
    background-size: cover;
    animation: none;
  }

  .hero::before {
    display: none;
  }

  .hero,
  .hero > * {
    max-height: none !important;
  }

  .hero-content {
    padding: 0 1.5rem 0.5rem;
    gap: 1.5rem;
  }

  .hero-text h1 {
    text-align: center;
  }

  .hero-text .subtitle {
    text-align: center;
  }

  .hero-text p {
    text-align: center;
  }

  .image-placeholder {
    height: 350px;
  }

  /* About Section */
  .about {
    padding: 6rem 2rem;
  }

  .about-content {
    gap: 2.5rem;
  }

  .about-text h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .about-image .image-placeholder {
    height: 400px;
    border-radius: 10px;
  }

  .highlight-box {
    padding: 1.8rem;
    margin-top: 2rem;
    border-radius: 15px;
  }

  .highlight-box p {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .highlight-box::before {
    font-size: 2rem;
    right: 15px;
    top: 15px;
  }

  /* Values Section */
  .impact-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .value-card {
    min-height: 320px;
    padding: 2.5rem 2rem;
  }

  .value-icon {
    font-size: 3rem;
  }

  .value-card h3 {
    font-size: 1.7rem;
  }

  .value-card p {
    font-size: 1rem;
  }

  .impact-statement {
    padding: 1.5rem 2rem;
    margin: 3rem 1rem 0;
  }

  .impact-statement p {
    font-size: 1.2rem;
    text-align: center;
  }

  .statement-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .impact-statement p::before,
  .impact-statement p::after {
    font-size: 2.5rem;
  }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
  /* Hero Section */
  .hero {
    padding: 50px 0 1rem;
  }

  .hero-content {
    padding: 0 1rem 0;
    gap: 1rem;
  }

  .hero-text h1 {
    text-align: center;
  }

  .hero-text .subtitle {
    text-align: center;
  }

  .hero-text p {
    text-align: center;
  }

  .image-placeholder {
    height: 300px;
  }

  /* About Section */
  .about {
    padding: 5rem 1.5rem;
  }

  .about-content {
    gap: 2rem;
  }

  .about-text h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    text-align: center;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    text-align: left;
  }

  .about-image .image-placeholder {
    height: 350px;
    border-radius: 8px;
  }

  .highlight-box {
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 12px;
  }

  .highlight-box p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .highlight-box::before {
    font-size: 1.8rem;
    right: 12px;
    top: 12px;
  }

  /* Values Section */
  .value-card {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .impact-statement {
    padding: 1.25rem 1.5rem;
  }

  .impact-statement p {
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: center;
  }

  .statement-icon {
    font-size: 1.75rem;
  }
}

/* Small Mobile - 360px and below */
@media (max-width: 360px) {
  /* About Section */
  .about {
    padding: 4rem 1rem;
  }

  .about-text h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .about-text p {
    font-size: 0.9rem;
    text-align: left;
  }

  .about-image .image-placeholder {
    height: 300px;
  }

  .highlight-box {
    padding: 1.2rem;
  }

  .highlight-box p {
    font-size: 0.95rem;
  }
}

/* Tablet Landscape - 768px to 1024px in landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .about {
    padding: 6rem 2rem;
  }

  .about-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }

  .about-image .image-placeholder {
    height: 450px;
  }

  .about-text h3 {
    font-size: 2rem;
    text-align: left;
  }

  .about-text p {
    font-size: 1.05rem;
    text-align: left;
  }
}