/* ============================================
   Click 2 Degree - Modern, Fast, Responsive CSS
   ============================================ */
:root {
    --primary: #0a58ca;
    --primary-dark: #0a3e7c;
    --primary-light: #eef2ff;
    --secondary: #6c757d;
    --success: #198754;
    --warning: #ffc107;
    --dark: #1e2a41;
    --light: #f8f9fa;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: #ffffff;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Custom Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10,88,202,0.3);
    color: white;
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(circle, rgba(10,88,202,0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Cards */
.card-hover {
    transition: var(--transition);
    border: none;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Step Circle */
.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 32px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.step-card:hover .step-circle {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Program Chips */
.program-chip {
    background: var(--primary-light);
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}

.program-chip:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-float, .call-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

.whatsapp-float {
    background: #25D366;
    color: white;
}

.call-float {
    background: var(--primary);
    color: white;
}

.whatsapp-float:hover, .call-float:hover {
    transform: scale(1.1);
    color: white;
}

.tooltip-text {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .tooltip-text,
.call-float:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Lead Form */
.lead-form-card {
    background: white;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.form-control, .form-select {
    border-radius: 16px;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10,88,202,0.1);
}

/* Navbar Active */
.nav-link.active {
    color: var(--primary) !important;
    font-weight: 700;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* Footer Links */
.hover-white:hover {
    color: white !important;
    padding-left: 5px;
    transition: var(--transition);
}

/* Disclaimer Box */
.disclaimer-box {
    background: #fff9f0;
    border-left-width: 5px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float, .call-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Loading optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}