/* ============================================
   GMAT Preparation Courses - Main Stylesheet
   Design: Editorial/Magazine with Geometric Accents
   ============================================ */

:root {
  /* Color Palette - Sophisticated & Bold */
  --primary-deep: #1a2332;
  --primary-mid: #2d3e54;
  --accent-coral: #ff6b5e;
  --accent-amber: #f4a261;
  --accent-teal: #2a9d8f;
  --neutral-cream: #faf8f4;
  --neutral-sand: #e8e4dc;
  --text-dark: #1f1f1f;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-heading: 'Archivo', sans-serif;
  --font-body: 'Manrope', sans-serif;
  
  /* Spacing */
  --section-padding: 120px;
  --container-max: 1320px;
  
  /* Effects */
  --shadow-soft: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-medium: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-strong: 0 30px 90px rgba(0,0,0,0.18);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--neutral-cream);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

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

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h4 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

.display-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-coral);
}

.lead-text {
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  line-height: 1.8;
  color: var(--text-mid);
}

/* ============================================
   NAVIGATION
   ============================================ */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 35, 50, 0.08);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background: rgba(250, 248, 244, 0.98);
  box-shadow: var(--shadow-soft);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-deep);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent-coral);
}

.nav-menu {
  display: flex;
  gap: 45px;
  align-items: center;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-mid);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-coral);
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-deep);
}

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

.cta-button {
  background: var(--accent-coral);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(255, 107, 94, 0.3);
}

.cta-button:hover {
  background: #ff5548;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 94, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary-deep);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

/* ============================================
   CONTAINER & SECTIONS
   ============================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 30px;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  background: linear-gradient(135deg, var(--neutral-cream) 0%, #f0ede6 100%);
}

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

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: var(--accent-teal);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

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

.hero .lead-text {
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent-coral);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(255, 107, 94, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: #ff5548;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 94, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-deep);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary-deep);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.hero-visual {
  position: relative;
  height: 550px;
}

.hero-image-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-image-card.main {
  width: 65%;
  height: 75%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-image-card.accent {
  width: 45%;
  height: 50%;
  bottom: 0;
  right: 0;
  z-index: 3;
  border: 8px solid var(--neutral-cream);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative Elements */
.hero-decor {
  position: absolute;
  z-index: 1;
}

.hero-decor.circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-coral));
  opacity: 0.1;
  top: 10%;
  right: 5%;
  animation: float 8s ease-in-out infinite;
}

.hero-decor.square-1 {
  width: 150px;
  height: 150px;
  background: var(--accent-teal);
  opacity: 0.08;
  bottom: 15%;
  left: 10%;
  transform: rotate(45deg);
  animation: rotate-slow 20s linear infinite;
}

/* ============================================
   FEATURES / BENEFITS SECTION
   ============================================ */

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

.feature-card {
  background: white;
  padding: 45px 35px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-coral), var(--accent-amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-amber));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--primary-deep);
}

.feature-card p {
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================
   ROADMAP / TIMELINE
   ============================================ */

.roadmap {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-mid) 100%);
  color: white;
}

.roadmap .section-header h2,
.roadmap .section-header p {
  color: white;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-coral), var(--accent-teal));
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content:first-child {
  order: 3;
}

.timeline-item:nth-child(even) .timeline-dot {
  order: 2;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content.empty {
  visibility: hidden;
}

.timeline-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-coral);
  margin-bottom: 15px;
  line-height: 1;
}

.timeline-content h3 {
  color: white;
  margin-bottom: 12px;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.timeline-dot {
  width: 80px;
  height: 80px;
  background: var(--accent-coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 0 0 8px rgba(255, 107, 94, 0.2);
  align-self: start;
  margin-top: 20px;
}

/* ============================================
   MYTH VS FACT SECTION
   ============================================ */

.myth-fact-section {
  background: var(--neutral-sand);
}

.myth-fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.myth-fact-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.myth-fact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.myth-fact-header {
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 1.1rem;
}

.myth-fact-header.myth {
  background: linear-gradient(135deg, #ff6b5e, #ff8578);
  color: white;
}

.myth-fact-header.fact {
  background: linear-gradient(135deg, #2a9d8f, #44b3a5);
  color: white;
}

.myth-fact-body {
  padding: 25px;
}

.myth-fact-body h4 {
  color: var(--primary-deep);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.myth-fact-body p {
  color: var(--text-mid);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================
   COURSE OUTCOME MAP
   ============================================ */

.outcome-map {
  background: white;
}

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

.outcome-node {
  text-align: center;
  position: relative;
}

.outcome-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-coral));
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(42, 157, 143, 0.3);
  transition: var(--transition-smooth);
}

.outcome-node:hover .outcome-icon {
  transform: scale(1.1) rotate(5deg);
}

.outcome-node h4 {
  color: var(--primary-deep);
  margin-bottom: 10px;
}

.outcome-node p {
  color: var(--text-mid);
  font-size: 0.9rem;
}

/* ============================================
   PRICING / SERVICES
   ============================================ */

.pricing-section {
  background: linear-gradient(135deg, var(--neutral-cream), white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 45px 40px;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-coral), var(--accent-teal));
}

.pricing-card.featured {
  border-color: var(--accent-coral);
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-strong);
}

.pricing-badge {
  background: var(--accent-coral);
  color: white;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  color: var(--primary-deep);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-coral);
  margin-bottom: 10px;
  line-height: 1;
}

.pricing-price span {
  font-size: 1.2rem;
  color: var(--text-mid);
  font-family: var(--font-body);
}

.pricing-duration {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 30px;
  display: block;
}

.pricing-features {
  margin-bottom: 35px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--neutral-sand);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-mid);
  font-size: 0.95rem;
}

.pricing-features li i {
  color: var(--accent-teal);
  font-size: 1.1rem;
}

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ============================================
   STATS / METRICS SECTION
   ============================================ */

.stats-section {
  background: var(--primary-deep);
  color: white;
}

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

.stat-item {
  position: relative;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-coral);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-coral), var(--accent-amber));
}

/* ============================================
   TRUST & COMPLIANCE
   ============================================ */

.trust-section {
  background: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.trust-card {
  background: var(--neutral-cream);
  padding: 35px 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-smooth);
}

.trust-card:hover {
  background: white;
  box-shadow: var(--shadow-soft);
}

.trust-card i {
  font-size: 3rem;
  color: var(--accent-teal);
  margin-bottom: 20px;
}

.trust-card h4 {
  color: var(--primary-deep);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.trust-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-amber));
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  color: white;
  margin-bottom: 25px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-section .btn-primary {
  background: white;
  color: var(--accent-coral);
}

.cta-section .btn-primary:hover {
  background: var(--neutral-cream);
  color: var(--primary-deep);
}

.cta-section .btn-secondary {
  border-color: white;
  color: white;
}

.cta-section .btn-secondary:hover {
  background: white;
  color: var(--accent-coral);
}

.cta-section .hero-buttons{
  display: flex;
  justify-content: center;
}

/* CTA Decorative Elements */
.cta-decor {
  position: absolute;
  opacity: 0.1;
}

.cta-decor.circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 40px solid white;
  top: -200px;
  right: -100px;
}

.cta-decor.dots {
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, white 2px, transparent 2px);
  background-size: 20px 20px;
  bottom: -50px;
  left: -50px;
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
  background: var(--primary-deep);
  color: white;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-about h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.7;
}

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

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background: var(--accent-coral);
  transform: translateY(-3px);
}

.footer-links h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
  color: var(--accent-coral);
  padding-left: 5px;
}

.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 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

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

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

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

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 25px 30px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent-coral);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.cookie-accept {
  background: var(--accent-coral);
  color: white;
}

.cookie-accept:hover {
  background: #ff5548;
}

.cookie-reject {
  background: var(--neutral-sand);
  color: var(--text-dark);
}

.cookie-reject:hover {
  background: var(--text-mid);
  color: white;
}

.cookie-preferences {
  background: transparent;
  color: var(--text-mid);
  border: 2px solid var(--neutral-sand);
}

.cookie-preferences:hover {
  border-color: var(--accent-coral);
  color: var(--accent-coral);
}

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

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

@keyframes rotate-slow {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* AOS Animation Overrides */
[data-aos] {
  transition-duration: 0.8s;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
  opacity: 0;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

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

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 60px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 60px; }

.pt-0 { padding-top: 0; }
.pt-5 { padding-top: 90px; }

.pb-0 { padding-bottom: 0; }
.pb-5 { padding-bottom: 90px; }

.bg-white { background: white; }
.bg-cream { background: var(--neutral-cream); }
.bg-sand { background: var(--neutral-sand); }
.bg-dark { background: var(--primary-deep); }

.color-coral { color: var(--accent-coral); }
.color-teal { color: var(--accent-teal); }
.color-amber { color: var(--accent-amber); }
.navbar-brand img{
    max-width: 250px;
    width: 250px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}
.contact-wrapper{
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: start;
}

@media(max-width: 991px){
  .contact-wrapper{
  display: grid; 
  grid-template-columns: 1fr; 
  }
}