/* CSS Variables for Design System */
:root {
    --primary: 220 78% 14%;
    --primary-foreground: 0 0% 98%;
    --primary-glow: 220 60% 25%;
    
    --secondary: 25 95% 53%;
    --secondary-foreground: 0 0% 100%;
    
    --muted-foreground: 220 9% 46%;
    
    /* Custom design tokens */
    --gradient-hero: linear-gradient(135deg, hsl(220 78% 14%) 0%, hsl(220 60% 25%) 50%, hsl(25 95% 53%) 100%);
    --shadow-glow: 0 0 40px hsl(25 95% 53% / 0.3);
    --shadow-depth: 0 10px 30px -10px hsl(220 78% 14% / 0.4);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Hero container */
.hero-container {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: ;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: ;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 100vh;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Left content */
.hero-left {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeIn 0.6s ease-out;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--secondary));
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-gradient {
    background: linear-gradient(to right, hsl(var(--secondary)), white);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 32rem;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

/* Trust indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
}

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

.trust-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--secondary));
}

/* CTA Section */
.cta-section {
    padding-top: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient-hero);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-depth);
    transition: var(--transition-smooth);
    animation: glowPulse 2s ease-in-out infinite;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.cta-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(0.25rem);
}

.cta-benefits {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.75rem;
}

/* Right content - Hero Image */
.hero-right {
    position: relative;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

/* Floating stats */
.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: var(--shadow-depth);
}

.floating-stat-top {
    top: 2rem;
    right: 2rem;
}

.floating-stat-bottom {
    bottom: 2rem;
    left: 2rem;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.stat-number-secondary {
    color: hsl(var(--secondary));
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Decorative elements */
.decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.decoration-top {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: rgba(255, 144, 47, 0.2);
}

.decoration-bottom {
    bottom: 8rem;
    right: 5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(80px);
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px hsl(25 95% 53% / 0.3);
    }
    50% {
        box-shadow: 0 0 40px hsl(25 95% 53% / 0.6);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
    
    .floating-stat-top {
        top: 1rem;
        right: 1rem;
    }
    
    .floating-stat-bottom {
        bottom: 1rem;
        left: 1rem;
    }
}

@media (max-width: 767px) {
    .callbtn5 a {
        background: maroon;
        display: initial;
        color: #fff;
        font-size: 25px;
        right: 0;
        position: fixed;
        top: 440px;
        z-index: 9;
        padding: 5px 15px 5px 20px;
        border-top-left-radius: 30px;
        border-bottom-left-radius: 30px;
        text-decoration: none;
        font-weight: 600;
    }
}




