/* =================================================================
   NASOTTE SDR TRANS - Main Stylesheet
   Version: 2.0
   Author: Claude Code
   Description: Professional, modular CSS for transport company website
   ================================================================= */

/* =================================================================
   TABLE OF CONTENTS
   =================================================================
   1. CSS Variables & Theme
   2. Reset & Base Styles
   3. Typography
   4. Layout & Container
   5. Floating Logo & Header
   6. Buttons
   7. Hero Section
   8. Features Section
   9. Services Section
   10. Fleet Section
   11. Destinations Section
   12. Contact Section
   13. Footer
   14. Floating Elements (WhatsApp, Scroll to Top)
   15. Animations
   16. Responsive Design
   ================================================================= */


/* =================================================================
   1. CSS VARIABLES & THEME
   ================================================================= */
:root {
    /* Colors - Primary Palette (Professional Blue Theme) */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --secondary-dark: #475569;
    --secondary-light: #94a3b8;
    --accent-color: #2563eb;

    /* Gradients - Modern UI */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-hero: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(29, 78, 216, 0.98) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    --gradient-accent: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);

    /* Light Theme Colors */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-section: #f9fafb;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --header-bg: #ffffff;
    --nav-text: #475569;
    --nav-hover: #2563eb;

    /* Colors - Status */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;

    /* Shadows - Modern Depth */
    --shadow-sm: 0 1px 2px 0 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-colored-blue: 0 10px 40px rgba(37, 99, 235, 0.2);
    --shadow-colored-blue-hover: 0 20px 60px rgba(37, 99, 235, 0.3);
    --shadow-colored-slate: 0 10px 40px rgba(100, 116, 139, 0.15);
    --shadow-colored-slate-hover: 0 20px 60px rgba(100, 116, 139, 0.2);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 5rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;

    /* Z-index layers */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* Dark Theme */
[data-theme="dark"] {
    /* Dark Theme Colors */
    --text-dark: #f1f5f9;
    --text-light: #cbd5e1;
    --text-lighter: #94a3b8;
    --bg-light: #0f172a;
    --bg-white: #1e293b;
    --bg-section: #0f172a;
    --border-color: #334155;
    --card-bg: #1e293b;
    --header-bg: #1e293b;
    --nav-text: #cbd5e1;
    --nav-hover: #3b82f6;

    /* Adjusted gradients for dark mode */
    --gradient-card: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);

    /* Enhanced shadows for dark mode - more visible */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.6), 0 2px 4px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7), 0 4px 6px -2px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8), 0 10px 10px -5px rgba(0, 0, 0, 0.6);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
}


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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

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

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

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

ul, ol {
    list-style: none;
}


/* =================================================================
   3. TYPOGRAPHY
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

h1 { font-size: var(--font-size-5xl); font-weight: 800; }
h2 { font-size: var(--font-size-4xl); font-weight: 800; }
h3 { font-size: var(--font-size-3xl); font-weight: 700; }
h4 { font-size: var(--font-size-2xl); font-weight: 700; }
h5 { font-size: var(--font-size-xl); font-weight: 600; }
h6 { font-size: var(--font-size-lg); font-weight: 600; }

p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.75;
    font-weight: 400;
}


/* =================================================================
   4. LAYOUT & CONTAINER
   ================================================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 640px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* Section Spacing */
section {
    padding: var(--spacing-3xl) 0;
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-2xl) 0;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: var(--spacing-md) auto 0;
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

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

    .section-subtitle {
        font-size: 1rem;
    }
}


/* =================================================================
   5. FLOATING LOGO & HEADER
   ================================================================= */

/* Floating Logo */
.floating-logo {
    position: fixed;
    top: 20px;
    left: 40px;
    z-index: 1001;
}

.logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--bg-white);
    border: none;
    box-shadow:
        0 4px 20px rgba(37, 99, 235, 0.25),
        0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.logo-circle:hover {
    transform: translateY(-3px);
    box-shadow:
        0 6px 30px rgba(37, 99, 235, 0.35),
        0 4px 15px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .logo-circle {
    background: #ffffff;
    box-shadow:
        0 4px 20px rgba(37, 99, 235, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.8);
}

[data-theme="dark"] .logo-circle:hover {
    box-shadow:
        0 6px 30px rgba(37, 99, 235, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.9);
}

.logo-circle .logo-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
}

.logo-circle .logo-text {
    font-family: var(--font-family-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: #2563eb;
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--header-bg);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

[data-theme="dark"] .header {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Left Spacer (for floating logo) */
.header-spacer {
    width: 180px;
    flex-shrink: 0;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    display: block;
    color: var(--nav-text);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.75rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--nav-hover);
    background: rgba(37, 99, 235, 0.04);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
}

.header-phone i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.header-phone:hover {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Social Icons */
.header-social {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.25rem 0.75rem;
    background: rgba(100, 116, 139, 0.04);
    border-radius: 50px;
}

.header-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.header-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #2563eb;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-social a i {
    position: relative;
    z-index: 1;
}

.header-social a:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.1);
}

.header-social a:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow:
        0 4px 15px rgba(37, 99, 235, 0.35),
        0 2px 8px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    text-transform: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-cta span,
.btn-cta i {
    position: relative;
    z-index: 1;
}

.btn-cta span {
    font-weight: 700;
}

.btn-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 6px 20px rgba(37, 99, 235, 0.45),
        0 4px 12px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-cta:hover::before {
    opacity: 1;
}

.btn-cta:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.btn-cta:active {
    transform: translateY(-2px) scale(1.01);
}

.btn-cta i {
    font-size: 0.75rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta:hover i {
    transform: translateX(3px);
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1) rotate(15deg);
}

.theme-toggle i {
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    color: var(--text-light);
}

.theme-toggle:hover i {
    color: #ffffff;
}

.theme-toggle .fa-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-toggle .fa-sun {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

[data-theme="dark"] .theme-toggle .fa-moon {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

[data-theme="dark"] .theme-toggle .fa-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 10000;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

[data-theme="dark"] .scroll-progress-bar {
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary-color) 100%);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .header-phone span {
        display: none;
    }

    .nav-link {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 968px) {
    /* Floating Logo - Mobile */
    .floating-logo {
        top: 15px;
        left: 15px;
    }

    .logo-circle {
        width: 85px;
        height: 85px;
        border: none;
    }

    .logo-circle .logo-img {
        width: 85px;
        height: 85px;
    }

    /* Header - Mobile */
    .header-content {
        height: 70px;
    }

    .header-spacer {
        width: 110px;
    }

    /* Hide navigation on mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--header-bg);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1.25rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link::after {
        display: none;
    }

    /* Hide social icons on mobile */
    .header-social {
        display: none;
    }

    /* Show mobile toggle */
    .mobile-menu-toggle {
        display: block;
    }

    /* Adjust CTA button */
    .btn-cta span {
        display: none;
    }

    .btn-cta {
        width: 44px;
        height: 44px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

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

@media (max-width: 640px) {
    .floating-logo {
        top: 35px;
        left: 10px;
    }

    .logo-circle {
        width: 70px;
        height: 70px;
        border: none;
    }

    .logo-circle .logo-img {
        width: 70px;
        height: 70px;
    }

    .header-content {
        justify-content: center;
        position: relative;
    }

    .header-spacer {
        position: absolute;
        left: 0;
        width: 90px;
    }

    .header-right {
        gap: 0.75rem;
        justify-content: center;
    }

    .header-phone {
        display: none;
    }

    .mobile-menu-toggle {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* =================================================================
   6. BUTTONS
   ================================================================= */
/* Primary Button - Navigation */
.btn-primary-nav {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: var(--font-size-sm);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.btn-primary-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Large Primary Button */
.btn-primary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 1rem 2.25rem;
    border-radius: 12px;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 1.0625rem;
    text-transform: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    border: none;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn-primary-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary-large span,
.btn-primary-large i {
    position: relative;
    z-index: 1;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
}

.btn-primary-large:hover::before {
    opacity: 1;
}

/* Large Secondary Button */
.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 1rem 2.25rem;
    border-radius: 12px;
    font-family: var(--font-family-heading);
    font-weight: 600;
    font-size: 1.0625rem;
    text-transform: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.01em;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

/* Submit Button - WhatsApp Style */
.btn-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: #25d366;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-size: var(--font-size-lg);
    font-weight: 700;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.btn-submit:hover:not(:disabled) {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-submit i {
    font-size: 1.25rem;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}


/* =================================================================
   7. HERO SECTION
   ================================================================= */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
    padding: 3rem 2rem;
}

/* Hero Background Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Fallback pentru când imaginile nu sunt încărcate */
.hero-bg-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1e293b;
    opacity: 0;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hero Title - Sub Header */
.hero-title {
    position: absolute;
    top: 31px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: #ffffff;
    width: 100%;
    max-width: 900px;
    padding: 0 2rem;
    font-family: var(--font-family-heading);
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
    text-transform: none;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Hero Description - Sub Title */
.hero-description {
    position: absolute;
    top: 165px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: #ffffff;
    width: 100%;
    max-width: 600px;
    padding: 0 2rem;
    font-size: 1.15rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.65;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Hero CTA - Independent */
.hero-cta {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 0 2rem;
}

/* Hero Trust - Independent */
.hero-trust {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-badge {
    display: none;
}

.hero-badge i {
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.hero-trust {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.trust-item span {
    color: #ffffff;
}

.trust-icon {
    font-size: 1.25rem;
    color: #10b981;
}

/* Light theme adjustments for hero section */
[data-theme="light"] .hero-title {
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .hero-description {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    opacity: 0.95;
}

[data-theme="light"] .trust-item,
[data-theme="light"] .trust-item span {
    color: #ffffff;
}

[data-theme="light"] .hero-trust {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 968px) {
    .hero {
        min-height: 80vh;
        padding: 0;
        text-align: center;
    }

    .hero-bg-slide {
        background-size: cover;
        background-position: center 30%;
    }

    .hero-title {
        top: 100px;
        font-size: 2.5rem;
        padding: 0 1.5rem;
    }

    .hero-description {
        top: 200px;
        font-size: 1.125rem;
        padding: 0 1.5rem;
    }

    .hero-cta {
        bottom: 80px;
        padding: 0 1.5rem;
    }

    .hero-trust {
        bottom: 15px;
        padding: 0 1.5rem;
        gap: 2rem;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 0;
        text-align: center;
        min-height: 100vh;
    }

    .hero-bg-slide {
        background-size: contain;
        background-position: center 35%;
        background-repeat: no-repeat;
        background-color: #0a0a0a;
    }

    .hero-overlay {
        background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.3) 25%,
            transparent 40%,
            transparent 60%,
            rgba(0, 0, 0, 0.3) 75%,
            rgba(0, 0, 0, 0.85) 100%
        );
    }

    .hero-title {
        top: 55px;
        font-size: 1.5rem;
        line-height: 1.25;
        padding: 0 1.25rem;
        max-width: none;
    }

    .hero-description {
        top: 130px;
        font-size: 0.875rem;
        line-height: 1.5;
        padding: 0 1.25rem;
        max-width: none;
        opacity: 0.95;
    }

    .hero-cta {
        bottom: 150px;
        padding: 0 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta .btn-primary-large,
    .hero-cta .btn-secondary-large {
        width: 100%;
        max-width: none;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-trust {
        bottom: 40px;
        padding: 1rem;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.875rem;
        justify-content: center;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        margin: 0 1rem;
        width: calc(100% - 2rem);
        left: 0;
        transform: none;
    }

    .trust-item {
        font-size: 0.75rem;
        gap: 0.375rem;
        flex: 0 0 auto;
    }

    .trust-icon {
        font-size: 1rem;
    }
}


/* =================================================================
   8. FEATURES SECTION
   ================================================================= */
.features {
    background: var(--bg-section);
    position: relative;
    padding: 4rem 0;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg, rgba(100, 116, 139, 0.03) 0px, transparent 1px, transparent 60px, rgba(100, 116, 139, 0.03) 61px),
        repeating-linear-gradient(0deg, rgba(100, 116, 139, 0.03) 0px, transparent 1px, transparent 60px, rgba(100, 116, 139, 0.03) 61px);
    pointer-events: none;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--card-bg);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #64748b 0%, #475569 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(100, 116, 139, 0.3);
}

.feature-icon {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

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

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

    .features {
        text-align: center;
    }

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

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

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

    .features {
        text-align: center;
    }

    .feature-card {
        padding: var(--spacing-lg);
        text-align: center;
    }
}


/* =================================================================
   9. SERVICES SECTION
   ================================================================= */
.services {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-section) 100%);
    position: relative;
    padding: 4rem 0;
}

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

.service-card {
    background: var(--card-bg);
    color: var(--text-dark);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    background: var(--primary-color);
}

.service-card:hover .service-icon-wrapper i {
    color: #ffffff;
}

.service-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.08;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    line-height: 1;
    font-family: var(--font-family-heading);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.service-card h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.65;
    font-size: 0.9375rem;
}

.service-list {
    list-style: none;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
}

.service-list li i {
    color: var(--primary-color);
    font-size: 0.875rem;
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .services {
        padding: 3rem 0;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.75rem;
        text-align: center;
        align-items: center;
    }

    .service-icon-wrapper {
        margin: 0 auto;
    }

    .service-card h4 {
        text-align: center;
    }

    .service-card p {
        text-align: center;
    }

    .service-list {
        text-align: left;
        display: inline-block;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .services {
        padding: 2.5rem 0;
        text-align: center;
    }

    .service-card {
        padding: 1.75rem 1.5rem;
        text-align: center;
        align-items: center;
    }

    .service-number {
        font-size: 2.5rem;
        top: 1rem;
        right: 1rem;
    }

    .service-icon-wrapper {
        width: 56px;
        height: 56px;
        margin: 0 auto;
    }

    .service-icon {
        font-size: 1.75rem;
    }

    .service-card h4 {
        font-size: 1.25rem;
        text-align: center;
    }

    .service-card p {
        text-align: center;
    }

    .service-list {
        text-align: left;
        display: inline-block;
        margin: 0 auto;
    }
}


/* =================================================================
   10. FLEET SECTION
   ================================================================= */
.fleet {
    background: var(--bg-section);
    position: relative;
    padding: 4rem 0;
}

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

.fleet-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.fleet-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.fleet-card:hover::before {
    opacity: 1;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.2);
}

.fleet-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (max-width: 968px) {
    .fleet {
        text-align: center;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .fleet {
        padding: 3rem 0;
        text-align: center;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


/* =================================================================
   11. DESTINATIONS SECTION
   ================================================================= */
.destinations {
    background: var(--bg-white);
    position: relative;
    padding: 3rem 0;
}

.destinations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.destination-card {
    background: var(--card-bg);
    padding: 1rem 1.75rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.destination-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.destination-card:hover::before {
    opacity: 1;
}

.country-flag,
.country-name {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.country-flag {
    font-size: 1.75rem;
    line-height: 1;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.country-name {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}

.destination-card:hover .country-flag {
    filter: grayscale(0);
    transform: scale(1.15);
}

.destination-card:hover .country-name {
    color: var(--bg-white);
}

.destinations-note {
    text-align: center;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    color: var(--text-dark);
    border-radius: 16px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 2px solid #bfdbfe;
    max-width: 700px;
    margin: 0 auto;
}

[data-theme="dark"] .destinations-note {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(29, 78, 216, 0.15) 100%);
    border-color: rgba(37, 99, 235, 0.3);
}

.destinations-note i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.destinations-note p {
    margin: 0;
    color: var(--text-dark);
}

.destinations-note a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.destinations-note a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

[data-theme="dark"] .destinations-note a:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
}

@media (max-width: 640px) {
    .destinations {
        text-align: center;
    }

    .destinations-grid {
        gap: 0.75rem;
    }

    .destination-card {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .country-flag {
        font-size: 1.5rem;
    }

    .destinations-note {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 0.875rem;
    }
}


/* =================================================================
   12. CONTACT SECTION
   ================================================================= */
.contact {
    background: var(--bg-section);
    position: relative;
    padding: 3.5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    position: relative;
    z-index: 1;
    gap: 2.5rem;
    align-items: start;
}

/* Contact Info */
.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.875rem 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--primary-color);
    transform: translateX(4px);
}

.method-icon {
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.method-content h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.method-content a {
    color: var(--text-dark);
    font-size: 1.0625rem;
    font-weight: 700;
    transition: color var(--transition-base);
}

.method-content a:hover {
    color: var(--primary-color);
}

.method-content p {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 600;
}

.values {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.value-icon {
    font-size: 1.125rem;
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.25rem;
}

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

.form-group label i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all var(--transition-base);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 968px) {
    .contact {
        padding: 3rem 0;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-info h3 {
        font-size: 1.75rem;
    }

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

    .values {
        justify-content: center;
        align-items: center;
    }

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

@media (max-width: 640px) {
    .contact {
        padding: 2.5rem 0;
        text-align: center;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .values {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

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

    .contact-method {
        padding: 0.75rem;
    }

    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
}


/* =================================================================
   13. FOOTER
   ================================================================= */
.footer {
    background: #1e293b;
    color: #ffffff;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

[data-theme="dark"] .footer {
    background: #0f172a;
    border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .footer-brand h3,
[data-theme="dark"] .footer-links h4,
[data-theme="dark"] .footer-contact h4 {
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

/* Footer Brand */
.footer-brand h3 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--bg-white);
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: var(--spacing-sm);
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--bg-white);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: var(--font-size-sm);
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
}

/* Legal Compliance Section (ANPC) */
.legal-compliance {
    padding: 2rem 0 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-compliance-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.legal-compliance-link {
    display: block;
    transition: all 0.3s ease;
}

.legal-compliance-link img {
    display: block;
    height: auto;
    max-width: 200px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.legal-compliance-link:hover {
    transform: translateY(-4px);
}

.legal-compliance-link:hover img {
    opacity: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-legal a:hover::after {
    transform: scaleX(1);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .footer-links ul,
    .footer-contact ul {
        list-style: none;
        padding-left: 0;
    }

    .footer-links a,
    .footer-contact a {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: center;
    }

    .footer-contact li i {
        flex-shrink: 0;
    }

    .footer-contact li span,
    .footer-contact li a {
        text-align: center;
    }

    .legal-compliance-links {
        gap: 1.5rem;
    }

    .legal-compliance-link img {
        max-width: 160px;
    }

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

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

@media (max-width: 640px) {
    .legal-compliance {
        padding: 1.5rem 0 1rem;
    }

    .legal-compliance-links {
        flex-direction: column;
        gap: 1.25rem;
    }

    .legal-compliance-link img {
        max-width: 180px;
    }
}


/* =================================================================
   14. FLOATING ELEMENTS (WhatsApp, Scroll to Top)
   ================================================================= */
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--bg-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-2xl);
}

/* Scroll to Top Button - MOVED TO LEFT */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;  /* Changed from right to left */
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

@media (max-width: 640px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;  /* Same level as WhatsApp */
        left: 20px;    /* Keep on left side */
    }
}


/* =================================================================
   15. ANIMATIONS
   ================================================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

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

@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 scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-description { animation-delay: 0.3s; }
.hero-cta { animation-delay: 0.4s; }
.hero-trust { animation-delay: 0.5s; }


/* =================================================================
   16. COOKIE CONSENT BANNER
   ================================================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

[data-theme="dark"] .cookie-banner {
    background: #1e293b;
    border-top-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-text i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cookie-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.cookie-accept {
    background: var(--primary-color);
    color: #ffffff;
}

.cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.cookie-reject:hover {
    background: var(--bg-section);
    border-color: var(--text-lighter);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1.25rem;
        padding: 0 1.5rem;
    }

    .cookie-text {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .cookie-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-btn {
        width: 100%;
    }
}


/* =================================================================
   17. RESPONSIVE DESIGN
   ================================================================= */
/* Additional responsive adjustments are integrated throughout the CSS above */

/* Print Styles */
@media print {
    .whatsapp-float,
    .scroll-to-top,
    .cookie-banner,
    .hero-cta,
    .contact-form {
        display: none !important;
    }

    body {
        font-size: 12pt;
    }
}


/* =================================================================
   NEW SECTIONS - FAQ, CALCULATOR, TESTIMONIALS
   ================================================================= */

/* ==================== FAQ SECTION ==================== */
.faq {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-section);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    margin-top: var(--spacing-lg);
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

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

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

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

.faq-question i {
    color: var(--primary-color);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    font-size: var(--font-size-sm);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 var(--spacing-lg);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 var(--spacing-lg) var(--spacing-md);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: var(--font-size-sm);
}

.faq-answer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

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

/* ==================== PRICE CALCULATOR ==================== */
.price-calculator {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    align-items: start;
}

.calculator-form {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(59, 130, 246, 0.06) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.calculator-form::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), rgba(59, 130, 246, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.calculator-form:hover::before {
    opacity: 1;
}

.calculator-form:hover {
    box-shadow: 0 12px 48px rgba(37, 99, 235, 0.18);
    transform: translateY(-2px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.calculator-form .form-group {
    margin-bottom: var(--spacing-sm);
}

.calculator-form label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calculator-form label i {
    color: var(--primary-color);
    font-size: var(--font-size-xs);
    -webkit-text-fill-color: var(--primary-color);
}

.calculator-form select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    color: var(--text-dark);
    background: var(--bg-white);
    background-image: linear-gradient(var(--bg-white), var(--bg-white)),
                      linear-gradient(135deg, var(--primary-color), #3b82f6);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-family);
    font-weight: 500;
    cursor: pointer;
}

.calculator-form select:hover {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    transform: translateY(-1px);
}

.calculator-form select:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15),
                0 8px 16px rgba(37, 99, 235, 0.2);
    transform: translateY(-1px);
}

.calculator-form optgroup {
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--primary-color);
    padding: var(--spacing-xs) 0;
}

.calculator-form option {
    padding: var(--spacing-xs);
    font-weight: 500;
}

.btn-calculate {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: var(--spacing-md);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-calculate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.btn-calculate:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
    background-position: 100% 0;
}

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

.btn-calculate:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.btn-calculate i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

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

.calculator-result {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(96, 165, 250, 0.05) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.calculator-result::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(96, 165, 250, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.result-content {
    text-align: center;
    width: 100%;
}

.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

.result-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    opacity: 0.3;
    z-index: -1;
    animation: iconPulse 2s ease-in-out infinite;
    pointer-events: none;
}

.result-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

.result-content h4 {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.price-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin: var(--spacing-md) 0;
}

.price-min, .price-max {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(37, 99, 235, 0.15);
}

.price-separator {
    font-size: var(--font-size-xl);
    color: var(--text-lighter);
}

.currency {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-light);
}

.price-note {
    font-size: var(--font-size-xs);
    color: var(--text-lighter);
    margin-bottom: var(--spacing-md);
}

.result-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin: var(--spacing-md) 0;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.detail-item i {
    color: var(--primary-color);
    font-size: var(--font-size-sm);
}

.btn-contact-calc {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: var(--font-size-sm);
    text-decoration: none;
    margin-top: var(--spacing-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-contact-calc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    pointer-events: none;
}

.btn-contact-calc:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
    color: white;
}

.btn-contact-calc:hover::before {
    width: 300px;
    height: 300px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-section);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: var(--card-bg);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: var(--spacing-sm);
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: var(--font-size-sm);
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    color: white;
    font-size: var(--font-size-lg);
}

.author-info h5 {
    font-size: var(--font-size-sm);
    color: var(--text-dark);
    margin-bottom: 2px;
    font-weight: 600;
}

.author-info span {
    font-size: var(--font-size-xs);
    color: var(--text-lighter);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--font-size-xs);
    opacity: 0.95;
}

/* ==================== RESPONSIVE - NEW SECTIONS ==================== */

/* Tablet */
@media (max-width: 991px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .calculator-result {
        min-height: 300px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .faq-question {
        font-size: var(--font-size-base);
        padding: var(--spacing-md);
    }

    .faq-answer {
        padding: 0 var(--spacing-md);
    }

    .faq-item.active .faq-answer {
        padding: 0 var(--spacing-md) var(--spacing-md);
    }

    .calculator-form {
        padding: var(--spacing-lg);
    }

    .price-min, .price-max {
        font-size: var(--font-size-3xl);
    }

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

    .trust-stats {
        grid-template-columns: 1fr;
    }
}

/* ==================== SOCIAL SHARE BUTTONS ==================== */
.social-share {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border-color);
}

.share-text {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

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

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    color: white;
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #145dbf;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.share-whatsapp {
    background: #25d366;
}

.share-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.share-linkedin {
    background: #0077b5;
}

.share-linkedin:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.share-email {
    background: var(--secondary-color);
}

.share-email:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 116, 139, 0.3);
}

@media (max-width: 767px) {
    .share-buttons {
        grid-template-columns: 1fr;
    }
}
