/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Premium Luxury Dark Theme */
  --primary: #E5B842;          /* Royal Gold */
  --primary-hover: #C59B2E;    /* Dark Gold */
  --primary-rgb: 229, 184, 66;
  --bg-deep: #0B0D10;          /* Deep Obsidian */
  --bg-dark: #12151B;          /* Dark Charcoal */
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(229, 184, 66, 0.3);
  
  --text-main: #F3F4F6;        /* High Contrast White */
  --text-muted: #9CA3AF;       /* Muted Gray */
  --text-dark: #1F2937;
  
  /* Status Colors */
  --success: #10B981;
  --error: #EF4444;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadow & Glow */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
  --gold-glow: 0 0 15px rgba(229, 184, 66, 0.25);
  --gold-glow-strong: 0 0 25px rgba(229, 184, 66, 0.45);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  /* Container Width */
  --container-width: 1280px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: #252B35;
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-deep);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  object-fit: cover;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  color: inherit;
  outline: none;
}

/* Reusable Components/Layout Utilities */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

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

.section-bg-dark {
  background-color: var(--bg-dark);
}

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

.section-header {
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-header p {
  font-size: 1.125rem;
  margin-top: 10px;
}

.highlight {
  color: var(--primary);
  background: linear-gradient(120deg, var(--primary) 0%, #FFF5D0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all var(--transition-normal);
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-deep);
  box-shadow: var(--gold-glow);
}

.btn-primary::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: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow-strong);
}

.btn-secondary {
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(229, 184, 66, 0.05);
  transform: translateY(-2px);
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  font-size: 1.5rem;
  transition: var(--transition-normal);
  position: relative;
}

.float-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: -1;
  animation: pulse-ring 1.5s infinite;
}

.float-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-whatsapp::before {
  background-color: rgba(37, 211, 102, 0.4);
}

.float-phone {
  background-color: #0070f3;
}

.float-phone::before {
  background-color: rgba(0, 112, 243, 0.4);
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-normal);
}

.header.scrolled {
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}

.header.scrolled .nav-container {
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: var(--transition-normal);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-weight: 900;
  font-size: 1.3rem;
}

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

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

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

.nav-link:hover, .nav-link.active {
  color: #fff;
}

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

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

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (outstation mountain bg)
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(11, 13, 16, 0.4), rgba(11, 13, 16, 0.9)), url('assets/scenic_route.jpg') no-repeat center center / cover;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 35px;
  max-width: 600px;
}

.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 10px 15px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: var(--primary);
}

/* Quick Inquiry Card */
.hero-card {
  background: rgba(18, 21, 27, 0.6);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.hero-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

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

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

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 15px;
  color: #fff;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(229, 184, 66, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

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

select.form-input option {
  background: var(--bg-dark);
  color: #fff;
}

/* ==========================================================================
   ABOUT / HIGHLIGHTS SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}

.about-img-wrapper {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.about-img-wrapper img {
  transition: var(--transition-slow);
  width: 100%;
  height: 250px;
}

.about-images:hover img {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--bg-deep);
  padding: 15px 30px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-family: var(--font-heading);
  box-shadow: var(--gold-glow);
  text-align: center;
}

.about-badge span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.about-text p {
  margin-bottom: 20px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.feature-item i {
  color: var(--primary);
}

/* ==========================================================================
   FLEET SECTION
   ========================================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--gold-glow);
  background: var(--bg-card-hover);
}

.fleet-img-container {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.fleet-img-container img {
  width: 100%;
  height: 100%;
  transition: var(--transition-slow);
  border-radius: 0;
}

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

.fleet-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(11, 13, 16, 0.7);
  backdrop-filter: blur(5px);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.fleet-details {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fleet-details h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 15px 0 25px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
}

.spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.spec i {
  color: var(--primary);
  font-size: 1.1rem;
}

.fleet-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price-box span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-box h4 {
  font-size: 1.5rem;
  color: var(--primary);
}

/* ==========================================================================
   POPULAR ROUTES / OUTSTATIONS
   ========================================================================== */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.route-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.route-img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: var(--transition-slow);
}

.route-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 13, 16, 0.95) 10%, rgba(11, 13, 16, 0.3) 60%, transparent);
  z-index: 1;
}

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

.route-card:hover {
  border-color: var(--primary);
  box-shadow: var(--gold-glow);
}

.route-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 2;
}

.route-tag {
  background: var(--primary);
  color: var(--bg-deep);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.route-content h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.route-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #D1D5DB;
}

.route-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

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

.route-price {
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}

/* ==========================================================================
   INTERACTIVE FARE ESTIMATOR
   ========================================================================== */
.calc-container {
  background: rgba(18, 21, 27, 0.6);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.calc-form h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.range-wrap {
  position: relative;
  margin: 25px 0 10px 0;
}

.range-input {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--border-color);
  outline: none;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(229, 184, 66, 0.5);
  transition: transform 0.1s;
}

.range-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.calc-result {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.result-header h4 {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.est-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  margin: 15px 0;
}

.est-breakdown {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: left;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  margin-bottom: 20px;
}

.est-breakdown li {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.est-breakdown li i {
  color: var(--success);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 35px;
  position: relative;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 6rem;
  color: rgba(229, 184, 66, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 25px;
  font-size: 0.98rem;
  color: #E5E7EB;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.user-info h4 {
  font-size: 1rem;
}

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

/* ==========================================================================
   FAQ SECTION (Accordions)
   ========================================================================== */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-fast);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-icon {
  font-size: 1rem;
  color: var(--primary);
  transition: var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: var(--text-muted);
  transition: all var(--transition-normal) ease-out;
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(229, 184, 66, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-details p, .contact-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-details a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form p {
  margin-bottom: 30px;
}

/* Form Message Notification */
.form-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: var(--radius-sm);
  display: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid var(--success);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background-color: #080A0D;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 20px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col p {
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(3px);
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.social-icon:hover {
  background: var(--primary);
  color: var(--bg-deep);
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */
@media (max-width: 1024px) {
  h2 {
    font-size: 2.1rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 120px;
    padding-bottom: 40px;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--bg-dark);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    padding: 100px 30px;
    align-items: flex-start;
    transition: var(--transition-normal);
    z-index: 99;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-toggle {
    display: block;
    z-index: 100;
  }
  
  .nav-cta {
    display: none; /* Hide top CTA on mobile */
  }
  
  .nav-menu .nav-cta {
    display: flex; /* Show CTA inside menu on mobile */
    margin-top: 20px;
  }
  
  .hero-content h1 {
    font-size: 2.4rem;
  }
  
  .hero-badges {
    flex-wrap: wrap;
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .about-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-actions {
    bottom: 20px;
    right: 20px;
  }
}
