/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--gradient-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-cornflower-blue) 0%, #1e3a8a 50%, var(--cg-red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: auto;
}

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

/* Prevent scrolling during loading */
body.loading {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

/* Disable scrollbars completely during loading */
body.loading::-webkit-scrollbar {
    display: none !important;
}

body.loading {
    -ms-overflow-style: none !important;  /* Internet Explorer 10+ */
    scrollbar-width: none !important;  /* Firefox */
}

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

.loading-logo img {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    animation: logoFloat 2s ease-in-out infinite;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    animation-delay: -0.5s;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    animation-delay: -1s;
}

.loading-text {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    animation: textPulse 2s ease-in-out infinite;
}

/* Optimized Animated Background - Performance Focused */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    will-change: auto; /* Only change when needed */
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(37, 60, 128, 0.05); /* Simplified gradient for better performance */
    animation: float 20s ease-in-out infinite; /* Reduced duration */
    will-change: transform;
    transform: translateZ(0); /* Force hardware acceleration */
    backface-visibility: hidden; /* Optimize rendering */
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 70%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 20%;
    animation-delay: -15s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    top: 5%;
    right: 20%;
    animation-delay: -7s;
}

.shape-6 {
    width: 120px;
    height: 120px;
    top: 45%;
    left: 10%;
    animation-delay: -12s;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(248, 250, 252, 0.95) 0%,
        rgba(226, 232, 240, 0.9) 50%,
        rgba(248, 250, 252, 0.95) 100%);
    z-index: -1;
}

/* Color Variables */
:root {
    --dark-cornflower-blue: #253C80;
    --cg-red: #DC4226;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f5;
    --gray-medium: #666666;
    --gray-dark: #333333;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --gradient-primary: linear-gradient(135deg, var(--dark-cornflower-blue) 0%, #1e3a8a 100%);
    --gradient-secondary: linear-gradient(135deg, var(--cg-red) 0%, #ef4444 100%);
    --gradient-accent: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-bg: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);

    --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);

    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Header Styles */
.header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--gray-300);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    width: 160px;
    height: 45px;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    transition: all var(--transition-normal);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--dark-cornflower-blue);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cg-red);
    transition: width var(--transition-normal);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.action-link:hover {
    color: var(--cg-red);
}

.book-now-btn {
    background: var(--dark-cornflower-blue);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

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

.book-now-btn:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: #e5e5e5;
}

.book-now-btn:hover {
    background: var(--cg-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.location-selector:hover {
    border-color: var(--dark-cornflower-blue);
    color: var(--dark-cornflower-blue);
}

/* Hero Section */
.hero {
    position: relative;
    height: 56.25vw; /* 16:9 aspect ratio */
    max-height: 90vh; /* Max height to avoid being too large on wide screens */
    min-height: 400px; /* Min height for small screens */
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 60, 128, 0.1) 0%, rgba(220, 66, 38, 0.05) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    overflow: hidden;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    min-width: 100%;
    min-height: 100%;
}

.slide-content {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.slide-text {
    color: var(--white);
    max-width: 500px;
    animation: slideInLeft 1s ease-out;
}

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

.slide-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.slide-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slide-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

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

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

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

.btn-secondary {
    background: var(--white);
    color: var(--black);
    border-color: var(--gray-300);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--dark-cornflower-blue);
    color: var(--dark-cornflower-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.nav-arrow {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    transition: all var(--transition-normal);
    pointer-events: all;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.nav-arrow:hover {
    background: var(--cg-red);
    border-color: var(--cg-red);
    color: var(--white);
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 8px 25px rgba(220, 66, 38, 0.4);
}

.nav-arrow:active {
    transform: scale(0.95);
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

/* Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.progress-dots {
    display: none;
    gap: 8px;
    margin-bottom: 10px;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.6);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--cg-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all var(--transition-normal);
}

.dot.active {
    background: var(--white);
    transform: scale(1.3);
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.dot.active::before {
    width: 6px;
    height: 6px;
}

.dot:hover {
    background: var(--white);
    transform: scale(1.1);
    border-color: var(--cg-red);
}

.progress-bar {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cg-red) 0%, #ff6b47 100%);
    width: 12.5%;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

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

/* Welcome Section Animations */
@keyframes simpleFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px);
        opacity: 0.8;
    }
}

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

@keyframes iconRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

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

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

@keyframes underlineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes modernTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(100px) rotateX(90deg);
        filter: blur(20px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(50px) rotateX(45deg);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0px);
    }
}

@keyframes modernUnderlineGrow {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(37, 60, 128, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(37, 60, 128, 0.6), 0 0 30px rgba(37, 60, 128, 0.3);
    }
}

@keyframes textPulseGlow {
    0% {
        text-shadow: 0 0 10px rgba(220, 66, 38, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(220, 66, 38, 0.6), 0 0 30px rgba(220, 66, 38, 0.3);
    }
}

@keyframes plusPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes dividerPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

@keyframes modernNumberGlow {
    0% {
        text-shadow: 0 0 10px rgba(220, 66, 38, 0.3);
        filter: brightness(1);
    }
    100% {
        text-shadow: 0 0 30px rgba(220, 66, 38, 0.6), 0 0 40px rgba(220, 66, 38, 0.3);
        filter: brightness(1.2);
    }
}

@keyframes modernPlusPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: scale(1.2) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: scale(0.9) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: scale(1.1) rotate(270deg);
        opacity: 1;
    }
}

@keyframes modernDividerPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleY(1);
    }
    33% {
        opacity: 0.8;
        transform: scaleY(1.05);
    }
    66% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

@keyframes dividerShine {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes shimmerMove {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes expandCircle {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

@keyframes clickExplosion {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    50% {
        width: 100px;
        height: 100px;
        opacity: 0.8;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

@keyframes modernBackgroundFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-15px, -20px) rotate(180deg);
    }
    75% {
        transform: translate(25px, 15px) rotate(270deg);
    }
}

@keyframes modernGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 25%;
    }
    50% {
        background-position: 50% 100%;
    }
    75% {
        background-position: 25% 0%;
    }
}

@keyframes geometricShift {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-20px) translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateX(10px) translateY(-20px) rotate(-1deg);
    }
    75% {
        transform: translateX(-10px) translateY(10px) rotate(0.5deg);
    }
    100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
}

@keyframes dotPatternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

@keyframes premiumLighting {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    25% {
        opacity: 1;
        transform: scale(1.05);
    }
    50% {
        opacity: 0.9;
        transform: scale(0.98);
    }
    75% {
        opacity: 1.1;
        transform: scale(1.02);
    }
}

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

@keyframes batteryPulse {
    0%, 100% {
        width: 80%;
        background: #4caf50;
    }
    50% {
        width: 90%;
        background: #66bb6a;
        box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    }
}

@keyframes needleSwing {
    0%, 100% {
        transform: translate(-50%, -100%) rotate(45deg);
    }
    50% {
        transform: translate(-50%, -100%) rotate(135deg);
    }
}


@keyframes starTwinkle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
        filter: brightness(1.3);
    }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes racingLineMove {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    50% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

@keyframes gearRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


@keyframes modernWaveMove {
    0%, 100% {
        transform: translateX(0) scaleY(1);
    }
    25% {
        transform: translateX(-80px) scaleY(1.1);
    }
    50% {
        transform: translateX(-160px) scaleY(0.9);
    }
    75% {
        transform: translateX(-240px) scaleY(1.05);
    }
}

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

/* Action Bar Section */
.action-bar-section {
    position: relative;
    z-index: 5;
}

.hero-bottom-bar {
    background: rgba(30, 41, 59, 0.8);
    padding: 25px 0;
    border-top: 3px solid var(--cg-red);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bottom-actions {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 15px 25px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.action-link:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--cg-red) 0%, #dc2626 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 66, 38, 0.4);
    border-color: var(--cg-red);
}

.action-link i {
    font-size: 18px;
    color: var(--cg-red);
    transition: color 0.3s ease;
}

.action-link:hover i {
    color: var(--white);
}

/* Optimized Welcome Section - Performance Focused */
.welcome-reimagined {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.welcome-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(37, 60, 128, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 75% 75%, rgba(220, 66, 38, 0.08) 0%, transparent 60%);
    opacity: 0.8;
}

.welcome-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(37, 60, 128, 0.02) 50%, rgba(220, 66, 38, 0.02) 100%);
    z-index: 1;
}

.welcome-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none !important;
}

/* Simplified Lighting Effects - Performance Optimized */
.welcome-reimagined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 400px 200px at 20% 0%, rgba(37, 60, 128, 0.08) 0%, transparent 70%),
                radial-gradient(ellipse 300px 150px at 80% 100%, rgba(220, 66, 38, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.welcome-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(220, 66, 38, 0.6);
    border-radius: 50%;
    animation: simpleFloat 6s ease-in-out infinite;
    opacity: 0.6;
    pointer-events: none !important;
    will-change: transform;
}

.welcome-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.welcome-particles .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: -2s;
}

.welcome-particles .particle:nth-child(3) {
    top: 40%;
    left: 60%;
    animation-delay: -4s;
}

.welcome-particles .particle:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-delay: -6s;
}

.welcome-particles .particle:nth-child(5) {
    top: 10%;
    left: 70%;
    animation-delay: -1s;
}

/* Fix cursor visibility issues - ensure all floating/overlay elements don't block cursor */
.interactive-particle,
.burst-particle,
.shimmer,
.expanding-circle,
.click-effect,
.modern-ripple,
.welcome-ripple {
    pointer-events: none !important;
}

/* Ensure all overlays and background effects don't interfere with cursor */
.welcome-background::before,
.welcome-background::after,
.welcome-reimagined::before,
.welcome-reimagined::after,
.floating-elements,
.float-element {
    pointer-events: none !important;
}

/* Global cursor fix - ensure cursor is always visible and responsive */
html, body {
    cursor: auto !important;
}

/* Ensure all pseudo-elements don't interfere with cursor */
*::before, *::after {
    pointer-events: none !important;
}

/* Fix specific cursor issues on overlay elements */
.loading-screen,
.modal-overlay,
.mobile-nav-overlay {
    cursor: auto !important;
}

.welcome-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300%;
    height: 120px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(37, 60, 128, 0.08) 25%,
        rgba(220, 66, 38, 0.06) 50%,
        rgba(37, 60, 128, 0.08) 75%,
        transparent 100%);
    animation: modernWaveMove 20s ease-in-out infinite;
    border-radius: 50% 50% 0 0;
    filter: blur(1px);
}

.wave-1 {
    animation-delay: 0s;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(37, 60, 128, 0.1) 25%,
        rgba(220, 66, 38, 0.08) 50%,
        rgba(37, 60, 128, 0.1) 75%,
        transparent 100%);
    z-index: 3;
}

.wave-2 {
    animation-delay: -7s;
    height: 100px;
    opacity: 0.8;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(220, 66, 38, 0.06) 25%,
        rgba(37, 60, 128, 0.05) 50%,
        rgba(220, 66, 38, 0.06) 75%,
        transparent 100%);
    animation-duration: 25s;
    z-index: 2;
}

.wave-3 {
    animation-delay: -14s;
    height: 80px;
    opacity: 0.6;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(37, 60, 128, 0.04) 25%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(37, 60, 128, 0.04) 75%,
        transparent 100%);
    animation-duration: 30s;
    z-index: 1;
}

/* Welcome Hero */
.welcome-hero {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 30px;
    animation: badgeFloat 3s ease-in-out infinite;
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    font-size: 1.2rem;
    animation: iconRotate 4s ease-in-out infinite;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 1px;
}

.welcome-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.title-line {
    display: block;
    position: relative;
    overflow: hidden;
    transform-origin: center;
    animation: modernTitleReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.title-line-1 {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 8px;
    animation: modernTitleReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.title-line-2 {
    margin-bottom: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ag-text {
    color: var(--dark-cornflower-blue);
    animation: modernTitleReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both,
               textGlow 3s ease-in-out 2s infinite alternate;
    position: relative;
    background: linear-gradient(135deg, var(--dark-cornflower-blue) 0%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(37, 60, 128, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.ag-text:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: brightness(1.2);
}

.ag-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    animation: modernUnderlineGrow 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.2s both;
    box-shadow: 0 0 10px rgba(37, 60, 128, 0.5);
}

.tvs-text {
    color: var(--cg-red);
    animation: modernTitleReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both,
               textPulseGlow 3s ease-in-out 2.5s infinite alternate;
    position: relative;
    background: linear-gradient(135deg, var(--cg-red) 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(220, 66, 38, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tvs-text:hover {
    transform: scale(1.05) rotate(2deg);
    filter: brightness(1.2);
}

.tvs-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    animation: modernUnderlineGrow 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.4s both;
    box-shadow: 0 0 10px rgba(220, 66, 38, 0.5);
}

.title-line-3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    letter-spacing: 2px;
    animation: modernTitleReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.welcome-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: subtitleFadeIn 1s ease-out 1s both;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.welcome-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    perspective: 1000px;
}

.stat-item {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    transform-style: preserve-3d;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 60, 128, 0.05) 0%, rgba(220, 66, 38, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.stat-item:hover {
    transform: translateY(-15px) rotateX(10deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cg-red) 0%, #ff6b47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 12px;
    position: relative;
    text-shadow: 0 0 20px rgba(220, 66, 38, 0.3);
    transition: all 0.3s ease;
    animation: modernNumberGlow 3s ease-in-out infinite alternate;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    animation-duration: 1s;
}

.stat-number::after {
    content: '+';
    position: absolute;
    top: -5px;
    right: -25px;
    font-size: 2rem;
    opacity: 0.8;
    animation: modernPlusPulse 2s ease-in-out infinite;
    background: linear-gradient(135deg, var(--dark-cornflower-blue) 0%, var(--cg-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--dark-cornflower-blue);
    transform: translateY(-3px);
}

.stat-divider {
    width: 3px;
    height: 80px;
    background: linear-gradient(to bottom,
        transparent,
        rgba(37, 60, 128, 0.3) 10%,
        rgba(220, 66, 38, 0.5) 50%,
        rgba(37, 60, 128, 0.3) 90%,
        transparent
    );
    animation: modernDividerPulse 3s ease-in-out infinite;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(220, 66, 38, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: dividerShine 2s ease-in-out infinite;
}

/* Feature Showcase */
.feature-showcase {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.showcase-header h2::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.showcase-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
    height: 650px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                0 16px 64px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-large {
    grid-row: span 2;
}

.card-wide {
    grid-column: span 2;
}

.card-medium {
    grid-row: span 1;
}

.card-tall {
    grid-row: span 2;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(37, 60, 128, 0.8) 0%,
        rgba(220, 66, 38, 0.6) 50%,
        rgba(37, 60, 128, 0.8) 100%);
    opacity: 0.7;
    transition: opacity var(--transition-normal);
}

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

.feature-card:hover .card-gradient {
    opacity: 0.9;
}

.feature-card .card-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.card-large .card-content {
    padding: 40px;
    justify-content: center;
}

.feature-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--white);
    transition: all var(--transition-normal);
    animation: iconBounce 2s ease-in-out infinite;
}

.card-icon.electric {
    background: rgba(255, 235, 59, 0.2);
    color: #ffc107;
}

.card-icon.racing {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.card-icon.service {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
}


.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.feature-card .card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.card-large .card-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-card .card-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.card-large .card-content p {
    font-size: 16px;
    margin-bottom: 24px;
}

.card-features {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-action-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.card-action-btn:hover {
    background: var(--white);
    color: var(--cg-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.electric-indicator,
.racing-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.battery-icon {
    width: 30px;
    height: 16px;
    border: 2px solid var(--white);
    border-radius: 2px;
    position: relative;
}

.battery-icon::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 4px;
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 0 2px 2px 0;
}

.battery-fill {
    width: 80%;
    height: 100%;
    background: #4caf50;
    border-radius: 1px;
    animation: batteryPulse 2s ease-in-out infinite;
}

.speed-meter {
    width: 30px;
    height: 30px;
    border: 2px solid var(--white);
    border-radius: 50%;
    position: relative;
}

.speed-needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 12px;
    background: var(--cg-red);
    transform-origin: bottom;
    transform: translate(-50%, -100%) rotate(45deg);
    animation: needleSwing 3s ease-in-out infinite;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.service-item i {
    color: #4caf50;
    font-size: 12px;
}


/* Card Hover Effects */
.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    /* transition: transform var(--transition-slow); */
    z-index: 4;
}

.feature-card:hover .card-hover-effect {
    transform: translateX(100%);
}

.card-pulse-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    /* animation: pulseRing 3s ease-in-out infinite; */
    z-index: 2;
}

.card-racing-lines {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
}

.racing-line {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    margin: 4px 0;
    border-radius: 1px;
    /* animation: racingLineMove 1.5s ease-in-out infinite; */
}

.racing-line:nth-child(2) {
    width: 30px;
    /* animation-delay: 0.2s; */
}

.racing-line:nth-child(3) {
    width: 35px;
    /* animation-delay: 0.4s; */
}

.card-service-animation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 4;
}

.gear {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    position: relative;
    /* animation: gearRotate 4s linear infinite; */
}

.gear::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.gear-2 {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 20px;
    height: 20px;
    /* animation-direction: reverse;
    animation-duration: 3s; */
}


/* Welcome CTA */
.welcome-cta {
    text-align: center;
    padding: 50px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: var(--border-radius-xl);
    margin: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

.welcome-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 16px;
    position: relative;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    perspective: 1000px;
}

.cta-btn {
    position: relative;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    overflow: hidden;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform-style: preserve-3d;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--cg-red) 0%, #ff6b47 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.cta-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b47 0%, var(--dark-cornflower-blue) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

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

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--dark-cornflower-blue);
    border: 2px solid var(--dark-cornflower-blue);
    position: relative;
}

.cta-btn.secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--dark-cornflower-blue);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.cta-btn.secondary:hover::before {
    width: 300%;
    height: 300%;
}

.cta-btn.secondary:hover {
    color: var(--white);
    border-color: var(--dark-cornflower-blue);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
    z-index: 1;
}

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

.btn-magnetic-field {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 60, 128, 0.1);
    transform: translate(-50%, -50%);
    transition: all var(--transition-normal);
    z-index: 1;
}

.cta-btn.secondary:hover .btn-magnetic-field {
    width: 200%;
    height: 200%;
}

.cta-btn.secondary:hover {
    background: var(--dark-cornflower-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-btn:hover {
    transform: translateY(-8px) rotateX(10deg) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2),
                0 10px 30px rgba(220, 66, 38, 0.2);
}

.cta-btn.primary:hover {
    box-shadow: 0 20px 60px rgba(220, 66, 38, 0.4),
                0 10px 30px rgba(255, 107, 71, 0.3);
}

.cta-btn.secondary:hover {
    box-shadow: 0 20px 60px rgba(37, 60, 128, 0.4),
                0 10px 30px rgba(37, 60, 128, 0.2);
}

.cta-btn:active {
    transform: translateY(-4px) rotateX(5deg) scale(1.02);
    transition: all 0.1s ease;
}

/* Magnetic Effect */
.cta-btn {
    --magnetic-x: 0;
    --magnetic-y: 0;
}

.cta-btn:hover {
    transform: translateY(-8px) rotateX(10deg) scale(1.05)
               translate(var(--magnetic-x), var(--magnetic-y));
}

/* Enhanced Button Content */
.btn-content {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.cta-btn:hover .btn-content {
    transform: translateZ(10px);
}

.btn-content i {
    transition: all 0.3s ease;
    margin-right: 8px;
}

.cta-btn:hover .btn-content i {
    transform: scale(1.2) rotate(15deg);
}

/* Modern Card Hover Effects with Glassmorphism */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 24px;
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(37, 60, 128, 0.1) 0%,
        transparent 50%);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 24px;
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 10px 20px rgba(37, 60, 128, 0.1);
    z-index: 10;
}

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

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

.feature-card:active {
    transform: translateY(-15px) rotateX(2deg) scale(1.01);
    transition: all 0.1s ease;
}

/* Enhanced Card Content Animations */
.feature-card:hover .card-content {
    transform: translateZ(20px);
}

.feature-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.feature-card:hover .card-action-btn {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Discover Section - Dark Theme */
.discover {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #020617 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.discover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(220, 66, 38, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 70% 20%, rgba(37, 60, 128, 0.03) 1px, transparent 1px),
        linear-gradient(45deg, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px, 25px 25px, 25px 25px;
    background-position: 0 0, 30px 30px, 0 0, 0 0;
    animation: patternMove 45s linear infinite reverse;
    z-index: 1;
}

.discover::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 66, 38, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 6s ease-in-out infinite;
    filter: blur(40px);
}

.discover .container {
    position: relative;
    z-index: 2;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.discover h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--white);
    background: linear-gradient(135deg, #ffffff 0%, var(--cg-red) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(220, 66, 38, 0.2);
}

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

.discover-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.discover-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.discover-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background: linear-gradient(135deg, #1e293b, #334155);
    z-index: 0;
}

.discover-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Ensure first slide shows properly when active */
.discover-slide:first-child.active {
    opacity: 1;
    z-index: 1;
}

.discover-slide:first-child.active img {
    opacity: 1;
}


.discover-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    transition: transform 0.8s ease, opacity 0.3s ease;
    display: block;
    background: linear-gradient(135deg, #1e293b, #334155);
    min-height: 400px;
    opacity: 0;
    animation: imageFadeIn 0.5s ease-in-out forwards;
}

.discover-slide.active img {
    opacity: 1;
}

@keyframes imageFadeIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.discover:hover .discover-slide.active img {
    transform: scale(1.05);
}

.discover:hover .discover-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(37, 60, 128, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 1s ease;
    pointer-events: none;
    z-index: 3;
    opacity: 0.3;
}

.discover:hover .image-overlay {
    transform: translateX(100%);
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination span {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.pagination-arrows {
    display: flex;
    gap: 15px;
}

.pagination-arrows button {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.pagination-arrows button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cg-red) 0%, #ffffff 100%);
    border-radius: 50%;
    transform: scale(0);
    transition: transform var(--transition-normal);
}

.pagination-arrows button:hover::before {
    transform: scale(1);
}

.pagination-arrows button:hover {
    border-color: var(--cg-red);
    color: var(--white);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 15px 40px rgba(220, 66, 38, 0.3);
}

.pagination-arrows button i {
    position: relative;
    z-index: 1;
}

/* Auto-slide indicator */
.discover-slider::after {
    content: '';
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: rgba(220, 66, 38, 0.6);
    border-radius: 50%;
    animation: autoSlideIndicator 4s linear infinite;
    z-index: 10;
    opacity: 0.8;
}

@keyframes autoSlideIndicator {
    0% {
        background: rgba(220, 66, 38, 0.8);
        transform: scale(1);
    }
    90% {
        background: rgba(220, 66, 38, 0.3);
        transform: scale(1);
    }
    100% {
        background: rgba(220, 66, 38, 0.8);
        transform: scale(1.2);
    }
}

/* Removed hover behavior as requested */

.discover-content-wrapper {
    position: relative;
    min-height: 200px;
}

.discover-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.discover-slide-content.active {
    opacity: 1;
    position: relative;
}

.discover-slide-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.discover-slide-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.discover-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.discover-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-dark {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-dark:hover {
    background: var(--cg-red);
    border-color: var(--cg-red);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 66, 38, 0.4);
}

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

.btn-gray:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}


/* Experience Excellence Section */
.experience-excellence {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #020617 100%);
    overflow: hidden;
    color: var(--white);
}

.experience-excellence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(220, 66, 38, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(37, 60, 128, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 30px 30px, 30px 30px;
    background-position: 0 0, 25px 25px, 0 0, 0 0;
    animation: patternMove 60s linear infinite;
    z-index: 1;
}

@keyframes patternMove {
    0% {
        background-position: 0 0, 25px 25px, 0 0, 0 0;
    }
    100% {
        background-position: 50px 50px, 75px 75px, 30px 30px, 30px 30px;
    }
}

.excellence-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(220, 66, 38, 0.15) 0%, rgba(37, 60, 128, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(220, 66, 38, 0.2);
    animation: floatAround 20s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.float-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.float-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.float-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.float-element:nth-child(4) {
    bottom: 15%;
    right: 25%;
    animation-delay: -15s;
    animation-duration: 28s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -50px) rotate(90deg) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -30px) rotate(180deg) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(50px, 20px) rotate(270deg) scale(1.1);
        opacity: 0.7;
    }
}

.experience-excellence .container {
    position: relative;
    z-index: 3;
}

/* Section Header */
.excellence-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: rgba(220, 66, 38, 0.1);
    color: var(--cg-red);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(220, 66, 38, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(220, 66, 38, 0.2);
}

.section-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: transform 0.8s ease;
}

.excellence-header:hover .section-badge::before {
    transform: rotate(45deg) translateX(100%);
}

.excellence-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, var(--cg-red) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(220, 66, 38, 0.3);
}

.excellence-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Excellence Features */
.excellence-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
    align-items: start;
}

/* Testimonials Section */
.testimonials-section h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
}

.testimonials-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--cg-red) 0%, #ffffff 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(220, 66, 38, 0.5);
}

.testimonials-slider {
    position: relative;
    height: 300px;
    margin-bottom: 30px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--cg-red), var(--dark-cornflower-blue));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 0.1;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 16px;
    animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial-stars i:nth-child(1) { animation-delay: 0s; }
.testimonial-stars i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-stars i:nth-child(3) { animation-delay: 0.4s; }
.testimonial-stars i:nth-child(4) { animation-delay: 0.6s; }
.testimonial-stars i:nth-child(5) { animation-delay: 0.8s; }

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

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cg-red) 0%, var(--dark-cornflower-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border: 2px solid var(--cg-red);
    background: transparent;
    border-radius: 50%;
    color: var(--cg-red);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--cg-red);
    color: var(--white);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(37, 60, 128, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: var(--cg-red);
    transform: scale(1.2);
}

/* Guarantees Section */
.guarantees-section h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
}

.guarantees-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--cg-red) 0%, #ffffff 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(220, 66, 38, 0.5);
}

.guarantee-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.guarantee-card:hover::before {
    left: 100%;
}

.guarantee-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.guarantee-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.guarantee-icon i {
    font-size: 40px;
    background: linear-gradient(135deg, var(--cg-red) 0%, var(--dark-cornflower-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.guarantee-card:hover .guarantee-icon i {
    transform: scale(1.2) rotate(10deg);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(220, 66, 38, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
}

.guarantee-card:hover .icon-glow {
    transform: translate(-50%, -50%) scale(1);
}

.guarantee-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.guarantee-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Statistics Section */
.excellence-stats {
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 50px;
    background: linear-gradient(135deg, var(--cg-red) 0%, var(--dark-cornflower-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(220, 66, 38, 0.3);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 66, 38, 0.05) 0%, transparent 50%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.stat-card:hover .stat-glow {
    transform: scale(1);
}

/* Excellence CTA */
.excellence-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.excellence-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 60, 128, 0.02) 0%, rgba(220, 66, 38, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.cta-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    position: relative;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--cg-red) 0%, #dc2626 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(220, 66, 38, 0.3);
}

.cta-btn.secondary {
    background: var(--white);
    color: var(--cg-red);
    border: 2px solid var(--cg-red);
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.cta-btn.primary:hover {
    box-shadow: 0 15px 40px rgba(220, 66, 38, 0.4);
}

.cta-btn.secondary:hover {
    background: var(--cg-red);
    color: var(--white);
}

.btn-ripple,
.btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.btn-ripple {
    background: rgba(255,255,255,0.3);
}

.btn-pulse {
    background: rgba(220, 66, 38, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.cta-btn:active .btn-ripple {
    width: 200px;
    height: 200px;
}

/* Performance Optimizations */
.animated-background,
.floating-shapes,
.shape,
.welcome-card,
.grid-item,
.btn,
.nav-arrow {
    will-change: transform;
    transform: translateZ(0);
}

/* Enhanced Mobile Responsive */
@media (max-width: 1024px) {
    .hero {
        padding-top: 70px;
    }

    .hero-nav {
        display: none;
    }

    .floating-shapes .shape {
        animation-duration: 30s;
    }

    .hero-progress {
        bottom: 120px;
    }

    .progress-dots {
        gap: 10px;
    }

    .dot {
        width: 14px;
        height: 14px;
    }

}

/* Focus States for Accessibility */
button:focus,
input:focus,
select:focus,
a:focus {
    outline: 2px solid var(--dark-cornflower-blue);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .shape {
        background: linear-gradient(45deg, rgba(37, 60, 128, 0.2), rgba(220, 66, 38, 0.2));
    }

    .overlay {
        background: linear-gradient(135deg, rgba(37, 60, 128, 0.95) 0%, rgba(220, 66, 38, 0.9) 100%);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-shapes,
    .shape,
    .particle {
        animation: none !important;
    }

    .slide-background img {
        transition: none !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

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

.grid-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 20px 20px;
    color: var(--black);
    line-height: 1.4;
    transition: color var(--transition-normal);
}

.grid-item:hover h3 {
    color: var(--dark-cornflower-blue);
}

.grid-item .btn {
    margin: 0 20px;
    position: relative;
    overflow: hidden;
}

.grid-item .btn::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.6s ease;
}

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

/* Footer - Dark Theme */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #020617 100%);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(220, 66, 38, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(37, 60, 128, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px, 35px 35px, 35px 35px;
    background-position: 0 0, 20px 20px, 0 0, 0 0;
    animation: patternMove 80s linear infinite;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff 0%, var(--cg-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--cg-red);
    border-radius: 1px;
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    position: relative;
}

.footer-column a::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cg-red);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-column a:hover::before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: var(--white);
    background: var(--cg-red);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(220, 66, 38, 0.3);
}

.footer-legal {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0.8rem 0;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .book-now-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    /* Hero Section Mobile Styles */
    .hero {
        height: 75vw;
        max-height: 70vh;
        min-height: 450px;
        padding-top: 80px;
    }

    .hero::before {
        background: linear-gradient(135deg, rgba(37, 60, 128, 0.15) 0%, rgba(220, 66, 38, 0.08) 100%);
    }

    /* Hero Slider Mobile Styles */
    .hero-slider {
        height: 100%;
        width: 100%;
        position: relative;
        overflow: hidden;
        touch-action: pan-y pinch-zoom;
        -webkit-overflow-scrolling: touch;
        display: block;
        z-index: 1;
    }

    .slide {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1;
    }

    .slide.active {
        opacity: 1;
        z-index: 2;
    }

    .slide-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .slide-background img {
        object-fit: contain;
        object-position: center center;
        height: 100%;
        width: 100%;
        min-width: 100%;
        min-height: 100%;
        display: block;
        max-width: none;
        user-select: none;
        -webkit-user-drag: none;
        -webkit-touch-callout: none;
        pointer-events: none;
        will-change: transform;
        backface-visibility: hidden;
    }

    .slide-content {
        position: relative;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        z-index: 3;
        text-align: center;
    }

    .slide-text {
        color: #ffffff;
        max-width: 90%;
        width: 100%;
        text-align: center;
    }

    .slide-text h2 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 15px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .slide-text p {
        font-size: 1rem;
        margin-bottom: 25px;
        opacity: 0.9;
        line-height: 1.5;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }

    .slide-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .slide-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9rem;
        text-align: center;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 25px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    .slide-buttons .btn-primary {
        background: linear-gradient(135deg, #dc4226, #ff6b35);
        color: #ffffff;
        border: none;
        box-shadow: 0 4px 15px rgba(220, 66, 38, 0.3);
    }

    .slide-buttons .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(220, 66, 38, 0.4);
    }

    .slide-buttons .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }

    .slide-buttons .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }

    /* Touch-friendly enhancements for mobile */
    .hero-slider,
    .slide,
    .slide-background {
        -webkit-tap-highlight-color: transparent;
        tap-highlight-color: transparent;
    }

    .progress-dots .dot {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(220, 66, 38, 0.3);
        tap-highlight-color: rgba(220, 66, 38, 0.3);
    }

    /* Prevent image dragging and selection on mobile */
    .slide-background img {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-user-drag: none;
        -khtml-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;
        user-drag: none;
    }

    .hero-progress {
        bottom: 100px;
    }

    .progress-dots {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        max-width: 280px;
        margin: 0 auto 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        transform: scale(1.3);
        background: rgba(255, 255, 255, 0.9);
    }

    .progress-bar {
        width: 200px;
        height: 3px;
        margin: 0 auto;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .hero-sidebar {
        display: none;
    }

    /* Welcome Section Mobile Styles */
    .welcome-reimagined {
        padding: 60px 0 40px;
        background-size: 100% 100%, 400px 400px, 300px 300px, 100% 100%;
    }

    .welcome-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 20px;
        text-align: center;
    }

    .title-line-1 {
        font-size: 1.4rem;
        display: block;
        margin-bottom: 5px;
    }

    .title-line-2 {
        font-size: 3rem;
        display: block;
        margin-bottom: 5px;
    }

    .title-line-3 {
        font-size: 1rem;
        display: block;
        font-weight: 400;
        opacity: 0.9;
    }

    .welcome-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        text-align: center;
        padding: 0 10px;
    }

    .welcome-stats {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
        align-items: stretch;
        max-width: 300px;
        margin: 0 auto 40px;
    }

    .stat-item {
        padding: 20px 15px;
        margin: 0;
        min-width: auto;
        width: 100%;
        backdrop-filter: blur(15px);
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-divider {
        display: none;
    }

    /* Feature Grid Mobile */
    .feature-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 20px;
        padding: 0 15px;
    }

    .feature-card {
        min-height: 280px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .card-large, .card-medium, .card-wide {
        grid-column: 1;
        grid-row: auto;
    }

    .card-content {
        padding: 25px 20px;
    }

    .card-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .card-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .card-features {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 15px;
    }

    .feature-tag {
        font-size: 0.8rem;
        padding: 4px 8px;
    }

    .card-action-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 44px;
    }

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

    /* Welcome CTA Mobile */
    .welcome-cta {
        padding: 30px 0;
        margin-top: 40px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        min-height: 50px;
        padding: 15px 20px;
        font-size: 0.9rem;
        border-radius: 25px;
        justify-content: center;
    }

    .cta-btn i {
        margin-right: 8px;
        font-size: 16px;
    }

    /* Discover Section Mobile */
    .discover {
        padding: 60px 0;
    }

    .discover h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
        text-align: center;
    }

    .discover-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .discover-image {
        order: 1;
        margin-bottom: 20px;
    }

    .discover-text {
        order: 2;
    }

    .discover-slider {
        height: 280px;
        border-radius: 16px;
        overflow: hidden;
    }

    .discover-slide img {
        height: 280px;
        border-radius: 16px;
        object-fit: cover;
        object-position: center;
    }

    .pagination {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
        text-align: center;
    }

    .pagination-arrows {
        order: 1;
    }

    .pagination-arrows button {
        min-height: 44px;
        min-width: 44px;
        padding: 12px;
        margin: 0 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .discover-slide-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .discover-slide-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: center;
    }

    .discover-slide-content .btn {
        display: block;
        width: fit-content;
        margin: 0 auto;
        padding: 12px 24px;
        min-height: 44px;
        border-radius: 25px;
        font-size: 0.9rem;
    }

    /* Experience Excellence Section Mobile */
    .experience-excellence {
        padding: 80px 0;
    }

    .excellence-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .excellence-header p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .excellence-features {
        flex-direction: column;
        gap: 40px;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        margin-bottom: 40px;
    }

    .testimonials-section h3 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 25px;
    }

    .testimonials-slider {
        height: 280px;
        margin-bottom: 20px;
    }

    .testimonial-card {
        padding: 20px;
        border-radius: 16px;
    }

    .testimonial-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .testimonial-controls {
        gap: 15px;
    }

    .testimonial-prev, .testimonial-next {
        min-height: 44px;
        min-width: 44px;
        width: 44px;
        height: 44px;
    }

    /* Guarantees Mobile */
    .guarantees-section h3 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 25px;
    }

    .guarantee-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .guarantee-card {
        padding: 20px 15px;
        text-align: center;
        border-radius: 16px;
    }

    .guarantee-card h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .guarantee-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .guarantee-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }

    .guarantee-icon i {
        font-size: 20px;
    }

    /* Excellence Stats Mobile */
    .excellence-stats {
        margin-bottom: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }

    .stat-card {
        padding: 20px 15px;
        border-radius: 16px;
        text-align: center;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 10px;
    }

    .stat-icon i {
        font-size: 18px;
    }

    /* Excellence CTA Mobile */
    .excellence-cta {
        padding: 30px 20px;
        border-radius: 16px;
        text-align: center;
    }

    .excellence-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .excellence-cta p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .excellence-cta .cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 280px;
        margin: 0 auto;
    }

    .excellence-cta .cta-btn {
        width: 100%;
        min-height: 50px;
        padding: 15px 20px;
        font-size: 0.9rem;
        border-radius: 25px;
        justify-content: center;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Footer Mobile Styles */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: left;
        padding: 0 15px;
    }

    .footer-column {
        margin-bottom: 25px;
    }

    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        color: #ffffff;
        border-bottom: 2px solid rgba(220, 66, 38, 0.3);
        padding-bottom: 8px;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

    .footer-column li {
        margin-bottom: 8px;
    }

    .footer-column a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.9rem;
        line-height: 1.6;
        transition: all 0.3s ease;
        display: block;
        padding: 5px 0;
    }

    .footer-column a:hover {
        color: #dc4226;
        padding-left: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 30px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        background: rgba(220, 66, 38, 0.1);
        border: 2px solid rgba(220, 66, 38, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #dc4226;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: #dc4226;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(220, 66, 38, 0.4);
    }

    .footer-legal {
        font-size: 0.8rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.6);
        padding: 0 10px;
    }

    .bottom-actions {
        flex-direction: column;
        gap: 20px;
    }

    /* Modal Mobile Enhancements */
    .modal-container {
        width: 95%;
        max-width: 400px;
        margin: 10px auto;
        border-radius: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-header {
        padding: 20px 15px 15px;
        text-align: center;
    }

    .modal-header h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .modal-header p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .enquiry-form {
        padding: 15px 20px 25px;
    }

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

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 8px;
        display: block;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        min-height: 50px;
        padding: 15px;
        font-size: 16px;
        border-radius: 12px;
        border: 2px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        color: #ffffff;
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus {
        border-color: #dc4226;
        outline: none;
        background: rgba(255, 255, 255, 0.08);
    }

    .location-input-group {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .or-text {
        text-align: center;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .detect-btn {
        min-height: 44px;
        width: 100%;
        padding: 12px;
        border-radius: 12px;
        background: rgba(220, 66, 38, 0.1);
        border: 2px solid rgba(220, 66, 38, 0.3);
        color: #dc4226;
        font-size: 0.9rem;
    }

    .submit-btn {
        width: 100%;
        min-height: 50px;
        padding: 15px;
        font-size: 1rem;
        border-radius: 25px;
        background: linear-gradient(135deg, #dc4226, #ff6b35);
        border: none;
        color: #ffffff;
        font-weight: 600;
        margin: 20px 0 15px;
    }

    .consent-section {
        text-align: center;
        font-size: 0.8rem;
    }

    .whatsapp-toggle {
        justify-content: center;
        margin-top: 12px;
    }

    .hero-progress {
        bottom: 20px;
        width: 100%;
        padding: 0 20px;
    }

    .progress-dots {
        flex-wrap: nowrap; /* Prevent wrapping */
        gap: 10px;
        justify-content: center;
        margin-bottom: 0;
    }

    .dot {
        width: 9px;
        height: 9px;
    }

    .progress-bar {
        display: none; /* Hide progress bar on tablets for a cleaner look */
    }
}

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

    /* Hero Section Small Mobile */
    .hero {
        height: 100vw;
        max-height: 80vh;
        min-height: 350px;
        padding-top: 70px;
    }

    .hero::before {
        background: linear-gradient(135deg, rgba(37, 60, 128, 0.2) 0%, rgba(220, 66, 38, 0.1) 100%);
    }

    /* Hero Slider Small Mobile Styles (480px) */
    .hero-slider {
        height: 100%;
        width: 100%;
        overflow: hidden;
    }

    .slide-background img {
        object-fit: contain;
        object-position: center center;
        height: 100%;
        width: 100%;
        min-width: 100%;
        min-height: 100%;
        transform: scale(1.01);
    }

    .slide-content {
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .slide-text {
        max-width: 95%;
        text-align: center;
    }

    .slide-text h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .slide-text p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.4;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }

    .slide-buttons {
        flex-direction: column;
        gap: 10px;
        max-width: 260px;
    }

    .slide-buttons .btn {
        width: 100%;
        padding: 12px 18px;
        font-size: 0.85rem;
        min-height: 48px;
        border-radius: 24px;
    }

    .hero-progress {
        bottom: 80px;
    }

    .progress-dots {
        gap: 6px;
        max-width: 240px;
    }

    .dot {
        width: 8px;
        height: 8px;
        margin: 2px;
    }

    .dot.active {
        transform: scale(1.4);
    }

    .progress-bar {
        width: 150px;
        height: 2px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }


    .discover h2,
    .excellence-header h2 {
        font-size: 32px;
    }

    .excellence-features {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Small Mobile Enhancements (480px) */
    .welcome-title {
        font-size: 2rem;
    }

    .title-line-2 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .feature-card {
        min-height: 250px;
        padding: 20px 15px;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    .card-content p {
        font-size: 0.85rem;
    }

    .discover-slider {
        height: 240px;
    }

    .discover-slide img {
        height: 240px;
        object-fit: cover;
        object-position: center;
    }

    .discover-slide-content h3 {
        font-size: 1.3rem;
    }

    .discover-slide-content p {
        font-size: 0.9rem;
    }

    .testimonials-slider {
        height: 250px;
    }

    .testimonial-card {
        padding: 15px;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }

    .guarantee-card {
        padding: 15px 10px;
    }

    .guarantee-card h4 {
        font-size: 1rem;
    }

    .guarantee-card p {
        font-size: 0.85rem;
    }

    .guarantee-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-progress {
        bottom: 15px;
    }

    .progress-dots {
        gap: 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .progress-bar {
        height: 2px;
        width: 180px;
    }

    .hero-progress {
        display: none; /* Hide progress indicator entirely on small phone screens */
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Experience Excellence Mobile */
    .experience-excellence {
        padding: 80px 0;
    }

    .experience-excellence::before {
        background-size: 30px 30px, 30px 30px, 20px 20px, 20px 20px;
    }

    .float-element {
        width: 80px;
        height: 80px;
    }

    .excellence-header h2 {
        font-size: 28px;
    }

    .excellence-header p {
        font-size: 16px;
    }

    .excellence-features {
        gap: 40px;
        margin-bottom: 60px;
    }

    .testimonials-slider {
        height: 320px;
    }

    .testimonial-card {
        padding: 25px;
        background: rgba(255, 255, 255, 0.08);
    }

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

    .stat-card {
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.08);
    }

    .excellence-cta {
        padding: 40px 20px;
        background: rgba(255, 255, 255, 0.08);
    }

    .cta-content h3 {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 250px;
    }

    .guarantee-card {
        background: rgba(255, 255, 255, 0.08);
    }

    /* Discover Section Mobile */
    .discover {
        padding: 80px 0;
    }

    .discover::before {
        background-size: 25px 25px, 40px 40px, 20px 20px, 20px 20px;
    }

    .discover h2 {
        font-size: 28px;
    }

    .pagination {
        padding: 12px 15px;
        margin-bottom: 20px;
    }

    .pagination-arrows {
        gap: 10px;
    }

    .pagination-arrows button {
        width: 35px;
        height: 35px;
    }

    .discover-slider {
        height: 300px;
    }

    .discover-slide img {
        height: 300px;
        object-fit: cover;
        object-position: center;
    }

    /* Footer Mobile */
    .footer {
        padding: 60px 0 30px;
    }

    .footer::before {
        background-size: 40px 40px, 30px 30px, 25px 25px, 25px 25px;
    }

    .footer-content {
        padding: 30px 20px;
        margin-bottom: 30px;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .footer-bottom {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Action Bar Mobile */
    .hero-bottom-bar {
        padding: 20px 0;
    }

    /* Action Bar Mobile Styles */
    .hero-bottom-bar {
        padding: 15px 0;
    }

    .bottom-actions {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
        align-items: center;
    }

    .action-link {
        padding: 14px 20px;
        justify-content: center;
        min-height: 50px;
        width: 100%;
        max-width: 280px;
        font-size: 13px;
        border-radius: 25px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .action-link:hover {
        background: rgba(220, 66, 38, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(220, 66, 38, 0.3);
    }

    .action-link i {
        font-size: 16px;
        margin-right: 8px;
    }
}

/* Enhanced Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease;
    backdrop-filter: blur(0px);
}

.modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(5px);
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    transition: background-color 0.3s ease;
}

.modal-container {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.7) translateY(50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 100001;
}

.modal.active .modal-container {
    transform: scale(1) translateY(0);
}

/* Enhanced modal animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        visibility: hidden;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        visibility: visible;
        backdrop-filter: blur(8px);
    }
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.7) translateY(50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.modal-header p {
    color: var(--gray-medium);
    font-size: 14px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gray-medium);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--gray-light);
    color: var(--cg-red);
    transform: rotate(90deg);
}

.enquiry-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
    animation: slideInUp 0.3s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.form-group:nth-child(1) { animation-delay: 0.05s; }
.form-group:nth-child(2) { animation-delay: 0.1s; }
.form-group:nth-child(3) { animation-delay: 0.15s; }
.form-group:nth-child(4) { animation-delay: 0.2s; }
.form-group:nth-child(5) { animation-delay: 0.25s; }

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--black);
    font-size: 14px;
}

.required {
    color: var(--cg-red);
    font-weight: 700;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cg-red);
    box-shadow: 0 0 0 3px rgba(220, 66, 38, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder {
    color: #999;
}

.select-wrapper {
    position: relative;
}

.select-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-medium);
    pointer-events: none;
    transition: transform 0.3s ease;
    z-index: 1;
}

.select-wrapper select:focus + i {
    transform: translateY(-50%) rotate(180deg);
}

/* Hide default select arrow */
.select-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.location-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-input-group input {
    flex: 1;
}

.or-text {
    color: var(--gray-medium);
    font-size: 14px;
    white-space: nowrap;
}

.detect-btn {
    background: var(--white);
    border: 2px solid var(--cg-red);
    color: var(--cg-red);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.detect-btn:hover {
    background: var(--cg-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 66, 38, 0.3);
}

.detect-btn i {
    font-size: 12px;
}

.submit-btn {
    width: 100%;
    background: var(--gray-medium);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.submit-btn:hover {
    background: var(--cg-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 66, 38, 0.4);
}

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

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.submit-btn.loading .btn-loader {
    display: block;
}

.submit-btn.loading span {
    opacity: 0;
}

.consent-section {
    text-align: center;
    animation: fadeIn 0.6s ease 0.6s forwards;
    opacity: 0;
}

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

.consent-section p {
    font-size: 12px;
    color: var(--gray-medium);
    margin-bottom: 15px;
    line-height: 1.4;
}

.link-red {
    color: var(--cg-red);
    text-decoration: underline;
    font-weight: 600;
}

.whatsapp-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--cg-red);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-medium);
}

.toggle-text i {
    color: #25D366;
    font-size: 14px;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        margin: 20px;
    }

    .enquiry-form {
        padding: 20px;
    }

    .modal-header {
        padding: 20px 20px 15px;
    }

    .location-input-group {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .or-text {
        text-align: center;
        margin: 5px 0;
        font-size: 14px;
        color: #6b7280;
    }

    .detect-btn {
        min-height: 48px;
        font-size: 16px;
        border-radius: 8px;
        background: #f3f4f6;
        border: 2px solid #e5e7eb;
        color: #374151;
        transition: all 0.3s ease;
    }

    .detect-btn:hover {
        background: #e5e7eb;
        border-color: var(--cg-red);
    }
}



/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
}

.animate-on-scroll[data-animation="slideUp"] {
    transform: translateY(50px);
}

.animate-on-scroll[data-animation="slideUp"].animated {
    transform: translateY(0);
}

.animate-on-scroll[data-animation="slideLeft"] {
    transform: translateX(-50px);
}

.animate-on-scroll[data-animation="slideLeft"].animated {
    transform: translateX(0);
}

.animate-on-scroll[data-animation="slideRight"] {
    transform: translateX(50px);
}

.animate-on-scroll[data-animation="slideRight"].animated {
    transform: translateX(0);
}

.animate-on-scroll[data-animation="fadeIn"] {
    opacity: 0;
}

.animate-on-scroll[data-animation="fadeIn"].animated {
    opacity: 1;
}

.animate-on-scroll[data-animation="scaleIn"] {
    transform: scale(0.8);
    opacity: 0;
}

.animate-on-scroll[data-animation="scaleIn"].animated {
    transform: scale(1);
    opacity: 1;
}

/* Animation Delays */
.animate-on-scroll[data-delay=\"100\"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay=\"200\"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay=\"300\"] { transition-delay: 0.3s; }
.animate-on-scroll[data-delay=\"400\"] { transition-delay: 0.4s; }
.animate-on-scroll[data-delay=\"500\"] { transition-delay: 0.5s; }
.animate-on-scroll[data-delay=\"600\"] { transition-delay: 0.6s; }

/* Core Animations */
@keyframes logoFloat {\n    0%, 100% { transform: translateY(0); }\n    50% { transform: translateY(-10px); }\n}\n\n@keyframes spin {\n    0% { transform: rotate(0deg); }\n    100% { transform: rotate(360deg); }\n}\n\n@keyframes textPulse {\n    0%, 100% { opacity: 1; }\n    50% { opacity: 0.7; }\n}\n\n@keyframes float {\n    0%, 100% {\n        transform: translateY(0) rotate(0deg);\n    }\n    25% {\n        transform: translateY(-20px) rotate(90deg);\n    }\n    50% {\n        transform: translateY(-10px) rotate(180deg);\n    }\n    75% {\n        transform: translateY(-30px) rotate(270deg);\n    }\n}\n\n/* Notification Styles */\n.notification {\n    position: fixed;\n    top: 20px;\n    right: 20px;\n    background: var(--white);\n    border-left: 4px solid var(--cg-red);\n    box-shadow: var(--shadow-xl);\n    border-radius: var(--border-radius);\n    padding: 15px 20px;\n    z-index: 10001;\n    transform: translateX(400px);\n    transition: all var(--transition-normal);\n    max-width: 350px;\n    backdrop-filter: blur(10px);\n}\n\n.notification.show {\n    transform: translateX(0);\n}\n\n.notification-success {\n    border-left-color: #10b981;\n}\n\n.notification-content {\n    display: flex;\n    align-items: center;\n    gap: 12px;\n}\n\n.notification-content i {\n    font-size: 18px;\n    color: var(--cg-red);\n    animation: iconBounce 0.6s ease;\n}\n\n.notification-success .notification-content i {\n    color: #10b981;\n}\n\n.notification-content span {\n    font-size: 14px;\n    color: var(--black);\n    font-weight: 500;\n}\n\n@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Enhanced Hover Effects */
.welcome-card,
.grid-item {
    cursor: pointer;
}

.welcome-card:active,
.grid-item:active {
    transform: scale(0.98);
}

/* Enhanced Footer */
.footer {
    position: relative;
    background: var(--gray-900);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.social-links a {
    transition: all var(--transition-normal);
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-800);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    background: var(--cg-red);
    box-shadow: 0 8px 25px rgba(220, 66, 38, 0.4);
}

/* Mobile Menu Enhancement */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 80px 0 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }

    .main-nav a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        font-weight: 500;
        color: var(--gray-700);
        text-decoration: none;
        transition: all var(--transition-normal);
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--cg-red);
        background: rgba(220, 66, 38, 0.05);
        padding-left: 10px;
    }

    .main-nav a::after {
        display: none;
    }

    .mobile-menu-toggle {
        z-index: 1001;
    }
}

/* Mobile menu overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

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

/* Comprehensive Responsive Design Enhancements */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
        padding: 0 20px;
    }

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

@media (max-width: 992px) {
    .container {
        max-width: 960px;
        padding: 0 15px;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .feature-showcase .showcase-header h2 {
        font-size: 2rem;
    }

    .discover-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
    }

    .hero-text h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        height: auto;
    }

    .feature-card {
        min-height: 200px;
    }

    .welcome-title {
        font-size: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column ul li a {
        font-size: 0.9rem;
    }
}

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

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .header-actions {
        flex-direction: column;
        gap: 8px;
    }

    .book-now-btn {
        padding: 6px 12px;
        font-size: 11px;
        min-width: auto;
    }

    .location-selector {
        display: none;
    }

    .feature-card {
        min-height: 180px;
        padding: 20px;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-social a {
        font-size: 1.2rem;
        padding: 8px;
    }

    .welcome-reimagined {
        padding: 60px 0;
    }

    .discover {
        padding: 60px 0;
    }
}

/* Ultra-small screens (320px and below) */
@media (max-width: 320px) {
    /* Hero Section Extra Small Mobile */
    .hero {
        height: 120vw;
        max-height: 85vh;
        min-height: 320px;
        padding-top: 60px;
    }

    .hero::before {
        background: linear-gradient(135deg, rgba(37, 60, 128, 0.25) 0%, rgba(220, 66, 38, 0.12) 100%);
    }

    /* Hero Slider Ultra-Small Mobile Styles (320px) */
    .hero-slider {
        height: 100%;
        width: 100%;
        overflow: hidden;
    }

    .slide-background img {
        object-fit: contain;
        object-position: center center;
        height: 100%;
        width: 100%;
        min-width: 100%;
        min-height: 100%;
        display: block;
        transform: scale(1.01);
    }

    .slide-content {
        padding: 0 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }

    .slide-text {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .slide-text h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
        line-height: 1.1;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
        font-weight: 800;
    }

    .slide-text p {
        font-size: 0.9rem;
        margin-bottom: 18px;
        line-height: 1.3;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
        opacity: 0.95;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 8px;
        max-width: 240px;
        margin: 0 auto;
    }

    .slide-buttons .btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.8rem;
        min-height: 44px;
        border-radius: 22px;
        font-weight: 600;
    }

    .hero-progress {
        bottom: 10px;
    }

    .progress-dots {
        gap: 8px;
        max-width: 200px;
    }

    .dot {
        width: 6px;
        height: 6px;
        margin: 1px;
    }

    .progress-bar {
        width: 150px;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    /* Ultra-small Mobile Enhancements (320px) */
    .welcome-reimagined {
        padding: 40px 0 30px;
    }

    .welcome-title {
        font-size: 1.8rem;
    }

    .title-line-1 {
        font-size: 1.2rem;
    }

    .title-line-2 {
        font-size: 2.2rem;
    }

    .title-line-3 {
        font-size: 0.9rem;
    }

    .welcome-subtitle {
        font-size: 0.9rem;
        padding: 0 5px;
    }

    .welcome-stats {
        max-width: 280px;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .feature-card {
        min-height: 220px;
        padding: 15px 12px;
    }

    .card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .card-content p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .discover {
        padding: 40px 0;
    }

    .discover h2 {
        font-size: 1.8rem;
    }

    .discover-slider {
        height: 200px;
    }

    .discover-slide img {
        height: 200px;
        object-fit: cover;
        object-position: center;
    }

    .discover-slide-content h3 {
        font-size: 1.2rem;
    }

    .discover-slide-content p {
        font-size: 0.85rem;
    }

    .experience-excellence {
        padding: 60px 0;
    }

    .excellence-header h2 {
        font-size: 1.7rem;
    }

    .testimonials-slider {
        height: 220px;
    }

    .testimonial-card {
        padding: 12px;
    }

    .testimonial-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .guarantee-card {
        padding: 12px 8px;
    }

    .guarantee-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .guarantee-icon i {
        font-size: 16px;
    }

    .modal-container {
        width: 98%;
        margin: 5px auto;
        border-radius: 16px;
        max-height: 95vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-header {
        padding: 15px 10px 10px;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .enquiry-form {
        padding: 10px 15px 20px;
    }

    .form-group input,
    .form-group select {
        min-height: 48px;
        padding: 12px;
        font-size: 16px;
        border-radius: 8px;
        border: 2px solid #e2e8f0;
        transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus {
        border-color: var(--cg-red);
        outline: none;
        box-shadow: 0 0 0 3px rgba(220, 66, 38, 0.1);
    }

    .form-group label {
        font-size: 14px;
        font-weight: 600;
        color: #374151;
        margin-bottom: 6px;
        display: block;
    }

    .required {
        color: var(--cg-red);
    }

    .submit-btn {
        min-height: 48px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        background: var(--cg-red);
        color: white;
        border: none;
        width: 100%;
        margin-top: 20px;
        transition: all 0.3s ease;
    }

    .submit-btn:hover {
        background: #b91c1c;
        transform: translateY(-1px);
    }

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

    .submit-btn.loading {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .feature-card {
        min-height: 160px;
        padding: 15px;
    }

    .modal-container {
        width: 98%;
        margin: 10px;
        padding: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        -webkit-appearance: none;
        appearance: none;
        border-radius: 8px;
    }

    /* Improve select dropdown on mobile */
    .form-group select {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
        padding-right: 40px;
    }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Ensure proper viewport handling */
@media screen and (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
    }

    body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
}

/* Improved touch targets for mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .cta-btn,
    .book-now-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Form improvements */
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
        padding: 12px 16px;
    }

    /* Modal improvements */
    .modal-container {
        border-radius: 16px;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* Hero Section Touch Improvements */
    .dot {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
        border-radius: 50%;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .dot::after {
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        transition: all 0.3s ease;
    }

    .dot.active::after {
        background: rgba(255, 255, 255, 0.9);
        transform: scale(1.3);
    }
}

/* Mobile Landscape Orientation */
@media (max-width: 768px) and (orientation: landscape) and (max-height: 600px) {
    .hero {
        height: 95vh;
        min-height: 450px;
        padding-top: 70px;
    }

    .hero-progress {
        bottom: 60px;
    }

    .progress-dots {
        gap: 6px;
        margin-bottom: 8px;
    }

    .dot {
        min-height: 40px;
        min-width: 40px;
        padding: 12px;
    }

    .dot::after {
        width: 8px;
        height: 8px;
    }

    .progress-bar {
        height: 2px;
        width: 160px;
    }

    /* Hero Slider Mobile Landscape */
    .hero-slider {
        height: 100%;
        width: 100%;
    }

    .slide-content {
        padding: 0 20px;
        align-items: center;
        justify-content: center;
    }

    .slide-text {
        text-align: center;
        max-width: 80%;
    }

    .slide-text h2 {
        font-size: 1.8rem;
        margin-bottom: 8px;
        line-height: 1.1;
    }

    .slide-text p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .slide-buttons {
        flex-direction: row;
        gap: 15px;
        max-width: 400px;
        justify-content: center;
    }

    .slide-buttons .btn {
        flex: 1;
        min-width: 120px;
        max-width: 180px;
        padding: 10px 16px;
        font-size: 0.85rem;
        min-height: 40px;
    }
}

/* Button Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Button States */
button, .btn, .book-now-btn, .action-link, .card-action-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

button:hover, .btn:hover, .book-now-btn:hover, .action-link:hover, .card-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

button:active, .btn:active, .book-now-btn:active, .action-link:active, .card-action-btn:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 350px;
    min-width: 300px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e293b;
    font-weight: 500;
}

.notification-content i {
    font-size: 18px;
}

.notification-success .notification-content i {
    color: #10b981;
}

.notification-error .notification-content i {
    color: #ef4444;
}

.notification-info .notification-content i {
    color: #3b82f6;
}

.notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

/* Mobile notification adjustments */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero {
        /* Fix for iOS Safari viewport height issues */
        height: 100vh;
        height: -webkit-fill-available;
    }

    @media (max-width: 768px) {
        .hero {
            height: 85vh;
            height: -webkit-fill-available;
        }
    }

    @media (max-width: 480px) {
        .hero {
            height: 75vh;
            height: -webkit-fill-available;
        }
    }

    @media (max-width: 320px) {
        .hero {
            height: 70vh;
            height: -webkit-fill-available;
        }
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    background: transparent;
    border: none;
    outline: none;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--cg-red);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--cg-red);
}

/* Mobile Navigation (off-canvas) */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 80px 0 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }

    .main-nav a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        font-weight: 500;
        color: var(--gray-700);
        text-decoration: none;
        transition: all var(--transition-normal);
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--cg-red);
        background: rgba(220, 66, 38, 0.05);
        padding-left: 10px;
    }

    .main-nav a::after {
        display: none;
    }

    .mobile-menu-toggle {
        z-index: 1001;
    }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Ensure mobile menu toggle is always visible on mobile */
.mobile-menu-toggle {
    display: flex !important;
}

.main-nav {
    display: block !important;
}

.bottom-actions {
    flex-direction: column;
    gap: 20px;
}

/* Ensure mobile menu toggle is hidden on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}
