:root {
    --primary-color: #e50914; /* vivid red */
    --secondary-color: #0b0b0b; /* deep black */
    --accent-color: #ff1a1a; /* bright accent red */
    --text-dark: #ffffff; /* light text for dark backgrounds */
    --text-light: #cccccc;
    --gradient: linear-gradient(135deg, #e50914 0%, #990000 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0b0b;
    color: var(--text-light);
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
/* ===== UPDATED NAVBAR STYLES - WHITE BACKGROUND ===== */
.custom-navbar {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: none;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    min-height: 70px;
}

.custom-navbar.scrolled {
    background: #ffffff !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.brand-wrapper {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    gap: 12px;
}

.brand-logo-image {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.custom-navbar.scrolled .brand-logo-image {
    height: 40px;
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    animation: textGlow 2s infinite alternate;
}

.brand-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.brand-wrapper:hover .brand-text::after {
    transform: scaleX(1);
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
    }
    100% {
        text-shadow: 0 0 15px rgba(255, 107, 53, 0.8), 0 0 25px rgba(247, 147, 30, 0.6);
    }
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    flex-wrap: nowrap;
    margin: 0 auto;
}

.nav-item {
    position: relative;
    margin: 0 0.05rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.9rem 0.7rem !important;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--text-dark) !important;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    background: transparent;
    white-space: nowrap;
    line-height: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-1px);
}

.nav-icon {
    font-size: 0.8rem;
    margin-right: 0.3rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
    color: var(--primary-color);
    transform: scale(1.1);
}

.nav-login {
    margin-left: 0.8rem;
    flex-shrink: 0;
}

.btn-login {
    display: flex;
    align-items: center;
    padding: 0.55rem 1rem !important;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    color: white !important;
    text-decoration: none;
    border-radius: 18px !important;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white !important;
}

/* Mobile Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-main {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 1.5rem !important;
        font-size: 0.9rem;
        border-radius: 8px;
        margin: 0.25rem 0;
        justify-content: flex-start;
        color: var(--text-dark) !important;
    }
    
    .nav-login {
        margin: 1rem 0 0 0;
        width: 100%;
    }
    
    .btn-login {
        justify-content: center;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem;
    }

    .brand-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .brand-logo-image {
        height: 40px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .brand-text {
        display: none;
    }
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 5px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;

}

/* ===== SIMPLE & BEAUTIFUL HERO SECTION ===== */
/* ===== STYLISH HERO SECTION WITH ENHANCED TEXT ANIMATIONS ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
    animation: backgroundZoom 20s ease-in-out infinite;
}

@keyframes backgroundZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 62, 80, 0.92) 0%,
        rgba(52, 73, 94, 0.88) 50%,
        rgba(255, 107, 53, 0.25) 100%
    );
    z-index: 2;
}

/* Floating Elements */
.hero-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatElement 6s ease-in-out infinite;
}

.element-1 { top: 20%; left: 10%; animation-delay: 0s; }
.element-2 { top: 60%; left: 5%; animation-delay: 2s; }
.element-3 { top: 30%; right: 10%; animation-delay: 4s; }
.element-4 { top: 70%; right: 5%; animation-delay: 6s; }

@keyframes floatElement {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 3rem 0;
}

/* Enhanced Hero Badge */
.hero-badges {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 3rem;
    box-shadow: 0 5px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
    animation: badgeReveal 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards 0.5s;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShine 3s ease-in-out infinite 1s;
}

@keyframes badgeReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes badgeShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Stylish Main Title */
.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
    overflow: hidden;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: wordReveal 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.word-1 { animation-delay: 0.8s; }
.word-2 { animation-delay: 1.0s; }
.word-3 { animation-delay: 1.2s; }
.word-4 { animation-delay: 1.4s; }

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-highlight {
    position: relative;
    display: inline-block;
    margin: 0 0.5rem;
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent-color), #ff8c00, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.highlight-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    filter: blur(15px);
    opacity: 0.5;
    z-index: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(45deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Typing Subtitle */
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    min-height: 2rem;
    opacity: 0;
    animation: subtitleReveal 0.5s ease forwards 1.8s;
}

.subtitle-text {
    background: linear-gradient(135deg, #ffffff, #e8f4f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-cursor {
    animation: blinkCursor 1s infinite;
    color: var(--accent-color);
}

@keyframes subtitleReveal {
    to { opacity: 1; }
}

@keyframes blinkCursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Enhanced Description with Word-by-Word Animation */
.hero-description {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.desc-line {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.desc-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: descWordReveal 0.6s ease forwards;
}

/* Word animation delays */
.desc-word.word-1 { animation-delay: 2.0s; }
.desc-word.word-2 { animation-delay: 2.1s; }
.desc-word.word-3 { animation-delay: 2.2s; }
.desc-word.word-4 { animation-delay: 2.3s; }
.desc-word.word-5 { animation-delay: 2.4s; }
.desc-word.word-6 { animation-delay: 2.5s; }
.desc-word.word-7 { animation-delay: 2.7s; }
.desc-word.word-8 { animation-delay: 2.8s; }
.desc-word.word-9 { animation-delay: 2.9s; }
.desc-word.word-10 { animation-delay: 3.0s; }
.desc-word.word-11 { animation-delay: 3.1s; }
.desc-word.word-12 { animation-delay: 3.2s; }

@keyframes descWordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Stats with Icons */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0.8);
    animation: statReveal 0.6s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 3.4s; }
.stat-item:nth-child(2) { animation-delay: 3.6s; }
.stat-item:nth-child(3) { animation-delay: 3.8s; }
.stat-item:nth-child(4) { animation-delay: 4.0s; }

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Enhanced Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    position: relative;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    box-shadow: 0 5px 25px rgba(255, 107, 53, 0.4);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: buttonReveal 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards 4.2s;
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: buttonReveal 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards 4.4s;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
}

.btn-hero-secondary:hover .btn-icon {
    transform: scale(1.1);
}

.btn-shine {
    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.5s;
}

.btn-hero-primary:hover .btn-shine {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

.btn-hero-secondary:hover {
    border-color: var(--accent-color);
    background: rgba(243, 156, 18, 0.1);
    transform: translateY(-3px);
}

@keyframes buttonReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes statReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease forwards 4.8s;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.trust-icon {
    color: var(--accent-color);
    animation: trustPulse 2s ease-in-out infinite;
}

.trust-badge:nth-child(1) .trust-icon { animation-delay: 0s; }
.trust-badge:nth-child(2) .trust-icon { animation-delay: 0.5s; }
.trust-badge:nth-child(3) .trust-icon { animation-delay: 1s; }

@keyframes trustPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    animation: fadeIn 1s ease forwards 5.2s;
}

.scroll-arrow {
    animation: bounce 2s infinite;
    margin-bottom: 0.5rem;
}

.scroll-text {
    font-size: 0.9rem;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-bg {
        background-attachment: scroll;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
/* ===== GENERAL SECTIONS ===== */
/* ===== UNIQUE ABOUT SECTION DESIGN - WHITE BACKGROUND ===== */
.unique-about-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #f7eaea 0%, #f3e7e4 50%, #f1f5f9 100%);
    overflow: hidden;
}

/* Background Elements */
.background-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
    animation: floatBackground 20s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    opacity: 0.3;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    opacity: 0.2;
    animation-delay: 5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    opacity: 0.15;
    animation-delay: 10s;
}

.bg-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.03), transparent);
    animation: rotateShape 30s linear infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 5%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    opacity: 0.1;
}

.shape-2 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 8%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    opacity: 0.08;
}

@keyframes floatBackground {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes rotateShape {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Section Header */
.unique-section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.badge-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.badge-sparkle {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    animation: sparkleShine 3s ease-in-out infinite;
}

@keyframes sparkleShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.unique-section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, var(--text-dark), #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Unique Content Layout */
.unique-content-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* Left Column - Progressive Features */
.features-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.progressive-feature {
    position: relative;
    padding: 2.5rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.progressive-feature:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    background: rgba(243, 156, 18, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.step-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.feature-core {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon-ring {
    position: relative;
    flex-shrink: 0;
}

.ring-circle {
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: ringRotate 4s linear infinite;
}

.feature-icon-ring i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    color: var(--accent-color);
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-desc {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.highlight-tag {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.feature-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.6s ease;
}

.progressive-feature:hover .feature-glow {
    left: 100%;
}

/* Center Column - Visual Showcase */
.visual-column {
    position: relative;
}

.main-visual {
    position: sticky;
    top: 100px;
}

.visual-container {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.visual-container:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
}

.visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.visual-container:hover .visual-image {
    transform: scale(1.1);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.visual-container:hover .visual-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.visual-container:hover .play-button {
    transform: scale(1);
}

/* Rotating Stats */
.rotating-stats {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.stat-orb {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: orbFloat 6s ease-in-out infinite;
}

.orb-1 {
    top: -30px;
    right: -30px;
    animation-delay: 0s;
}

.orb-2 {
    bottom: 50px;
    left: -40px;
    animation-delay: 2s;
}

.orb-3 {
    bottom: -20px;
    right: 50px;
    animation-delay: 4s;
}

.orb-content {
    text-align: center;
    color: var(--text-dark);
    z-index: 2;
}

.orb-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.orb-label {
    font-size: 0.7rem;
    color: var(--text-light);
}

.orb-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0.3;
    animation: orbPulse 3s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* Right Column - Supporting Features */
.support-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-pillar {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.pillar-content h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pillar-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pillar-sparkle {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, var(--accent-color), transparent);
    border-radius: 0 20px 0 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-pillar:hover .pillar-sparkle {
    opacity: 0.1;
}

/* CTA Panel */
.cta-panel {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    color: white;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.cta-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: ctaShine 4s ease-in-out infinite;
}

@keyframes ctaShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    margin-top: 4rem;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: carouselScroll 30s linear infinite;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

@keyframes carouselScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 2rem)); }
}

.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.nav-btn {
    background: white;
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: all;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .unique-content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .visual-column {
        order: -1;
    }
    
    .visual-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .rotating-stats {
        display: none;
    }
}

@media (max-width: 768px) {
    .unique-section-title {
        font-size: 2.5rem;
    }
    
    .feature-core {
        flex-direction: column;
        text-align: center;
    }
    
    .step-indicator {
        justify-content: center;
    }
    
    .testimonial-slide {
        flex: 0 0 calc(100% - 1rem);
    }
    
    .carousel-track {
        animation: carouselScroll 20s linear infinite;
    }
}

@media (max-width: 576px) {
    .unique-about-section {
        padding: 80px 0;
    }
    
    .unique-section-title {
        font-size: 2rem;
    }
    
    .progressive-feature {
        padding: 1.5rem;
    }
    
    .visual-container {
        height: 400px;
    }
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.about-section {
    padding: 100px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}
/* ===== ENHANCED RISING STARS SECTION ===== */
.rising-stars-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.rising-stars-section::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" fill="none"><circle cx="50" cy="50" r="1" stroke="%23ff6b35" stroke-opacity="0.1"/></svg>') repeat;
    opacity: 0.5;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.section-badge i {
    color: var(--primary-color);
}

.badge-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.badge-sparkle {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    animation: sparkleShine 3s ease-in-out infinite;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Stars Slider */
.stars-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.stars-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

.stars-slider::-webkit-scrollbar {
    display: none;
}

.player-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    scroll-snap-align: start;
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.player-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.player-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.player-card:hover .player-image img {
    transform: scale(1.1);
}

.player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.player-card:hover .player-overlay {
    opacity: 1;
    transform: translateY(0);
}

.player-info h5 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.player-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.player-stats {
    display: flex;
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 800;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    transform: scale(0);
    transition: all 0.3s ease 0.1s;
}

.player-card:hover .player-badge {
    transform: scale(1);
}

.player-content {
    padding: 1.5rem;
}

.player-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.player-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.player-highlights {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.highlight {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding: 0 1rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Call to Action */
.cta-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .player-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .player-card {
        flex: 0 0 calc(100% - 1rem);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stars-slider {
        gap: 1rem;
    }
    
    .player-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .slider-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .player-stats {
        flex-direction: column;
        gap: 1rem;
    }
}
/* Footer *//* ===== ENHANCED FOOTER STYLES ===== */
.custom-footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2530 100%);
    color: white;
    position: relative;
    margin-top: 4rem;
}

/* Footer Wave */
.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.footer-wave .shape-fill {
    fill: var(--secondary-color);
}

/* Footer Main */
.footer-main {
    padding: 4rem 0 2rem;
}

/* Brand Section */
.footer-brand {
    padding-right: 2rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.brand-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
    animation: flame 2s ease-in-out infinite alternate;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-main {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    color: white;
}

/* Footer Links */
.footer-links {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
}

.footer-list a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-list a i {
    width: 20px;
    font-size: 0.9rem;
}

/* Contact Info */
.footer-contact {
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    color: var(--accent-color);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Newsletter */
.newsletter h6 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1.2rem;
    color: white;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    padding: 0.8rem 1.2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-brand {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .footer-wave {
        top: -50px;
    }
    
    .footer-wave svg {
        height: 50px;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-list {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero,
    .btn-hero-outline {
        width: 100%;
        max-width: 280px;
    }
}









