:root {
    --primary: #4595a2;
    --primary-dark: #2d6a75;
    --primary-light: #6bb4c2;
    --primary-gradient: linear-gradient(135deg, #4595a2 0%, #2d6a75 100%);
    --secondary: #34495e;
    --accent: #ff6b6b;
    --dark: #2c3e50;
    --light: #f8fafc;
    --gray: #e2e8f0;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(69, 149, 162, 0.1);
    --shadow-lg: 0 20px 40px rgba(69, 149, 162, 0.15);
    --border-radius: 16px;
    --border-radius-sm: 12px;
}

* {
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* Premium Gradient Backgrounds */
.bg-premium {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.bg-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

/* Navbar Styles */
.navbar-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(69, 149, 162, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-premium.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.75rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    margin: 0 0.25rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(69, 149, 162, 0.1);
    color: var(--primary) !important;
}

.btn-premium {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(69, 149, 162, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(69, 149, 162, 0.4);
    color: white;
}

.btn-outline-premium {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-premium:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Cards */
.card-premium {
    background: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: all 0.3s ease;
}

.card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.card-premium .icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(69, 149, 162, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-premium .icon-wrapper i {
    font-size: 2rem;
    color: var(--primary);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-block;
    background: rgba(69, 149, 162, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(69, 149, 162, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* Stats */
.stat-item {
    text-align: center;
    padding: 1.5rem;
}


.stat-label {
    color: #64748b;
    font-weight: 500;
}

/* Badges */
.badge-premium {
    background: rgba(69, 149, 162, 0.1);
    color: var(--primary);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.footer-premium {
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: white;
}

/* Form Controls */
.form-control-premium {
    border: 2px solid var(--gray);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.form-control-premium:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(69, 149, 162, 0.1);
}

/* Animations */
.fade-up {
    animation: fadeUp 0.6s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

.footer-premium {
    background: linear-gradient(135deg, #1a2a3a 0%, #0f1a24 100%);
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4595a2, #2d6a75, #4595a2);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.footer-premium::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(69, 149, 162, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(69, 149, 162, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.social-icon:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

.social-icon:hover::before {
    opacity: 1;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: white;
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(69, 149, 162, 0.5);
}

.footer-link i {
    transition: transform 0.3s ease;
}

.footer-link:hover i {
    transform: translateX(3px);
}

.btn-download {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.btn-download:hover {
    background: rgba(69, 149, 162, 0.2) !important;
    border-color: rgba(69, 149, 162, 0.5) !important;
    transform: translateY(-2px);
}

.hover-white {
    transition: color 0.3s ease;
}

.hover-white:hover {
    color: white !important;
    text-decoration: underline !important;
    text-decoration-color: #4595a2 !important;
    text-underline-offset: 4px;
}

/* Newsletter Input */
.footer-premium .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-premium .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4595a2;
    box-shadow: 0 0 0 3px rgba(69, 149, 162, 0.2);
}

.footer-premium .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}




@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Status Animation */
.status-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.animation-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.pulse-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(69, 149, 162, 0.2);
    animation: pulse 2s ease-out infinite;
}
/* 
.icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4595a2 0%, #2d6a75 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(69, 149, 162, 0.3);
} */

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.75rem;
    background: rgba(69, 149, 162, 0.1);
    color: #4595a2;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(69, 149, 162, 0.2);
}