/* =========================================
   VARIABLES & DESIGN SYSTEM
   ========================================= */
:root {
  /* Colors */
  --primary-yellow: #fdb813;
  --primary-yellow-hover: #e5a300;
  --secondary-green: #5eb028; /* Logo Green */
  --dark-blue: #0b1a13; /* Forest Green Black */
  --dark-blue-light: #153123;
  --light-bg: #f4fbf3; /* Ultra light green */
  --white: #ffffff;
  --text-main: #303d36;
  --text-light: #67786f;
  --border-color: #dbeae0;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 5rem 0;
  
  /* Shadows & Radius - Trending Soft Look */
  --shadow-sm: 0 4px 12px rgba(11, 26, 19, 0.04);
  --shadow-md: 0 12px 32px rgba(11, 26, 19, 0.08), 0 4px 8px rgba(11, 26, 19, 0.04);
  --shadow-lg: 0 24px 56px rgba(11, 26, 19, 0.12), 0 12px 24px rgba(11, 26, 19, 0.06);
  --shadow-hover: 0 32px 64px rgba(11, 26, 19, 0.16), 0 16px 32px rgba(11, 26, 19, 0.08);
  --radius-sm: 0.5rem;   /* 8px */
  --radius-md: 1rem;     /* 16px */
  --radius-lg: 1.5rem;   /* 24px */
  
  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-blue);
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
}

.section-bg-light {
  background-color: var(--light-bg);
}

.section-bg-dark {
  background-color: var(--dark-blue);
  color: var(--white);
}

.section-bg-dark h2, .section-bg-dark p {
  color: var(--white);
}

.text-center {
  text-align: center;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.section-bg-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   COMPONENTS
   ========================================= */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #f7a900 100%);
  color: var(--dark-blue);
  border: none;
  box-shadow: 0 4px 12px rgba(253, 184, 19, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f7a900 0%, #e59a00 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(253, 184, 19, 0.4);
}

.btn-secondary {
  background-color: var(--dark-blue);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--dark-blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--dark-blue);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  :root {
  /* Colors */
  --primary-yellow: #fdb813;
  --primary-yellow-hover: #e5a300;
  --secondary-green: #5eb028; /* Logo Green */
  --dark-blue: #0b1a13; /* Forest Green Black */
  --dark-blue-light: #153123;
  --light-bg: #f4fbf3; /* Ultra light green */
  --white: #ffffff;
  --text-main: #303d36;
  --text-light: #67786f;
  --border-color: #dbeae0;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 5rem 0;
  
  /* Shadows & Radius - Trending Soft Look */
  --shadow-sm: 0 4px 12px rgba(11, 26, 19, 0.04);
  --shadow-md: 0 12px 32px rgba(11, 26, 19, 0.08), 0 4px 8px rgba(11, 26, 19, 0.04);
  --shadow-lg: 0 24px 56px rgba(11, 26, 19, 0.12), 0 12px 24px rgba(11, 26, 19, 0.06);
  --shadow-hover: 0 32px 64px rgba(11, 26, 19, 0.16), 0 16px 32px rgba(11, 26, 19, 0.08);
  --radius-sm: 0.5rem;   /* 8px */
  --radius-md: 1rem;     /* 16px */
  --radius-lg: 1.5rem;   /* 24px */
  
  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
  
  .section-title {
    font-size: 2rem;
  }
}

/* =========================================
   UTIL CLASSES
   ========================================= */
.text-yellow { color: var(--primary-yellow); }
.text-green { color: var(--secondary-green); }
.text-white { color: var(--white); }
.highlight-yellow { color: var(--primary-yellow); }
.d-none-sm { display: inline-flex; }

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85); /* Slightly more transparent */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

/* Navigation & Links */
.nav-menu { display: flex; align-items: center; }
.nav-list { display: flex; gap: 2rem; align-items: center; }
.nav-link { font-weight: 500; font-size: 1rem; color: var(--dark-blue); transition: color 0.3s; position: relative; }
.nav-link:hover { color: var(--secondary-green); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-green);
  transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu - Desktop Hidden by default */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 0.5rem 0;
  display: none !important; /* Force hide by default */
  z-index: 1000;
  border-top: 3px solid var(--secondary-green);
}

.dropdown:hover .dropdown-menu {
  display: block !important; /* Show on hover */
}

.dropdown-menu li { width: 100%; }
.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--dark-blue);
  font-weight: 500;
  font-size: 0.95rem;
}

.dropdown-menu li a:hover {
  background-color: var(--light-bg);
  color: var(--secondary-green);
}

.header-actions { display: flex; align-items: center; gap: 1rem; }
.menu-toggle { display: none !important; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 80px; /* Offset for header */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(11, 26, 19, 0.9) 0%, rgba(11, 26, 19, 0.6) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 5;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--primary-yellow);
  padding: 0.5rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.custom-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: rgba(0, 168, 89, 0.1);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.bg-yellow { background-color: var(--primary-yellow); }
.bg-green-light { background-color: rgba(0, 168, 89, 0.1); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  text-align: center;
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(253, 184, 19, 0.1);
  color: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem auto;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  background-color: var(--primary-yellow);
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */
.container-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.why-image, .why-content {
  flex: 1;
}

.image-wrapper {
  position: relative;
}

.rounded-image {
  border-radius: var(--radius-lg);
  width: 100%;
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  color: var(--dark-blue);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 4px solid var(--white);
}

.exp-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-heading);
}

.exp-text {
  font-weight: 600;
  font-size: 0.875rem;
}

.why-desc {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.trust-item i {
  font-size: 1.5rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--dark-blue);
  margin-bottom: 0.25rem;
}

.trust-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.features-list h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.features-list p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

/* =========================================
   SUBSIDY SECTION
   ========================================= */
.subsidy-tiers {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.tier-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-green);
}

.tier-card h4 {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.subsidy-amt {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-green);
}

.highlight-tier {
  border: 2px solid var(--secondary-green);
  box-shadow: var(--shadow-sm);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-green);
  color: var(--white);
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  white-space: nowrap;
}

/* =========================================
   PORTFOLIO SECTION
   ========================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(11, 26, 19, 0.9) 0%, rgba(11, 26, 19, 0) 100%);
  color: var(--white);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-overlay h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-color: var(--primary-yellow);
  z-index: 1;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border: 4px solid var(--primary-yellow);
  color: var(--dark-blue);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.step-card:hover .step-icon {
  background-color: var(--primary-yellow);
  color: var(--white);
  transform: scale(1.1);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(11, 26, 19, 0.05);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.step-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* =========================================
   CALCULATOR SECTION
   ========================================= */
.calc-container {
  display: flex;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.calc-form {
  flex: 1;
  padding: 3rem;
}

.calc-results {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-green);
  box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.1);
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result-label {
  color: rgba(255, 255, 255, 0.8);
}

.result-value {
  font-weight: 700;
  font-size: 1.125rem;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  text-align: left;
}

.review-text {
  font-style: italic;
  color: var(--text-main);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary-yellow);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

/* =========================================
   CONTACT & LEAD FORM SECTION
   ========================================= */
.contact-box {
  display: flex;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--white);
}

.contact-info-panel {
  flex: 1;
  padding: 3rem;
}

.contact-form-panel {
  flex: 1.5;
  padding: 3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* =========================================
   BLOG SECTION
   ========================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  transition: all var(--transition-normal);
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* RESPONSIVE UPGRADES FOR NEW SECTIONS */
@media (max-width: 992px) {
  .process-steps::before { display: none; }
  .subsidy-tiers { flex-direction: column; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .calc-container, .contact-box { flex-direction: column; }
  .testimonials-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .portfolio-grid, .process-steps { grid-template-columns: 1fr; }
  .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .calc-results { padding: 2rem; }
  .calc-form, .contact-info-panel, .contact-form-panel { padding: 2rem 1.5rem; }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  padding-top: 5rem;
  padding-bottom: 2rem;
}

/* Footer offices grid */
.footer-offices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: left;
  margin-bottom: 2rem;
}

.office-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.office-card h4 {
  color: var(--primary-yellow);
  margin-bottom: 1rem;
}

.office-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.office-card a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.office-card a:hover {
  color: var(--primary-yellow);
}

.office-card ul {
  list-style: none;
  padding: 0;
}

@media (max-width: 768px) {
  .footer-offices {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-offices {
    grid-template-columns: 1fr;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-desc {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--primary-yellow);
  color: var(--dark-blue);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links li, .contact-info li {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--primary-yellow);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info i {
  color: var(--primary-yellow);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* RESPONSIVE UPDATES FOR MOBILE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    transition: left var(--transition-normal);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    font-size: 1.25rem;
  }
  
  .menu-toggle {
    display: block !important;
  }
  
  .d-none-sm {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
