/* ============================================
   GEOPOWER INDIA - PREMIUM SOLAR WEBSITE
   Modern, Mobile-First, Production-Ready
   ============================================ */


/* ============================================
   CSS VARIABLES & THEME
   ============================================ */

:root {
    /* Primary Colors */
    --primary: #F7CD0F;
    --primary-dark: #D4B00E;
    --primary-light: #FFE566;
    --primary-lighter: #FFF9DB;
    /* Secondary Colors */
    --secondary: #FFFFFF;
    --secondary-dark: #E8E8E8;
    --secondary-light: #FFFFFF;
    /* Neutral Colors */
    --dark: #333333;
    --gray-900: #2A2A2A;
    --gray-800: #3D3D3D;
    --gray-700: #555555;
    --gray-600: #757575;
    --gray-500: #9E9E9E;
    --gray-400: #BDBDBD;
    --gray-300: #E0E0E0;
    --gray-200: #EEEEEE;
    --gray-100: #F5F5F5;
    --light: #F8F9FA;
    --white: #FFFFFF;
    /* Semantic Colors */
    --success: #059669;
    --warning: #F7CD0F;
    --danger: #DC3545;
    --info: #2196F3;
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 4px 14px 0 rgba(247, 205, 15, 0.4);
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    /* Container */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1440px;
}


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

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

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

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

img:not([class*="logo"]) {
    height: revert-layer;
}

input,
button,
textarea,
select {
    font: inherit;
}

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

a:hover {
    color: var(--primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}


/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-8);
    }
}

.section {
    padding: var(--space-12) 0;
    overflow: visible;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-16) 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: var(--space-20) 0;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--space-4) * -0.5);
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 calc(var(--space-4) * 0.5);
}

.col {
    flex: 1 0 0%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
}

.col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-lg-8 {
    flex: 0 0 auto;
    width: 66.666667%;
}

.col-lg-10 {
    flex: 0 0 auto;
    width: 83.333333%;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-md-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }
}

@media (min-width: 1024px) {
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }
}


/* ============================================
   GRID SYSTEM
   ============================================ */

.grid {
    display: grid;
    gap: var(--space-6);
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}


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

.text-xs {
    font-size: var(--text-xs);
}

.text-sm {
    font-size: var(--text-sm);
}

.text-base {
    font-size: var(--text-base);
}

.text-lg {
    font-size: var(--text-lg);
}

.text-xl {
    font-size: var(--text-xl);
}

.text-2xl {
    font-size: var(--text-2xl);
}

.text-3xl {
    font-size: var(--text-3xl);
}

.text-4xl {
    font-size: var(--text-4xl);
}

.text-5xl {
    font-size: var(--text-5xl);
}

.text-6xl {
    font-size: var(--text-6xl);
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

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

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

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

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-muted {
    color: var(--gray-600);
}

.text-white {
    color: var(--white);
}

.text-dark {
    color: var(--dark);
}

.leading-tight {
    line-height: 1.25;
}

.leading-normal {
    line-height: 1.5;
}


/* ============================================
   SPACING UTILITIES
   ============================================ */

.m-auto {
    margin: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-6 {
    margin-top: var(--space-6);
}

.mt-8 {
    margin-top: var(--space-8);
}

.mb-2 {
    margin-bottom: var(--space-2);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-6 {
    margin-bottom: var(--space-6);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.my-4 {
    margin-top: var(--space-4);
    margin-bottom: var(--space-4);
}

.py-2 {
    padding-top: var(--space-2);
    padding-bottom: var(--space-2);
}

.py-4 {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.py-8 {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
}

.py-12 {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
}

.py-16 {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

.px-4 {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.px-6 {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.gap-2 {
    gap: var(--space-2);
}

.gap-3 {
    gap: var(--space-3);
}

.gap-4 {
    gap: var(--space-4);
}

.gap-6 {
    gap: var(--space-6);
}

.gap-8 {
    gap: var(--space-8);
}


/* ============================================
   FLEXBOX UTILITIES
   ============================================ */

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    border-radius: var(--radius-xl);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(10, 143, 60, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-success:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-warning {
    background: var(--secondary);
    color: #333333;
}

.btn-warning:hover {
    background: var(--secondary-dark);
    color: #333333;
}


/* ============================================
   CARDS
   ============================================ */

.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-body {
    padding: var(--space-6);
}

@media (min-width: 768px) {
    .card-body {
        padding: var(--space-8);
    }
}

.card-shadow {
    box-shadow: var(--shadow-lg);
}

.card-shadow:hover {
    box-shadow: var(--shadow-2xl);
}


/* ============================================
   GLASSMORPHISM CARDS
   ============================================ */

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}


/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: auto;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) 0;
    max-width: 1280px;
    margin: 0 auto;
}

.navbar-brand img {
    height: 45px;
    padding-left: 10px;
}

.navbar-nav {
    display: none;
    list-style: none;
    align-items: center;
    gap: var(--space-2);
}

@media (min-width: 1024px) {
    .navbar-nav {
        display: flex;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    color: var(--gray-700);
    font-weight: 500;
    font-size: var(--text-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-lighter);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}


/* Mobile Menu Toggle */

.navbar-toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

@media (min-width: 1024px) {
    .navbar-toggler {
        display: none;
    }
}

.toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.navbar-toggler.active .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .toggler-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* Mobile Menu Drawer */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: var(--z-fixed);
    transition: right var(--transition-base);
    box-shadow: var(--shadow-2xl);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-header a {
    display: flex;
    align-items: center;
}

.mobile-menu-header img {
    height: 35px !important;
    width: auto;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: var(--text-xl);
    color: var(--gray-600);
}

.mobile-menu-body {
    padding: var(--space-6);
}

.mobile-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mobile-nav-link {
    display: block;
    padding: var(--space-3) var(--space-4);
    color: var(--gray-700);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    background: var(--primary-lighter);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-fixed) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


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

.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #B8940C 100%);
    overflow: visible;
    padding: 120px 0 80px;
    min-height: 100vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-6);
}

.hero-title .highlight {
    color: var(--secondary);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-10);
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--space-2);
}


/* Floating Elements */

.hero-float-card {
    position: absolute;
    right: 0;
    bottom: 20%;
    display: none;
}

@media (min-width: 1024px) {
    .hero-float-card {
        display: block;
    }
}


/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 500;
}


/* ============================================
   SECTION HEADINGS
   ============================================ */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    line-height: 1.6;
}


/* ============================================
   SERVICE CARDS
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

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

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-lighter), #FFF9DB);
    border-radius: var(--radius-xl);
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: var(--space-6);
}

.service-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-3);
}

.service-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-6);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    color: var(--gray-700);
    font-size: var(--text-sm);
}

.service-features li i {
    color: #1A1A1A;
}


/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.why-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-full);
    font-size: var(--text-2xl);
    color: var(--white);
    margin: 0 auto var(--space-6);
    box-shadow: 0 8px 25px rgba(247, 205, 15, 0.3);
}

.why-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-3);
}

.why-description {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.6;
}


/* ============================================
   OVERVIEW SECTION
   ============================================ */

.overview-section {
    overflow: visible;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }
}

.overview-image {
    order: 1;
}

@media (min-width: 1024px) {
    .overview-image {
        order: 0;
    }
}

.overview-image-wrapper {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.overview-image-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .overview-image-wrapper img {
        height: 400px;
    }
}

.overview-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: var(--space-8) var(--space-6);
}

.overlay-content {
    display: flex;
    flex-direction: column;
}

.overlay-number {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.overlay-text {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    margin-top: var(--space-1);
}

.overview-content {
    order: 2;
}

@media (min-width: 1024px) {
    .overview-content {
        order: 0;
    }
}

.section-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(247, 205, 15, 0.1);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section-heading {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
    .section-heading {
        font-size: var(--text-3xl);
    }
}

.overview-text {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-5);
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

@media (min-width: 480px) {
    .overview-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: var(--text-xl);
    color: var(--white);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.stat-suffix {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin: 0;
    white-space: nowrap;
}


/* ============================================
   DIRECTOR SECTION
   ============================================ */

.director-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.director-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-2xl);
    padding: var(--space-8);
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .director-card {
        grid-template-columns: 280px 1fr;
        padding: var(--space-10);
    }
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary));
}

.director-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.director-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: 0 15px 40px rgba(247, 205, 15, 0.3);
}

.director-avatar {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(247, 205, 15, 0.3);
    position: relative;
    overflow: hidden;
}

.director-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.director-avatar i {
    font-size: 5rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.director-badge {
    position: absolute;
    bottom: -10px;
    right: calc(50% - 120px);
    width: 60px;
    height: 60px;
    background: var(--dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    color: var(--primary);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .director-badge {
        right: -15px;
        bottom: 20px;
    }
}

.director-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.director-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(247, 205, 15, 0.1);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    width: fit-content;
}

.director-name {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.director-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0;
}

.director-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-full);
    margin: var(--space-6) 0;
}

.director-bio {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.director-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark);
    transition: all var(--transition-base);
}

.credential-item:hover {
    background: rgba(247, 205, 15, 0.15);
    transform: translateY(-2px);
}

.credential-item i {
    color: var(--primary);
    font-size: var(--text-base);
}

.director-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.director-actions .btn {
    padding: var(--space-4) var(--space-6);
}


/* ============================================
   SERVICE BLOCKS
   ============================================ */

.service-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .service-block {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }
}

.service-block-reverse {
    direction: rtl;
}

@media (min-width: 1024px) {
    .service-block-reverse {
        direction: ltr;
    }
}

.service-block-image {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.service-block-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .service-block-image img {
        height: 350px;
    }
}

@media (min-width: 1024px) {
    .service-block-image img {
        height: 400px;
    }
}

.service-block-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    background: var(--primary);
    color: var(--dark);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    box-shadow: var(--shadow-lg);
}

.service-block-content {
    padding: var(--space-2) 0;
}

@media (min-width: 1024px) {
    .service-block-content {
        padding: var(--space-4);
    }
}

.service-block-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .service-block-title {
        font-size: var(--text-3xl);
    }
}

.service-block-description {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.service-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

@media (min-width: 480px) {
    .service-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: var(--text-lg);
    color: var(--white);
}

.benefit-text h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.benefit-text p {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.service-features li i {
    color: var(--primary);
    font-size: var(--text-base);
    flex-shrink: 0;
}


/* ============================================
   ADDITIONAL SERVICES
   ============================================ */

.additional-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .additional-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.additional-service-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.additional-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.additional-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    box-shadow: 0 8px 25px rgba(247, 205, 15, 0.3);
}

.additional-service-icon i {
    font-size: var(--text-2xl);
    color: var(--white);
}

.additional-service-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-4);
}

.additional-service-description {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-5);
    flex-grow: 1;
}

.additional-service-price {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-200);
}


/* ============================================
   BRANDS GRID
   ============================================ */

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brand-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.brand-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.brand-icon i {
    font-size: var(--text-xl);
    color: var(--white);
}

.brand-name {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-1);
}

.brand-category {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin: 0;
}


/* ============================================
   CALCULATOR PAGE
   ============================================ */

.calculator-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: start;
}

@media (min-width: 1024px) {
    .calculator-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
    }
}

.calculator-card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .calculator-card {
        padding: var(--space-8);
    }
}

.calculator-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.calculator-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    box-shadow: 0 10px 30px rgba(247, 205, 15, 0.3);
}

.calculator-icon i {
    font-size: var(--text-3xl);
    color: var(--dark);
}

.calculator-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

@media (min-width: 768px) {
    .calculator-title {
        font-size: var(--text-2xl);
    }
}

.calculator-subtitle {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: 0;
}

.calc-form-group {
    margin-bottom: var(--space-6);
}

.calc-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-3);
}

.calc-value-display {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--space-4);
}

.calc-slider {
    width: 100%;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--gray-200);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(247, 205, 15, 0.4);
    transition: all var(--transition-base);
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.calc-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(247, 205, 15, 0.4);
}

.calc-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin-top: var(--space-2);
}

.calc-select {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--text-base);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    transition: all var(--transition-base);
}

.calc-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(247, 205, 15, 0.1);
}


/* Results Card */
.results-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
}

.results-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.results-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.results-icon i {
    font-size: var(--text-2xl);
    color: var(--primary);
}

.results-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

@media (min-width: 768px) {
    .results-title {
        font-size: var(--text-2xl);
    }
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.result-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.result-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-2);
}

.result-icon i {
    font-size: var(--text-base);
    color: var(--white);
}

.result-value {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.result-label {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin-top: var(--space-1);
}

.total-savings-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    text-align: center;
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-lg);
}

.total-savings-value {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

@media (min-width: 768px) {
    .total-savings-value {
        font-size: var(--text-4xl);
    }
}

.total-savings-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.roi-indicator {
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    text-align: center;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-6);
}

.results-actions .btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: none;
}

.results-actions .btn-secondary:hover {
    background: var(--gray-100);
}

.results-actions .btn-outline-primary {
    border-color: var(--dark);
    color: var(--dark);
}

.results-actions .btn-outline-primary:hover {
    background: var(--dark);
    color: var(--white);
}


/* Placeholder Card */
.placeholder-card {
    text-align: center;
    padding: var(--space-10) var(--space-6);
}

.placeholder-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    opacity: 0.8;
}

.placeholder-icon i {
    font-size: var(--text-4xl);
    color: var(--dark);
}

.placeholder-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.placeholder-text {
    font-size: var(--text-base);
    color: var(--gray-500);
    margin-bottom: var(--space-8);
}

.placeholder-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

@media (min-width: 480px) {
    .placeholder-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.placeholder-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.placeholder-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-feature-icon i {
    font-size: var(--text-xl);
    color: var(--dark);
}

.placeholder-feature span {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark);
}


/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
}

.step-number {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gray-300);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    box-shadow: 0 8px 25px rgba(247, 205, 15, 0.3);
}

.step-icon i {
    font-size: var(--text-2xl);
    color: var(--dark);
}

.step-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.step-description {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}


/* Cost Layout */
.cost-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 1024px) {
    .cost-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

.cost-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.cost-card-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--gray-100);
}

.cost-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.cost-item:hover {
    background: rgba(247, 205, 15, 0.1);
    transform: translateX(5px);
}

.cost-label {
    font-size: var(--text-base);
    color: var(--gray-700);
}

.cost-value {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--primary);
}

.includes-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-3) var(--space-4);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.includes-list li:hover {
    background: rgba(247, 205, 15, 0.1);
    transform: translateX(5px);
}

.includes-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.includes-icon i {
    font-size: var(--text-base);
    color: var(--dark);
}

.includes-list span {
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.subsidy-banner {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-xl);
}

.subsidy-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.subsidy-icon i {
    font-size: var(--text-xl);
    color: var(--primary);
}

.subsidy-content {
    font-size: var(--text-sm);
    color: var(--dark);
    line-height: 1.5;
}


/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    background: var(--gray-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-4);
    right: var(--space-6);
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary-lighter);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.testimonial-stars i {
    color: var(--secondary);
    font-size: var(--text-lg);
}

.testimonial-text {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    font-size: var(--text-sm);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 600;
    font-size: var(--text-lg);
}

.author-info h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-1);
}

.author-info span {
    font-size: var(--text-sm);
    color: var(--gray-500);
}


/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-5) var(--space-6);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--dark);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.faq-question.active .faq-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer.show {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 var(--space-6) var(--space-6);
    color: var(--gray-600);
    line-height: 1.7;
}


/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-16) 0;
}

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

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.cta-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}


/* ============================================
   PROJECTS GALLERY
   ============================================ */

.projects-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
    padding: var(--space-2);
}

.filter-btn {
    padding: var(--space-2) var(--space-4);
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-full);
    color: var(--gray-600);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: var(--text-sm);
    white-space: nowrap;
}

@media (max-width: 767px) {
    .projects-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .projects-filter::-webkit-scrollbar {
        display: none;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-6);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.project-card:hover .project-overlay,
.project-card:focus .project-overlay {
    opacity: 1;
}

@media (max-width: 767px) {
    .project-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    }
    
    .project-card {
        aspect-ratio: 16/10;
    }
    
    .project-info h4 {
        font-size: var(--text-base);
    }
    
    .project-info p {
        font-size: var(--text-sm);
    }
}

.project-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    padding: var(--space-1) var(--space-3);
    background: var(--primary);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.project-info h4 {
    color: var(--white);
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.project-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
}

.project-stats {
    display: flex;
    gap: var(--space-4);
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
    .project-stats {
        gap: var(--space-3);
        font-size: 0.65rem;
    }
}


/* ============================================
   CALCULATOR
   ============================================ */

.calculator-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
}

.calculator-input-group {
    margin-bottom: var(--space-6);
}

.calculator-label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-3);
}

.calculator-value {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin: var(--space-4) 0;
}

.calculator-slider {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.calculator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.calculator-select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.calculator-select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 143, 60, 0.1);
}

.calculator-results {
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
}

.result-item {
    text-align: center;
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
}

.result-value {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary);
}

.result-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
}


/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-lighter);
    border-radius: var(--radius-lg);
    color: #333333;
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.contact-content h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-1);
}

.contact-content p {
    color: var(--gray-600);
    font-size: var(--text-sm);
    margin: 0;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
}

.form-control {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    color: var(--dark);
    background: var(--white);
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 143, 60, 0.1);
}

.form-control::placeholder {
    color: var(--gray-500);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
}


/* ============================================
   MAP
   ============================================ */

.map-container {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}


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

.footer {
    background: var(--primary);
    color: var(--dark);
}

.footer-top {
    padding: var(--space-16) 0;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
}

@media (min-width: 768px) {
    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--space-4);
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-description {
    color: var(--dark);
    line-height: 1.7;
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: var(--text-lg);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-links-section,
.footer-contact-section {
    min-width: 150px;
}

.footer-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-6);
    color: var(--white);
    position: relative;
    padding-bottom: var(--space-3);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: var(--dark);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    opacity: 0.9;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: var(--text-sm);
    opacity: 0.7;
}

.footer-links a:hover {
    color: var(--white);
    opacity: 1;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    align-items: flex-start;
}

.contact-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-size: var(--text-base);
}

.footer-contact strong {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-1);
    color: var(--white);
}

.footer-contact p {
    color: var(--dark);
    font-size: var(--text-sm);
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

.footer-contact a {
    color: var(--dark);
    opacity: 0.9;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    background: var(--primary-dark);
    padding: var(--space-6) 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-certifications {
        justify-content: flex-start;
    }
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 500;
}

.cert-badge i {
    color: var(--white);
}

.footer-copyright {
    color: var(--white);
    font-size: var(--text-sm);
    opacity: 0.9;
}

.footer-copyright p {
    margin: 0;
}


/* ============================================
   FLOATING BUTTONS
   ============================================ */

.floating-buttons {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    z-index: var(--z-fixed);
}

.floating-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: var(--text-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    color: var(--white);
}

.call-btn {
    background: var(--primary);
    color: var(--white);
}

.call-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}


/* ============================================
   MODAL / POPUP
   ============================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: var(--z-modal-backdrop);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    max-width: 500px;
    width: 90%;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
}

.modal-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--dark);
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: var(--text-lg);
    color: var(--gray-600);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--gray-200);
}


/* ============================================
   PAGE HEADERS
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: var(--space-20) 0 var(--space-12);
    margin-top: 76px;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
    position: relative;
}

.page-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}


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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease forwards;
}

.animate-bounce {
    animation: bounce 2s ease infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}


/* Scroll Animations */

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="left"] {
    transform: translateX(-30px);
}

[data-animate="left"].visible {
    transform: translateX(0);
}

[data-animate="right"] {
    transform: translateX(30px);
}

[data-animate="right"].visible {
    transform: translateX(0);
}

[data-animate="scale"] {
    transform: scale(0.9);
}

[data-animate="scale"].visible {
    transform: scale(1);
}


/* ============================================
   COUNTER ANIMATION
   ============================================ */

.counter {
    display: inline-block;
}


/* ============================================
   BACKGROUND UTILITIES
   ============================================ */

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

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

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

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

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

.bg-gray-100 {
    background-color: var(--gray-100);
}


/* ============================================
   DISPLAY UTILITIES
   ============================================ */

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

@media (min-width: 768px) {
    .md\:hidden {
        display: none;
    }
    .md\:block {
        display: block;
    }
    .md\:flex {
        display: flex;
    }
    .md\:grid {
        display: grid;
    }
}

@media (min-width: 1024px) {
    .lg\:hidden {
        display: none;
    }
    .lg\:block {
        display: block;
    }
    .lg\:flex {
        display: flex;
    }
}


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

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    inset: 0;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.object-cover {
    object-fit: cover;
}

.object-center {
    object-position: center;
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.rounded-2xl {
    border-radius: var(--radius-2xl);
}

.rounded-full {
    border-radius: var(--radius-full);
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

.transition {
    transition: all var(--transition-base);
}


/* ============================================
   RESPONSIVE HELPERS
   ============================================ */

@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hide-tablet {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .hide-desktop {
        display: none !important;
    }
}


/* ============================================
   PRELOADER
   ============================================ */

.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

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

body {
    overflow-y: auto;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}


/* Firefox scrollbar */

* {
    scrollbar-width: thin;
    scrollbar-color: var(--gray-400) var(--gray-100);
}


/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .header,
    .footer,
    .floating-buttons,
    .modal-overlay {
        display: none !important;
    }
    .hero-section {
        min-height: auto;
        padding: var(--space-8) 0;
    }
}


/* ============================================
   SPECIAL COMPONENTS
   ============================================ */


/* Partner Logos */

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
    padding: var(--space-8) 0;
}

.partner-logo {
    height: 50px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all var(--transition-base);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}


/* Process Steps */

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: var(--text-xl);
    font-weight: 700;
    margin: 0 auto var(--space-4);
    box-shadow: var(--shadow-lg);
}

.step-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.step-description {
    font-size: var(--text-sm);
    color: var(--gray-600);
}


/* Pricing Cards */

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: scale(1.05);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-1) var(--space-4);
    background: var(--secondary);
    color: var(--dark);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.pricing-title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.pricing-price {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.pricing-price span {
    font-size: var(--text-base);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: var(--space-6) 0;
    text-align: left;
}

.pricing-features li {
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255, 255, 255, 0.2);
}


/* Toast Notifications */

.toast-container {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: var(--z-tooltip);
}

.toast {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    animation: slideInRight 0.3s ease;
}

.toast-header {
    padding: var(--space-4);
    background: var(--primary);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toast-body {
    padding: var(--space-4);
}


/* Alert Messages */

.alert {
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
}

.alert-success {
    background: var(--primary-lighter);
    color: #333333;
    border: 1px solid var(--primary);
}

.alert-info {
    background: #E3F2FD;
    color: var(--info);
    border: 1px solid var(--info);
}

.alert-warning {
    background: var(--primary-lighter);
    color: var(--primary-dark);
    border: 1px solid var(--primary);
}


/* Breadcrumb */

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    list-style: none;
    margin-top: var(--space-6);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item.active {
    color: var(--white);
}


/* Loading Skeleton */

.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}


/* Empty State */

.empty-state {
    text-align: center;
    padding: var(--space-16);
}

.empty-state-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-6);
    font-size: var(--text-4xl);
    color: var(--gray-400);
}

.empty-state h3 {
    font-size: var(--text-xl);
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.empty-state p {
    color: var(--gray-600);
}