/* ========================================
   Premium Solar Landing Page - SCSS
   ======================================== */
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-50: #f0fdf4;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-50: #eff6ff;
  /* Spacing */
  --container-max: 1280px;
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-3xl: 3rem;
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  /* Transitions */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--slate-900);
  background: white;
  overflow-x: hidden;
}

/* =========================================
   Font Setup
   ========================================= */
:root {
  --font-clean: "Outfit", sans-serif;
  /* Body aur details ke liye */
  --font-crazy: "Syne", sans-serif;
  /* Hero aur Menu ke liye */
}

/* 1. Default: Poori website par clean font rahega */
body {
  font-family: var(--font-clean);
  font-weight: 400;
}

/* 2. Hero Section (Sirf Main Heading Badi wali) */
/* Adjust selector based on your code, e.g., .hero h1 */
.hero-content h1,
header h1 {
  font-family: var(--font-crazy);
  font-weight: 800;
  /* Extra Bold */
  letter-spacing: -1px;
  /* Thoda chipka hua stylish look */
}

/* 3. Mobile Navigation Menu (Jab open ho) */
/* Mobile menu ke links par crazy font */
.mobile-nav a,
.mobile-menu .nav-link,
#mobileNav a {
  font-family: var(--font-crazy);
  font-weight: 700;
  font-size: 2rem;
  /* Thoda bada taaki font ka style dikhe */
}

/* 4. Logo Text (Ye bhi stylish hona chahiye) */
.logo-text {
  font-family: var(--font-crazy);
  font-weight: 700;
}

/* 5. Section Headings (Optional: Agar aap chahein ki har section ka title stylish ho) */
h2.section-title,
.testimonials h2,
.features h2 {
  font-family: var(--font-crazy);
  font-weight: 600;
}

/* Baaki sab kuch (Paragraphs, Buttons, Inputs) Outfit font (clean) mein rahega */
p,
button,
input,
label,
.small-text {
  font-family: var(--font-clean);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection { background: var(--orange-500); color: white; }

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-small {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   NavBar
   ======================================== */
/* ==========================================================================
   COMPLETE NAVIGATION  (Floating Pill + Mobile Responsive + Scroll FX)
   ========================================================================== */
/* --- 2. Header Container --- */
.header-floating {
  position: fixed;
  top: 1.5rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 1.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
  .header-floating {
    top: 1rem;
    padding: 0 1rem;
  }
}

.header-floating.scrolled {
  top: 0.5rem;
}

.header-floating.scrolled .nav-pill {
  background: rgb(255, 255, 255);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* --- 3. The Pill Navbar (Main Bar) --- */
.nav-pill {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1001;
  transition: all 0.4s ease;
}

@media (max-width: 768px) {
  .nav-pill {
    padding: 0.6rem 1rem;
  }
}

/* --- 4. Logo Styling --- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  z-index: 1002;
}

.logo .logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #0f172a;
  color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.logo .logo-text {
  font-family: "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.logo .logo-text .dot {
  color: #ea580c;
}

.logo:hover .logo-icon {
  transform: rotate(20deg);
}

/* --- 5. Desktop Navigation Links --- */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
}

.nav-links .nav-link {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links .nav-link:hover {
  color: #ea580c;
}

/* --- 6. Right Side Actions (Button + Toggle) --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-actions .cta-btn {
  background: #ea580c;
  color: #ffffff;
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(234, 88, 12, 0.3);
}

.nav-actions .cta-btn:hover {
  background: #0f172a;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .nav-actions .cta-btn {
    padding: 0;
    width: 2.5rem;
    height: 2.5rem;
    justify-content: center;
    border-radius: 50%;
  }

  .nav-actions .cta-btn .cta-text {
    display: none;
  }

  .nav-actions .cta-btn i {
    margin: 0;
    font-size: 1rem;
  }
}

.nav-actions .mobile-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #475569;
  background: #f1f5f9;
  border: none;
  color: #0f172a;
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

@media (max-width: 992px) {
  .nav-actions .mobile-toggle {
    display: flex;
  }
}

.nav-actions .mobile-toggle:hover {
  background: #e2e8f0;
}

/* --- 7. Mobile Menu Overlay (Fixed Visibility) --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-overlay .mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.mobile-menu-overlay .mobile-menu-content .mobile-link {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.3s;
}

@media (max-width: 768px) {
  .mobile-menu-overlay .mobile-menu-content .mobile-link {
    font-size: 1.75rem;
  }
}

.mobile-menu-overlay .mobile-menu-content .mobile-link:hover,
.mobile-menu-overlay .mobile-menu-content .mobile-link.highlight {
  color: #ea580c;
}

/* ========================================
   Hero Section
   ======================================== */
/* ========================================
   HERO SECTION - PREMIUM UI FIX
   ======================================== */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Full Height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
    padding-bottom: 5rem;
    background-color: #f8fafc; /* Base color */
    overflow: hidden; /* Blur bahar na nikle */
}

/* --- 1. BACKGROUND WRAPPER --- */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Content ke peeche */
    pointer-events: none;
}

/* --- 2. SOLAR IMAGE (With Blur & Opacity) --- */
.hero-bg::before {
    content: '';
    position: absolute;
    /* Thoda negative margin taaki blur edges clean dikhein */
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    
    /* High Quality Solar Image */
    background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* --- MAGIC SETTINGS --- */
    opacity: 0.15; /* 15% Visibility (Perfect for text overlay) */
    filter: blur(8px) grayscale(20%); /* Blur + Thoda Black & White */
    z-index: -1;
}

/* --- 3. GRID PATTERN (Image ke upar) --- */
.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(15, 23, 42, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
    background-size: 50px 50px; /* Grid Box Size */
    
    /* Fade out effect (Bottom me grid gayab ho jayega) */
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    z-index: 1;
}

/* --- 4. FLOATING ORBS (Color Blobs) --- */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: 0;
    animation: pulse 6s ease-in-out infinite;
}

.gradient-orb-1 {
    top: -10%;
    right: -5%;
    width: 30rem;
    height: 30rem;
    background: rgba(249, 115, 22, 0.25); /* Orange Glow */
}

.gradient-orb-2 {
    bottom: 0%;
    left: -10%;
    width: 25rem;
    height: 25rem;
    background: rgba(34, 197, 94, 0.2); /* Green Glow */
    animation-delay: 3s;
}

/* --- 5. CONTENT LAYERING (Sabse Upar) --- */
.hero .container {
    position: relative;
    z-index: 10; /* Background ke upar */
}

/* Layout Fixes */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Text Left, Calculator Right */
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-left {
        align-items: center; /* Center align items on mobile */
        margin: 0 auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
}

/* Typography Fixes to match new BG */
.hero-title {
    color: var(--slate-900);
    text-shadow: 0 0 40px rgba(255,255,255,0.8); /* Text ke peeche glow */
}

.hero-description {
    font-size: 1.25rem;
    color: var(--slate-700);
    font-weight: 500;
}


@media (max-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-ctas {
    justify-content: center;
    flex-direction: column;
  }
}

.hero .trust-indicators {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-200);
}

.hero .trust-indicators .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero .trust-indicators .trust-item .trust-icon {
  color: var(--green-600);
  font-size: 1.25rem;
}

.hero .trust-indicators .trust-item .trust-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
}

.hero .trust-indicators .avatars {
  display: flex;
  margin-right: 0.5rem;
}

.hero .trust-indicators .avatars .avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid white;
  margin-left: -0.5rem;
}

.hero .trust-indicators .avatars .avatar:first-child {
  margin-left: 0;
}



/* --- Watch Demo Button Design --- */
.btn-watch-demo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 35px 12px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-watch-demo .play-icon-circle {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea580c;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.btn-watch-demo .btn-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-watch-demo:hover {
    transform: translateY(-3px);
    background: white;
    border-color: #ea580c;
    box-shadow: 0 15px 30px rgba(234, 88, 12, 0.2);
}

.btn-watch-demo:hover .play-icon-circle {
    background: #ea580c;
    color: white;
    transform: scale(1.1);
}

.btn-watch-demo:hover .btn-text {
    color: #ea580c;
}

/* --- Video Modal --- */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1400px;
    background: black;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal-overlay.show .video-modal-content {
    transform: scale(1);
}

.video-container {
    width: 100%;
    height: 100%;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: #ea580c;
    transform: rotate(90deg);
}

.hero .calculator-card {
  background: white;
  border-radius: var(--radius-3xl);
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: var(--transition-slow);
}

@media (max-width: 480px) {
  .hero .calculator-card {
    padding: 1.5rem;
  }
}

.hero .calculator-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero .calculator-card .calculator-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero .calculator-card .calculator-header .calculator-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.hero .calculator-card .calculator-header .calculator-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
}

.hero .calculator-card .calculator-header .calculator-subtitle {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.hero .calculator-card .form-group {
  margin-bottom: 1.5rem;
}

.hero .calculator-card .form-group .form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 0.5rem;
}

.hero .calculator-card .form-group .form-label i {
  color: var(--orange-600);
}

.hero .calculator-card .form-group .form-input,
.hero .calculator-card .form-group .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-lg);
  transition: var(--transition-fast);
}

.hero .calculator-card .form-group .form-input:focus,
.hero .calculator-card .form-group .form-textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.hero .calculator-card .form-group .form-textarea {
  resize: none;
  font-family: inherit;
}

/* =========================================
   NEW PREMIUM CALCULATOR RESULTS (CSS)
   ========================================= */
/* 1. Define Variables (Taaki colors work karein) */
:root {
  --neon-glow: 0 0 15px rgba(249, 115, 22, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius-xl: 1rem;
  --radius-lg: 0.75rem;
  --radius-md: 0.5rem;
  --slate-50: #f8fafc;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --orange-50: #fff7ed;
  --orange-200: #fed7aa;
  --orange-600: #ea580c;
  --green-50: #f0fdf4;
  --green-600: #16a34a;
  --green-700: #15803d;
}

/* 2. Main Container Animation */
.calculator-results {
  animation: fadeIn 0.5s ease-in;
  margin-top: 2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 3. Savings Highlight (Dark Box) */
.savings-highlight {
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  text-align: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.savings-highlight-label {
  font-size: 0.875rem;
  color: var(--slate-400);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.savings-highlight-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  font-family: "Outfit", sans-serif;
}

/* 4. Grid Layout */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* 5. Result Cards */
.result-card {
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid;
  text-align: left;
}

.result-card-primary {
  background: linear-gradient(135deg, var(--slate-50), rgba(241, 245, 249, 0.5));
  border-color: rgba(226, 232, 240, 0.8);
}

.result-card-success {
  background: linear-gradient(135deg, var(--green-50), rgba(236, 253, 245, 0.5));
  border-color: rgba(34, 197, 94, 0.2);
}

.result-label {
  font-size: 0.875rem;
  color: var(--slate-600);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.result-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--slate-900);
}

.result-value-success {
  color: var(--green-700);
}

/* 6. Info Grid (ROI & CO2) */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.info-card {
  text-align: center;
  padding: 1rem;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.info-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
}

.info-label {
  font-size: 0.75rem;
  color: var(--slate-600);
  margin-top: 0.25rem;
}

/* 7. Cost Breakdown (Orange Box) */
.cost-breakdown {
  background: linear-gradient(135deg, var(--orange-50), rgba(254, 243, 199, 0.3));
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(251, 146, 60, 0.2);
  margin-bottom: 1.5rem;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.cost-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
}

.cost-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
}

.cost-divider {
  height: 1px;
  background: var(--orange-200);
  margin: 0.5rem 0;
  opacity: 0.5;
}

/* 8. Mobile Responsiveness */
@media (max-width: 480px) {

  .results-grid,
  .info-grid {
    grid-template-columns: 1fr;
    /* Stack vertically on mobile */
  }
}

.result-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator .scroll-wheel {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid var(--slate-300);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

.scroll-indicator .scroll-wheel::before {
  content: "";
  width: 0.375rem;
  height: 0.75rem;
  background: var(--orange-500);
  border-radius: 9999px;
  animation: scroll 2s infinite;
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
  position: relative;
  padding: 5rem 0;
  background: white;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(251, 146, 60, 0.03), transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    gap: 2rem;
  }
}

.stats .stat-item {
  text-align: center;
  transition: var(--transition-base);
}

.stats .stat-item:hover {
  transform: translateY(-4px);
}

.stats .stat-item:hover .stat-value {
  transform: scale(1.1);
}

.stats .stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
  transition: var(--transition-base);
}

@media (max-width: 480px) {
  .stats .stat-value {
    font-size: 2rem;
  }
}

.stats .stat-orange {
  color: var(--orange-600);
}

.stats .stat-green {
  color: var(--green-600);
}

.stats .stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
}

.stats .stat-label-orange {
  color: var(--orange-600);
}

.stats .stat-label-green {
  color: var(--green-600);
}

/* ========================================
   Global Section Header
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-badge {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--orange-50), rgba(254, 243, 199, 0.5));
  border: 1px solid rgba(251, 146, 60, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange-700);
  margin-bottom: 1rem;
}

.section-header .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .section-header .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section-header .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-header .section-title {
    font-size: 1.75rem;
  }
}

.section-header .section-description {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 48rem;
  margin: 0 auto;
}

/* ========================================
   Advantages (Bento Grid)
   ======================================== */




   
.advantages {
  padding: 1rem 0 8rem;
  background: linear-gradient(180deg, var(--slate-50), white);
}

.advantages .bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 350px);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .advantages .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}

@media (max-width: 768px) {
  .advantages .bento-grid {
    grid-template-columns: 1fr;
  }
}

.advantages .bento-card {
  position: relative;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  transition: var(--transition-slow);
}

.advantages .bento-card:hover {
  transform: translateY(-4px);
}

.advantages .bento-large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  color: white;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .advantages .bento-large {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .advantages .bento-large {
    grid-column: span 1;
  }
}

.advantages .bento-large .bento-glow {
  position: absolute;
  top: 5rem;
  right: 5rem;
  width: 16rem;
  height: 16rem;
  background: var(--orange-500);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  transition: var(--transition-slow);
}

.advantages .bento-large:hover .bento-glow {
  opacity: 0.3;
}

.advantages .bento-large .bento-content {
  position: relative;
  z-index: 10;
}

.advantages .bento-large .bento-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-base);
}

.advantages .bento-large:hover .bento-icon {
  transform: scale(1.1);
}

.advantages .bento-large .bento-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.advantages .bento-large .bento-description {
  font-size: 1.125rem;
  color: var(--slate-400);
  line-height: 1.7;
  max-width: 28rem;
}

.advantages .bento-large .bento-badge {
  position: relative;
  z-index: 10;
  display: inline-flex;
  padding: 0.75rem 1.25rem;
  background: var(--orange-500);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-lg);
  width: fit-content;
}

.advantages .bento-wide {
  grid-column: span 2;
  background: white;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .advantages .bento-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .advantages .bento-wide {
    grid-column: span 1;
  }
}

.advantages .bento-wide:hover {
  box-shadow: var(--shadow-2xl);
}

.advantages .bento-wide:hover .bento-icon-large {
  transform: scale(1.1);
}

.advantages .bento-wide .bento-icon-large {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--orange-100), rgba(254, 215, 170, 0.5));
  border: 1px solid var(--orange-200);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--orange-600);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.advantages .bento-wide .bento-title {
  font-size: 1.5rem;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.advantages .bento-wide .bento-description {
  font-size: 1rem;
  color: var(--slate-600);
}

.advantages .bento-small {
  background: white;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.advantages .bento-small:hover {
  box-shadow: var(--shadow-xl);
}

.advantages .bento-small:hover .bento-icon-small {
  transform: scale(1.1) rotate(3deg);
}

.advantages .bento-small .bento-icon-small {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition-base);
}

.advantages .bento-small .bento-icon-orange {
  background: linear-gradient(135deg, var(--orange-100), var(--orange-200));
  color: var(--orange-600);
}

.advantages .bento-small .bento-icon-blue {
  background: linear-gradient(135deg, var(--blue-50), rgba(219, 234, 254, 0.5));
  color: var(--blue-600);
}

.advantages .bento-small .bento-title-small {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.advantages .bento-small .bento-description-small {
  font-size: 0.875rem;
  color: var(--slate-500);
}

/* ========================================
   Solutions Section
   ======================================== */
.solutions {
  padding: 1rem 0 8rem;
  background: white;
  position: relative;
  overflow: hidden;
}

.solutions::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(34, 197, 94, 0.03), transparent 50%);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

.solutions .solution-card {
  position: relative;
  height: 500px;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-xl);
  transition: var(--transition-slow);
}

@media (max-width: 768px) {
  .solutions .solution-card {
    height: 400px;
  }
}

.solutions .solution-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-8px);
}

.solutions .solution-card:hover .solution-image {
  transform: scale(1.1);
}

.solutions .solution-card:hover .solution-content {
  transform: translateY(-8px);
}

.solutions .solution-card:hover .solution-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.solutions .solution-card .solution-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

.solutions .solution-card .solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4), transparent);
}

.solutions .solution-card .solution-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  transition: var(--transition-slow);
}

.solutions .solution-card .solution-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-base);
}

.solutions .solution-card .solution-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.solutions .solution-card .solution-description {
  font-size: 1rem;
  color: var(--slate-200);
  line-height: 1.7;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
  padding: 1rem 0 8rem;
  background: linear-gradient(180deg, var(--slate-50), white);
  position: relative;
  overflow: hidden;
}

.testimonials .testimonial-carousel {
  max-width: 56rem;
  margin: 0 auto 5rem;
}

.testimonials .testimonial-card {
  background: white;
  border-radius: var(--radius-3xl);
  padding: 3rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--slate-200);
}

.testimonials .stars {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.testimonials .stars i {
  color: var(--orange-500);
  font-size: 1.25rem;
}

.testimonials .testimonial-text {
  font-size: 1.5rem;
  color: var(--slate-700);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .testimonials .testimonial-text {
    font-size: 1.125rem;
    min-height: auto;
  }
}

.testimonials .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonials .testimonial-author .author-avatar {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.testimonials .testimonial-author .author-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  text-align: left;
}

.testimonials .testimonial-author .author-location {
  font-size: 0.875rem;
  color: var(--slate-500);
  text-align: left;
}

.testimonials .carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonials .carousel-controls .carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--slate-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--slate-600);
}

.testimonials .carousel-controls .carousel-btn:hover {
  border-color: var(--orange-500);
  background: var(--orange-50);
  color: var(--orange-600);
}

.testimonials .carousel-controls .carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials .carousel-controls .carousel-dots .carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--slate-300);
  cursor: pointer;
  transition: var(--transition-base);
}

.testimonials .carousel-controls .carousel-dots .carousel-dot.active {
  width: 2rem;
  border-radius: 9999px;
  background: var(--orange-500);
}

.testimonials .carousel-controls .carousel-dots .carousel-dot:hover {
  background: var(--slate-400);
}

/* Projects Gallery */
.projects-section {
  margin-top: 5rem;
}

.projects-section .projects-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.projects-section .projects-title .projects-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.projects-section .project-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  height: 20rem;
}

@media (max-width: 768px) {
  .projects-section .project-gallery {
    grid-template-columns: repeat(2, 1fr);
    height: 12rem;
  }
}

.projects-section .project-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
}

.projects-section .project-image:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-4px);
}

.projects-section .project-image:hover img {
  transform: scale(1.1);
}

.projects-section .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Partners Section
   ======================================== */
.partners {
  padding: 4rem 0 5rem;
  background: white;
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--slate-400);
  margin-bottom: 2.5rem;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
}

.partners .marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
}

.partners .marquee-track .partner-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-300);
  white-space: nowrap;
  transition: var(--transition-base);
  cursor: default;
}

.partners .marquee-track .partner-name:hover {
  color: var(--orange-500);
}


@media (max-width: 480px) {
  .partners .marquee-track .partner-name {
    font-size: 1.5rem;
  }
}


/* ========================================
   REDESIGNED FAQ - 70% CENTERED LAYOUT
   ======================================== */

.faq {
    position: relative;
    padding: 100px 0;
    background-color: #fdfeff;
    overflow: hidden;
}

/* Background Decorations */
.faq-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
    background-size: 30px 30px; 
    mask-image: radial-gradient(circle at center, black, transparent 90%);
    opacity: 0.4;
    z-index: 1;
}

/* THE FIX: Width exactly 70% and Centered */
.faq .container-small {
    position: relative;
    z-index: 10;
    width: 70%;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Redesign */
.faq .section-header {
    margin-bottom: 4rem;
}

.faq .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #ffedd5;
    color: #ea580c;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

.faq .section-title {
    font-family: 'Syne', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.faq .text-highlight {
    color: #ea580c;
    background: none;
    -webkit-text-fill-color: initial;
}

/* FAQ List & Items */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq .accordion-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq .accordion-item.active {
    border-color: #fed7aa;
    background: #fffbf7;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.05);
}

.faq .accordion-header {
    padding: 1.5rem 1.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq .faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq .faq-icon {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq .accordion-item.active .faq-icon {
    background: #ffedd5;
    color: #ea580c;
}

.faq .toggle-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.faq .accordion-item.active .toggle-btn {
    background: #f97316;
    color: white;
    transform: rotate(45deg);
}

.faq .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq .faq-answer {
    padding: 0 1.8rem 1.8rem 77px;
    color: #475569;
    line-height: 1.7;
}

/* CTA BOX REDESIGN */
.faq-cta {
    margin-top: 5rem;
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: white !important;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.faq-cta-btn:hover {
    transform: scale(1.05);
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .faq .container-small { width: 90%; }
}

@media (max-width: 768px) {
    .faq .section-title { font-size: 2.2rem; }
    .faq .faq-answer { padding: 0 1.5rem 1.5rem 1.5rem; }
}




/* ========================================
   ENHANCED CONTACT SECTION
   ======================================== */

.contact {
    position: relative;
    padding: 100px 0;
    background-color: #f8fafc;
    overflow: hidden;
}

/* Floating Animated Orbs */
.contact-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orb-float 20s infinite alternate;
}

.contact-orb-1 {
    width: 400px;
    height: 400px;
    background: #ffedd5;
    top: -100px;
    left: -100px;
}

.contact-orb-2 {
    width: 300px;
    height: 300px;
    background: #e0f2fe;
    bottom: -50px;
    right: -50px;
}

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

.contact .container {
    position: relative;
    z-index: 10;
}

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

/* Left Content Styles */
.contact-left .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    color: #ea580c;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.contact-left .section-title {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.text-orange { color: #f97316; }

.contact-intro {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Info Cards Layout */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid #fff;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(10px);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.contact-info-icon-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.contact-info-icon-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.contact-info-icon-green { background: linear-gradient(135deg, #22c55e, #16a34a); }

.contact-info-label { display: block; font-size: 0.85rem; color: #64748b; font-weight: 600; }
.contact-info-value { font-weight: 700; color: #1e293b; font-size: 1.05rem; }

/* Trust Badge */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #0f172a;
    border-radius: 24px;
    color: #fff;
    max-width: 400px;
}

.trust-badge-icon i { font-size: 2.2rem; color: #22c55e; }
.trust-badge-title { font-weight: 700; font-size: 1.1rem; }
.trust-badge-text { font-size: 0.85rem; color: #94a3b8; }

/* Form Design - Glassmorphism */
.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.08);
}

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

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.9rem; font-weight: 700; color: #1e293b; margin-bottom: 8px; }

.form-input, .form-textarea {
    width: 100%;
    padding: 14px 20px;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    color: #1e293b;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #fed7aa;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(234, 88, 12, 0.3);
}

/* Success State */
.contact-success { text-align: center; padding: 20px 0; }
.success-icon { font-size: 4rem; color: #22c55e; margin-bottom: 15px; }

/* ========================================
   RESPONSIVE DESIGN (MOBILE PERFECT)
   ======================================== */

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-left { text-align: center; }
    .contact-left .section-title { font-size: 3rem; }
    .contact-intro { margin: 0 auto 30px; }
    .contact-info-card { text-align: left; }
    .trust-badge { margin: 0 auto; }
}

@media (max-width: 768px) {
    .contact { padding: 60px 0; }
    .contact-left .section-title { font-size: 2.5rem; letter-spacing: -1px; }
    .contact-form-card { padding: 30px 20px; }
    .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .contact-left .section-title { font-size: 2.2rem; }
    .btn-submit { font-size: 1rem; padding: 16px; }
}


/* ========================================
   FUTURISTIC FOOTER DESIGN (Mobile Optimized)
   ======================================== */

.footer {
    position: relative;
    background-color: #020617; /* Slate 950 */
    color: #e2e8f0; /* Slate 200 */
    padding: 5rem 0 2rem;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- 1. Background Effects --- */
.footer-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, transparent, black 40%);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 40%);
    pointer-events: none;
    z-index: 0;
}

.footer-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

/* --- 2. Main Layout --- */
.footer .container {
    position: relative;
    z-index: 10;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2.8fr; /* Brand gets less space, links get more */
    gap: 4rem;
    margin-bottom: 3rem;
}

/* --- 3. Brand & Newsletter --- */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ea580c, #c2410c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.footer-logo .logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.5;
    font-size: 0.95rem;
    max-width: 320px;
}

/* Newsletter Input */
.footer-newsletter .input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
}

.footer-newsletter .input-icon {
    position: absolute;
    left: 18px;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-newsletter input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 10px 10px 40px;
    width: 100%;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
}

.footer-newsletter .submit-btn {
    background: #ea580c;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.footer-newsletter .submit-btn:hover {
    background: white;
    color: #ea580c;
    transform: rotate(-45deg);
}

/* --- 4. Navigation Grid --- */
.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.footer-heading {
    font-family: 'Syne', sans-serif;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ea580c;
    transform: translateX(5px);
}

/* --- 5. Contact Section --- */
.contact-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-list .icon-box {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea580c;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-list .label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
    font-weight: 600;
}

.contact-list .value {
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.4;
    text-decoration: none;
    display: block;
}

.contact-list .address {
    font-size: 0.85rem;
    color: #cbd5e1;
}

/* Social Buttons */
.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-btn:hover {
    background: #ea580c;
    border-color: #ea580c;
    transform: translateY(-3px);
}

/* --- 6. Footer Bottom --- */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #64748b;
    font-size: 0.85rem;
}

.certifications {
    display: flex;
    gap: 8px;
}

.cert-pill {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ========================================
   MOBILE RESPONSIVENESS (Next Level)
   ======================================== */

/* Tablet Adjustments */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-brand-section {
        max-width: 600px;
    }
}

/* Mobile Adjustments (Key Changes) */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-top {
        gap: 2.5rem;
    }

    /* Brand Section Centered */
    .footer-brand-section {
        align-items: flex-start;
        text-align: left;
    }

    /* --- THE GRID FIX --- */
    /* Mobile me 2 columns, taaki sab ek line me na dikhe */
    .footer-nav-grid {
        grid-template-columns: 1fr 1fr; /* 2 Columns Layout */
        gap: 2rem 1rem;
    }

    /* Company & Resources Links Layout */
    .footer-col {
        min-width: 0; /* Prevents overflow */
    }

    /* Contact Section Layout - Full Width at bottom of grid */
    .contact-col {
        grid-column: span 2; /* Takes full width */
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 1px dashed rgba(255,255,255,0.1);
    }

    /* Contact info layout adjustment */
    .contact-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .contact-list li {
        flex: 1 1 45%; /* Side by side items */
        min-width: 250px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
        gap: 1.5rem;
    }
}

/* Small Mobile (below 480px) */
@media (max-width: 480px) {
    .footer-nav-grid {
        grid-template-columns: 1fr 1fr; /* Still keep 2 cols for links */
        gap: 2rem 1rem;
    }

    /* Contact stacked vertically on very small screens */
    .contact-list {
        flex-direction: column;
    }
    
    .contact-list li {
        width: 100%;
    }

    .footer-logo .logo-text {
        font-size: 1.4rem;
    }
}


/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========================================
   Recent Installations (Projects)
   ======================================== */
.projects-section-container {
  padding: 1rem 0;
  background: white;
  position: relative;
}

.projects-section-container .projects-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 2.5rem;
}

@media (max-width: 480px) {
  .projects-section-container .projects-title {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.projects-section-container .projects-title .projects-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--slate-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-600);
  font-size: 1.25rem;
  transition: var(--transition-base);
}

.projects-section-container .projects-title:hover .projects-icon {
  background: var(--orange-500);
  color: white;
  transform: rotate(15deg);
}

.projects-section-container .project-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  height: 18rem;
}

@media (max-width: 768px) {
  .projects-section-container .project-gallery {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
}

@media (max-width: 480px) {
  .projects-section-container .project-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.projects-section-container .project-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .projects-section-container .project-image {
    aspect-ratio: 4/3;
  }
}

.projects-section-container .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-section-container .project-image:hover {
  box-shadow: var(--shadow-xl);
}

.projects-section-container .project-image:hover img {
  transform: scale(1.1);
}

.projects-section-container .project-image:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}


/* ========================================
   Explore More Projects Button
   ======================================== */
.projects-cta-wrapper {
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
}

.btn-explore-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 10px 10px 30px; /* Left padding for text, others smaller */
    background-color: white;
    color: var(--slate-900);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid var(--slate-200);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.btn-explore-more .icon-circle {
    width: 45px;
    height: 45px;
    background-color: var(--slate-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-600);
    transition: all 0.3s ease;
    font-size: 1rem;
}

/* Hover Effects */
.btn-explore-more:hover {
    border-color: var(--orange-500);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.15);
}

.btn-explore-more:hover span {
    color: var(--orange-600);
}

.btn-explore-more:hover .icon-circle {
    background-color: var(--orange-500);
    color: white;
    transform: rotate(-45deg); /* Stylish tilt effect */
}

@media (max-width: 768px) {
    .projects-cta-wrapper {
        margin-top: 2.5rem;
        padding: 0 1rem;
    }

    .btn-explore-more {
        width: 100%; /* Full width on mobile */
        justify-content: space-between; /* Text Left, Icon Right */
        padding: 12px 12px 12px 25px;
    }
    
    .btn-explore-more .icon-circle {
        /* Keep icon slightly distinct */
        background-color: var(--orange-50); 
        color: var(--orange-600);
    }
}

/* ========================================
   Contact Form Styles
   ======================================== */
.contact-form-card {
  background: white;
  border-radius: var(--radius-3xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--slate-200);
}

@media (max-width: 480px) {
  .contact-form-card {
    padding: 1.5rem;
  }
}

.contact-form-card .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-card .form-group .form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 0.5rem;
}

.contact-form-card .form-group .form-input,
.contact-form-card .form-group .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-family: inherit;
  color: var(--slate-900);
  background-color: var(--slate-50);
  transition: var(--transition-fast);
}

.contact-form-card .form-group .form-input::placeholder,
.contact-form-card .form-group .form-textarea::placeholder {
  color: var(--slate-400);
}

.contact-form-card .form-group .form-input:focus,
.contact-form-card .form-group .form-textarea:focus {
  outline: none;
  background-color: white;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.contact-form-card .form-group .form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-card .btn i {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.contact-form-card .btn:hover i {
  transform: translateX(4px) translateY(-4px);
}

/* ========================================
   Testimonials Section (Revamped Design)
   ======================================== */
.testimonials {
  padding: 1rem 0 8rem;
  background-color: var(--slate-50);
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 20px 20px;
  position: relative;
  overflow: hidden;
  /* =========================================
  Calculator Result Styling (Add at bottom)
  ========================================= */
  /* Header inside Result Box */
  /* Grid Layout for Stats */
  /* Main Recommendation Card (Highlighted) */
  /* Footer Note */
  /* Animation */
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.testimonials .section-header .section-subtitle {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-slider-container {
  position: relative;
  padding: 1rem;
  overflow: hidden;
}

.testimonials-wrapper {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonials .testimonial-card {
  min-width: calc(33.333% - 1.35rem);
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
  overflow: hidden;
}

.testimonials .testimonial-card .card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #fbbf24, #f97316);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonials .testimonial-card .quote-watermark {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 5rem;
  color: var(--orange-100);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.15);
}

.testimonials .testimonial-card:hover .card-accent {
  opacity: 1;
}

.testimonials .testimonial-card:hover .quote-watermark {
  transform: scale(1.1) rotate(-10deg);
  color: var(--orange-200);
}

.testimonials .testimonial-card .testimonial-rating {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.testimonials .testimonial-card .testimonial-rating i {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-right: 2px;
}

.testimonials .testimonial-card .testimonial-text {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  color: var(--slate-700);
  line-height: 1.8;
  font-style: normal;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.testimonials .testimonial-card .testimonial-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--slate-200);
}

.testimonials .testimonial-card .testimonial-author .author-avatar {
  width: 3rem;
  height: 3rem;
  background: var(--slate-100);
  color: var(--orange-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.testimonials .testimonial-card .testimonial-author .author-info .author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0;
}

.testimonials .testimonial-card .testimonial-author .author-info .author-meta {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin: 0;
}

@media (max-width: 1024px) {
  .testimonials .testimonial-card {
    min-width: calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .testimonials .testimonial-card {
    min-width: 100%;
    padding: 2rem;
  }
}

.testimonials .calculator-results {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--slate-100);
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials .result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--slate-100);
}

.testimonials .badge-success {
  background: var(--green-50);
  color: var(--green-600);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.testimonials .close-result-btn {
  background: none;
  border: none;
  color: var(--slate-400);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  transition: color 0.2s;
}

.testimonials .close-result-btn:hover {
  color: var(--slate-800);
}

.testimonials .result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonials .result-card {
  background: var(--slate-50);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid transparent;
  transition: transform 0.2s;
}

.testimonials .result-card:hover {
  transform: translateY(-2px);
  border-color: var(--slate-200);
}

.testimonials .result-card.main-card {
  grid-column: span 2;
  /* Full Width */
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
}

.testimonials .res-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--slate-500);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.testimonials .res-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  font-family: "Outfit", sans-serif;
}

.testimonials .res-value.highlight {
  font-size: 1.8rem;
  color: var(--orange-600);
}

.testimonials .res-value.text-green {
  color: var(--green-600);
}

.testimonials .res-sub {
  font-size: 0.75rem;
  color: var(--orange-600);
  margin-top: 0.2rem;
  opacity: 0.8;
}

.testimonials .result-footer p {
  font-size: 0.8rem;
  color: var(--slate-400);
  text-align: center;
  margin-bottom: 0.8rem;
}

.testimonials .full-width {
  width: 100%;
  display: block;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials .slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
}

.testimonials .slider-controls .slider-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--slate-600);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials .slider-controls .slider-btn:hover {
  background: var(--orange-500);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

