/* ===================================================
   Arjuna Career Counselling - Premium Design System
   =================================================== */

/* CSS Custom Properties */
:root {
    --primary-blue: #1A73E8;
    --dark-blue: #2C6FBF;
    --primary-green: #27AE60;
    --warm-beige: #F5F0E8;
    --white: #FFFFFF;
    --dark-navy: #0D1B3E;
    --light-gray: #F8F9FA;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --teal: #6ABFAB;
    --orange: #E8956A;
    --glow-blue: rgba(26, 115, 232, 0.35);
    --glow-green: rgba(39, 174, 96, 0.35);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ===== TOP CONTACT BAR ===== */
.top-bar {
    background: linear-gradient(90deg, var(--dark-navy) 0%, #162d5e 50%, var(--dark-navy) 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 0;
    font-size: 0.8rem;
    position: relative;
    z-index: 1001;
    overflow: hidden;
    line-height: 1.4;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(26, 115, 232, 0.1) 25%, rgba(39, 174, 96, 0.1) 50%, rgba(26, 115, 232, 0.1) 75%, transparent 100%);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(25%);
    }
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #60a5fa;
}

.top-bar i {
    font-size: 0.9rem;
}

.top-bar .call-btn {
    background: linear-gradient(135deg, var(--primary-green), #229954);
    padding: 5px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
    animation: pulse-glow 2s ease-in-out infinite;
}

.top-bar .call-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--glow-green);
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(39, 174, 96, 0.3);
    }

    50% {
        box-shadow: 0 0 15px rgba(39, 174, 96, 0.6);
    }
}

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

.section {
    padding: 100px 0;
    position: relative;
}

.section-light {
    background-color: var(--light-gray);
}

.section-beige {
    background-color: var(--warm-beige);
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    padding: 2px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* Logo */
.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo span {
    background: linear-gradient(135deg, var(--dark-navy), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.4rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    border-radius: 2px;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white !important;
    padding: 7px 16px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 0.8rem !important;
    box-shadow: 0 3px 12px rgba(26, 115, 232, 0.25);
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.35);
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
    color: var(--primary-blue);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 115, 232, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 115, 232, 0.35);
}

.btn-green {
    background: linear-gradient(135deg, var(--primary-green), #229954);
    color: white;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.5);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ===== CARDS ===== */
.card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
    transition: var(--transition-bounce);
    position: relative;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(106, 191, 171, 0.4);
}

.card h3 {
    color: var(--dark-navy);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* ===== STATS COUNTER ===== */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== TIMELINE ===== */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 60px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--primary-blue), var(--orange));
    z-index: 0;
    border-radius: 2px;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.timeline-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border: 4px solid var(--white);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.3);
    transition: var(--transition-bounce);
}

.timeline-step:hover .timeline-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(26, 115, 232, 0.5);
}

.timeline-step h4 {
    margin-bottom: 10px;
    color: var(--dark-navy);
}

.timeline-step p {
    font-size: 0.95rem;
    padding: 0 10px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background-color: var(--white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.testimonial-quote {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    position: absolute;
    top: 15px;
    left: 25px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark-navy);
    font-size: 1.05rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== TEAM CARD ===== */
.team-card {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    transition: var(--transition-smooth);
}

.team-photo::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
    transition: opacity 0.4s ease;
}

.team-photo:hover::after {
    opacity: 0.8;
}

.team-name {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    text-align: left;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-section .hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.hero-content .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-content .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Animated gradient text */
.gradient-text {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 200% center;
    }
}

/* Floating elements */
.float-element {
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes gentle-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.float-delay-1 {
    animation-delay: 0s;
}

.float-delay-2 {
    animation-delay: 1.5s;
}

.float-delay-3 {
    animation-delay: 3s;
}

/* ===== HERO GLASSMORPHISM BOX ===== */
.hero-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: rotate-glow 15s linear infinite;
}

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

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

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--dark-navy) 0%, #080f22 100%);
    color: white;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--primary-blue), var(--orange));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: white;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
    font-size: 0.95rem;
}

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

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-bounce);
    font-size: 1rem;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--teal), var(--orange));
    transform: translateY(-4px) scale(1.05);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(106, 191, 171, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    z-index: -1;
    opacity: 0;
    animation: whatsapp-ring 2s ease-in-out infinite;
}

@keyframes whatsapp-ring {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

/* ===== CALL FLOAT BUTTON ===== */
.call-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(26, 115, 232, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
}

.call-float i {
    color: white;
    font-size: 1.5rem;
    animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

.call-float:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 10px 40px rgba(26, 115, 232, 0.6);
}

/* ===== FORM STYLES ===== */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
    background-color: var(--light-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.visible>*:nth-child(1) {
    transition-delay: 0.05s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(3) {
    transition-delay: 0.15s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(4) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(5) {
    transition-delay: 0.25s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(6) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

/* ===== GRADIENT BACKGROUND VARIANTS ===== */
.bg-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: white;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #162d5e 50%, var(--primary-blue) 100%);
    color: white;
}

.hero-gradient {
    background: linear-gradient(135deg, #0D1B3E 0%, #1A3A6E 30%, var(--primary-blue) 60%, var(--primary-green) 100%);
}

/* ===== DECORATIVE ELEMENTS ===== */
.section-decorator {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.06;
    pointer-events: none;
}

.decorator-teal {
    background-color: var(--teal);
}

.decorator-orange {
    background-color: var(--orange);
}

.decorator-blue {
    background-color: var(--primary-blue);
}

/* Mesh gradient background */
.mesh-bg {
    position: relative;
}

.mesh-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(106, 191, 171, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(232, 149, 106, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(26, 115, 232, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== PRICING CARDS PREMIUM ===== */
.pricing-popular {
    position: relative;
    transform: scale(1.05);
    border: 2px solid var(--primary-green);
}

.pricing-popular::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    z-index: -1;
    opacity: 0.15;
    filter: blur(15px);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--dark-navy), #162d5e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(13, 27, 62, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(13, 27, 62, 0.5);
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    animation: loader-bounce 1s ease-in-out infinite;
}

.loader-logo img {
    height: 60px;
    width: auto;
}

@keyframes loader-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-blue);
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

/* Gradient text utility */
.text-gradient {
    background: linear-gradient(135deg, var(--teal), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-content .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section {
        padding: 60px 0;
    }

    .top-bar .container {
        justify-content: center;
        text-align: center;
    }

    .top-bar-left {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        gap: 10px;
    }

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

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

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

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .timeline {
        flex-direction: column;
        gap: 30px;
    }

    .timeline::before {
        display: none;
    }

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

    .section-header h2 {
        font-size: 1.8rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .call-float {
        bottom: 80px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .back-to-top {
        left: 20px;
        bottom: 20px;
    }

    .hero-content .hero-title {
        font-size: 2rem;
    }

    .hero-content .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-glass {
        padding: 30px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }

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

    .container {
        padding: 0 15px;
    }

    .card {
        padding: 24px;
    }
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Glow pulse for CTAs */
@keyframes cta-glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(26, 115, 232, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(26, 115, 232, 0.5), 0 0 50px rgba(26, 115, 232, 0.2);
    }
}

.glow-cta {
    animation: cta-glow 3s ease-in-out infinite;
}

/* Typing cursor */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: white;
    margin-left: 4px;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Smooth parallax */
.parallax-bg {
    transform: translateZ(0);
    will-change: transform;
}

/* ===== PLANS PAGE PRICING CARDS ===== */
.plan-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.plan-card-header {
    padding: 35px 30px 25px;
    text-align: center;
    position: relative;
}

.plan-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.plan-card-header h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--dark-navy);
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.03em;
}

.plan-price-note {
    font-size: 0.88rem;
    color: var(--text-light);
}

.plan-card-body {
    padding: 20px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    font-size: 0.9rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

/* Featured/recommended plan */
.plan-featured {
    border: 2px solid var(--primary-green);
    transform: scale(1.04);
    z-index: 2;
}

.plan-featured:hover {
    transform: scale(1.04) translateY(-12px);
}

.plan-featured-tag {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green), #229954);
    color: white;
    padding: 6px 24px;
    border-radius: 0 0 12px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ===== IMAGE CARDS ===== */
.image-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.image-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.image-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: white;
}

.image-card-content {
    padding: 28px;
}

/* ===== CARD WITH IMAGE HEADER ===== */
.card-with-image {
    overflow: hidden;
    padding: 0;
}

.card-with-image .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-with-image .card-body {
    padding: 28px;
}

/* ===== TOP BAR CALL BUTTON FIX ===== */
.top-bar .call-btn {
    font-size: 0.8rem;
    padding: 4px 14px;
}

/* ===== COMPARISON TABLE ===== */
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.compare-table th,
.compare-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.compare-table thead th {
    background: linear-gradient(135deg, var(--dark-navy), #162d5e);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.compare-table tbody tr {
    transition: background 0.3s ease;
}

.compare-table tbody tr:hover {
    background-color: rgba(26, 115, 232, 0.03);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .plan-featured {
        transform: scale(1);
    }

    .plan-featured:hover {
        transform: translateY(-8px);
    }
}