/* Modern CSS Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Security Color Palette */
    --primary-900: #0f172a;
    /* Deep Navy */
    --primary-800: #1e293b;
    --primary-700: #334155;
    --primary-600: #475569;
    --primary-500: #64748b;
    --primary-400: #94a3b8;
    --primary-300: #cbd5e1;
    --primary-200: #e2e8f0;
    --primary-100: #f1f5f9;
    --primary-50: #f8fafc;

    /* Gold/Metallic Accents */
    --accent-600: #b45309;
    /* Dark Gold */
    --accent-500: #d97706;
    /* Gold */
    --accent-400: #fbbf24;
    /* Light Gold */
    --accent-300: #fcd34d;
    --accent-200: #fde68a;
    --accent-100: #fef3c7;
    --accent-50: #fffbeb;

    --success-600: #059669;
    --success-500: #10b981;
    --success-400: #34d399;
    --success-100: #d1fae5;

    --warning-600: #d97706;
    --warning-500: #f59e0b;
    --warning-400: #fbbf24;
    --warning-100: #fef3c7;

    --danger-600: #dc2626;
    --danger-500: #ef4444;
    --danger-400: #f87171;
    --danger-100: #fee2e2;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 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: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;

    /* Spacing - Increased for modern feel */
    --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;
    --space-32: 8rem;

    /* Shadows - Softer and more diffused */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.15);
    --shadow-2xl: 0 35px 60px -15px rgb(0 0 0 / 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-900) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-600) 0%, var(--accent-500) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

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

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

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

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--primary-800);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

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

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-8);
}

.loading-logo i {
    margin-right: var(--space-3);
    font-size: var(--font-size-3xl);
    color: var(--accent-300);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo i {
    margin-right: var(--space-3);
    color: var(--accent-400);
    font-size: var(--font-size-2xl);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
    position: relative;
    padding: var(--space-2) 0;
}

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

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

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

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

.language-switch {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.language-switch:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.language-switch i {
    font-size: var(--font-size-sm);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--space-2);
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all var(--transition-fast);
    border-radius: var(--radius-sm);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Trust Bar */
.trust-bar {
    background: white;
    padding: var(--space-8) 0;
    border-bottom: 1px solid var(--primary-100);
}

.trust-text {
    text-align: center;
    color: var(--primary-500);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-6);
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-12);
    flex-wrap: wrap;
    opacity: 0.7;
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-400);
    transition: all var(--transition-normal);
}

.trust-logo:hover {
    color: var(--primary-800);
    transform: translateY(-2px);
}

/* Home Section */
.home-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    /* Slide + Fade Effect */
    transform: translateX(50px);
    transition:
        opacity 1200ms cubic-bezier(0.4, 0, 0.2, 1),
        transform 1200ms cubic-bezier(0.4, 0, 0.2, 1),
        visibility 1200ms cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-slide.next {
    transform: translateX(100%);
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(37, 99, 235, 0.6) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 var(--space-6);
}

.slide-text {
    max-width: 800px;
    animation: slideInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--space-12);
    /* Increased from space-10 */
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1000ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-content p {
    font-size: var(--font-size-xl);
    margin-bottom: 4rem;
    /* Drastically increased spacing */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-100);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1000ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 200ms;
}

.carousel-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1000ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 400ms;
    margin-top: 2rem;
    /* Added explicit top margin */
}

.carousel-slide.active .carousel-content h1,
.carousel-slide.active .carousel-content p,
.carousel-slide.active .carousel-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.arrow-scroll span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin: -5px;
    animation: scrollArrow 2s infinite;
}

.arrow-scroll span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow-scroll span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollWheel {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

@keyframes scrollArrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: var(--font-size-xl);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control:hover {
    background: white;
    color: var(--primary-900);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: var(--space-8);
}

.next {
    right: var(--space-8);
}

.carousel-indicators {
    position: absolute;
    bottom: var(--space-32);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-4);
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator.active::after {
    border-color: rgba(255, 255, 255, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.progress-bar {
    height: 100%;
    background: var(--accent-400);
    width: 0%;
    transition: width 5s linear;
}

.progress-bar.animate {
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-tag {
    display: inline-block;
    background: var(--accent-100);
    color: var(--accent-600);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary-900);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--primary-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: var(--space-32) 0;
    background: var(--primary-50);
}

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

.about-intro h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-900);
    margin-bottom: var(--space-6);
}

.about-intro p {
    font-size: var(--font-size-lg);
    color: var(--primary-600);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

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

.stat-item {
    text-align: center;
    padding: var(--space-6);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--primary-200);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--accent-600);
    margin-bottom: var(--space-2);
    line-height: 1;
}

.stat-label {
    color: var(--primary-600);
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    position: relative;
    width: 400px;
    height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
    animation: float 6s ease-in-out infinite;
}

.image-placeholder i {
    font-size: 8rem;
    color: white;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
    color: var(--accent-600);
}

.floating-icon:nth-child(2) {
    bottom: 20%;
    left: -15%;
    animation-delay: 1.5s;
    color: var(--success-600);
}

.floating-icon:nth-child(3) {
    top: 50%;
    right: -20%;
    animation-delay: 3s;
    color: var(--warning-600);
}

.floating-icon i {
    font-size: var(--font-size-xl);
}

/* Services Section */
.services-section {
    padding: var(--space-32) 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--primary-200);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-200);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.service-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-900);
    margin-bottom: var(--space-4);
}

.service-card p {
    color: var(--primary-600);
    margin-bottom: var(--space-6);
    line-height: 1.7;
    flex-grow: 1;
}

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

.service-features li {
    display: flex;
    align-items: center;
    color: var(--primary-600);
    margin-bottom: var(--space-3);
    font-size: var(--font-size-sm);
}

.service-features i {
    color: var(--success-500);
    margin-right: var(--space-3);
    font-size: var(--font-size-xs);
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-600);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    margin-top: auto;
}

.service-link:hover {
    color: var(--accent-700);
    transform: translateX(4px);
}

.service-link i {
    margin-left: var(--space-2);
    transition: transform var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--space-32) 0;
    background: var(--primary-50);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.testimonial-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--primary-100);
    display: flex;
    flex-direction: column;
}

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

.testimonial-content {
    margin-bottom: var(--space-6);
    position: relative;
}

.quote-icon {
    font-size: var(--font-size-2xl);
    color: var(--accent-200);
    margin-bottom: var(--space-4);
}

.testimonial-content p {
    color: var(--primary-700);
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-top: auto;
    padding-top: var(--space-6);
    border-top: 1px solid var(--primary-100);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-500);
}

.author-info h4 {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--primary-900);
}

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

/* Contact Section - Split Card Design */
.contact-section {
    padding: var(--space-32) 0;
    background: var(--primary-50);
}

.contact-wrapper {
    display: flex;
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    margin-top: var(--space-12);
    min-height: 600px;
}

/* Left Panel: Contact Info */
.contact-info-panel {
    flex: 0 0 40%;
    background: var(--primary-900);
    color: white;
    padding: var(--space-12);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.panel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-panel h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: white;
}

.panel-desc {
    color: var(--primary-300);
    margin-bottom: var(--space-12);
    line-height: 1.6;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    margin-bottom: auto;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-400);
    font-size: var(--font-size-lg);
    transition: all var(--transition-normal);
}

.info-item:hover .icon-box {
    background: var(--accent-500);
    color: white;
    transform: scale(1.1);
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.info-text span {
    font-size: var(--font-size-sm);
    color: var(--primary-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.info-text a,
.info-text p {
    color: white;
    font-size: var(--font-size-lg);
    font-weight: 500;
    text-decoration: none;
    line-height: 1.4;
}

.panel-social {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-12);
}

.panel-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-normal);
}

.panel-social a:hover {
    background: var(--accent-500);
    transform: translateY(-2px);
}

/* Decorative Circles */
.circle-1,
.circle-2 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    opacity: 0.1;
    z-index: 1;
}

.circle-1 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

.circle-2 {
    width: 100px;
    height: 100px;
    top: 50px;
    right: -20px;
}

/* Right Panel: Form */
.contact-form-panel {
    flex: 1;
    padding: var(--space-12);
    background: white;
}

.contact-form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info-panel {
        flex: none;
        padding: var(--space-8);
    }

    .contact-form-panel {
        padding: var(--space-8);
    }

    .circle-1 {
        width: 150px;
        height: 150px;
    }
}

.form-row {
    display: grid;
    gap: var(--space-4);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-900);
    margin-bottom: var(--space-2);
    font-size: var(--font-size-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-4);
    border: 2px solid var(--primary-200);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: var(--font-size-sm);
    color: var(--primary-600);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-300);
    border-radius: var(--radius);
    margin-right: var(--space-3);
    position: relative;
    transition: all var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: var(--accent-500);
    border-color: var(--accent-500);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: var(--font-size-xs);
    font-weight: bold;
}

.error-message {
    color: var(--danger-500);
    font-size: var(--font-size-xs);
    margin-top: var(--space-1);
    min-height: 16px;
}

.submit-btn {
    position: relative;
    overflow: hidden;
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

/* Footer */
.footer {
    background: var(--primary-900);
    color: white;
    padding: var(--space-20) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.footer-logo i {
    margin-right: var(--space-3);
    color: var(--accent-400);
    font-size: var(--font-size-2xl);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.social-links {
    display: flex;
    gap: var(--space-4);
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent-500);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-section h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--accent-300);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: var(--font-size-sm);
}

.footer-section a:hover {
    color: var(--accent-300);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-3);
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    margin-right: var(--space-3);
    color: var(--accent-400);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-8);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
}

.footer-links {
    display: flex;
    gap: var(--space-6);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-300);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-300), var(--accent-500));
    /* Richer Gold Gradient */
    color: var(--primary-900);
    /* Dark icon for contrast on gold */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    transition: all var(--transition-normal);
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(251, 191, 36, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
    }
}

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

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, var(--accent-200), var(--accent-400));
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.5);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

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

@keyframes float {

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

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

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

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--primary-900);
        width: 100%;
        text-align: center;
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-xl);
        padding: var(--space-8) 0;
        gap: var(--space-6);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

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

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

    .slide-actions {
        flex-direction: column;
        align-items: center;
    }

    .carousel-controls {
        padding: 0 var(--space-4);
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }

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

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

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

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

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

    .contact-form-container {
        padding: var(--space-6);
    }

    .floating-icon {
        width: 40px;
        height: 40px;
    }

    .floating-icon i {
        font-size: var(--font-size-base);
    }
}

/* Print Styles */
@media print {

    .navbar,
    .carousel-controls,
    .carousel-indicators,
    .back-to-top {
        display: none;
    }

    .home-section {
        height: auto;
        min-height: 400px;
    }

    .carousel-slide {
        position: static;
        opacity: 1;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-900: #000000;
        --primary-800: #1a1a1a;
        --accent-600: #0066cc;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .carousel-slide {
        transition: none;
    }

    .progress-bar {
        transition: none;
    }
}