/* CSS Variables - Enhanced Color Palette */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #8b5cf6;
    --secondary-dark: #7c3aed;
    --accent-color: #10b981;
    --accent-dark: #059669;
    --contrast-color: #f59e0b;
    --contrast-dark: #d97706;
    --success-color: #22c55e;
    --warning-color: #fbbf24;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --light-bg-alt: #f1f5f9;
    --border-color: #e5e7eb;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #22c55e 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-cool: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--contrast-color));
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.5);
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Smooth fade-in for sections - only on homepage with loaded class */
body.loaded section {
    animation: fadeInSection 0.8s ease-out forwards;
}

/* Sections are visible by default */
section {
    opacity: 1;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Particles Animation */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 16s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Page Load Animation */
/* Removed body:not(.loaded) overflow hidden as it causes issues on other pages */

/* Enhanced Logo Animation */
.logo-icon img {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar:hover .logo-icon img {
    transform: scale(1.05) rotate(2deg);
}

/* Smooth section transitions */
section {
    transition: all 0.3s ease;
}

/* Enhanced package badge animation */
.package-badge, .popular-badge {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Review stars animation */
.review-stars i {
    transition: all 0.3s ease;
    display: inline-block;
}

.review-card:hover .review-stars i {
    transform: scale(1.2) rotate(5deg);
    color: var(--contrast-color);
}

.review-card:hover .review-stars i:nth-child(2) {
    transition-delay: 0.1s;
}

.review-card:hover .review-stars i:nth-child(3) {
    transition-delay: 0.2s;
}

.review-card:hover .review-stars i:nth-child(4) {
    transition-delay: 0.3s;
}

.review-card:hover .review-stars i:nth-child(5) {
    transition-delay: 0.4s;
}

/* Form input focus animation */
.form-group {
    position: relative;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
    animation: labelSlide 0.3s ease-out;
}

@keyframes labelSlide {
    from {
        transform: translateY(0);
        opacity: 0.7;
    }
    to {
        transform: translateY(-20px);
        opacity: 1;
    }
}

/* Hamburger menu animation */

/* Loading state */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

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

/* Site header with optional offer banner */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.site-header.has-offer-banner .navbar {
    top: 0;
}
.site-header.has-offer-banner + .hero {
    padding-top: 140px;
}

/* March Offer Banner - prominent top strip */
.offer-banner {
    background: var(--contrast-color);
    color: var(--white);
    padding: 18px 20px;
    text-align: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.offer-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 28px;
}
.offer-badge {
    background: rgba(0,0,0,0.25);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.offer-text {
    font-size: 1.2rem;
    font-weight: 600;
}
.offer-amount {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 2px;
    padding: 2px 8px;
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
}
.offer-cta {
    color: var(--white);
    background: rgba(0,0,0,0.3);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.5);
}
.offer-cta:hover {
    color: var(--white);
    background: rgba(0,0,0,0.5);
    border-color: var(--white);
}

/* CTA Strip - big March offer block */
.cta-strip {
    background: #003769;
    color: var(--white);
    padding: 3.5rem 0;
    text-align: center;
}
.cta-strip .container {
    padding-left: 20px;
    padding-right: 20px;
}
.cta-strip-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.cta-strip-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}
.cta-strip-heading {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}
.cta-strip-amount {
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}
.cta-strip-text p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}
.cta-strip-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
}
.cta-strip .btn-primary {
    background: #E60E14;
    color: var(--white);
    border: none;
}
.cta-strip .btn-primary:hover {
    color: var(--white);
    background: #c00c11;
}
@media (min-width: 640px) {
    .cta-strip-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        text-align: left;
    }
    .cta-strip-text {
        flex: 1;
        min-width: 280px;
    }
    .cta-strip-btn {
        flex-shrink: 0;
    }
}

/* Why Choose Us */
.why-us {
    padding: 5rem 0;
    background: var(--white);
}
.why-us .section-header {
    margin-bottom: 3rem;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}
.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.why-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.why-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: var(--light-bg-alt);
}
.how-it-works .section-header {
    margin-bottom: 3rem;
}
.steps-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.step-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}
.step-num {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: var(--contrast-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 1.25rem;
}
.step-box h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.step-box p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--white);
}
.map-section .section-header {
    margin-bottom: 3rem;
}
.map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}
.map-overlay-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 320px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}
.map-overlay-info h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.map-overlay-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.map-overlay-info p:last-of-type {
    margin-bottom: 0;
}
.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}
.map-overlay-info .btn-sm {
    margin-top: 0.5rem;
}

/* Package pages: extra top padding when offer banner is present */
body.has-offer-banner .package-details {
    padding-top: 8rem;
}
body.has-offer-banner .package-hero {
    padding-top: 140px;
}

@media (max-width: 768px) {
    .offer-banner {
        padding: 12px 16px;
    }
    .offer-banner-inner {
        flex-direction: column;
        gap: 10px;
    }
    .cta-strip {
        padding: 2rem 0;
    }
    .cta-strip-content {
        flex-direction: column;
        text-align: center;
    }
    .why-us,
    .how-it-works,
    .map-section {
        padding: 3rem 0;
    }
    .why-us .section-header,
    .how-it-works .section-header,
    .map-section .section-header {
        margin-bottom: 2rem;
    }
    .why-grid,
    .steps-row {
        gap: 1.5rem;
    }
    .why-card,
    .step-box {
        padding: 1.5rem;
    }
    .map-wrapper {
        margin-top: 0;
    }
    .map-overlay-info {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        max-width: 100%;
        margin-top: 1rem;
    }
}

/* Navigation - logo left, menu right */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-icon img {
    height: 76px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu .nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: 0.5rem 0;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background: url('../images/background.jpg') center/cover no-repeat;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

/* Video optimization for mobile */
@media (max-width: 768px) {
    .hero-video {
        /* On mobile, you might want to use image instead for performance */
        display: none;
    }
    
    .hero {
        background: url('../images/background.jpg') center/cover no-repeat fixed;
    }
}

/* Video loading state */
.hero-video[poster] {
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.70);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero-title .highlight {
    color: var(--contrast-color);
    display: inline-block;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--contrast-color);
    transform: scaleX(0);
    animation: underlineExpand 1s ease-out 1s forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.hero-offer {
    margin-bottom: 2rem;
    text-align: center;
}
.hero-offer-link {
    display: inline-block;
    padding: 10px 20px;
    background: #E60E14;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-offer-link:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    color: #fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
}

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

.hero-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--contrast-color), #d97706);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d97706, var(--contrast-color));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.02);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg-alt) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--gradient-primary);
    opacity: 0.05;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 10px;
}

.highlight-item:hover {
    transform: translateX(10px);
    background: rgba(16, 185, 129, 0.1);
}

.highlight-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.highlight-item:hover i {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.6);
    background: var(--gradient-accent);
}

.highlight-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.about-image {
    text-align: center;
}

.about-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(30, 58, 138, 0.05);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:hover .stat-number {
    transform: scale(1.15);
    background: var(--gradient-cool);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Packages Section */
.packages {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--light-bg-alt) 0%, var(--white) 100%);
    position: relative;
}

.packages::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--gradient-accent);
    opacity: 0.05;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

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

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    border: 2px solid transparent;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 15px;
}

.package-card:hover::before {
    opacity: 0.05;
}

.package-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
    border-color: var(--primary-light);
}

.package-card.featured {
    border: 3px solid;
    border-image: var(--gradient-warm) 1;
    animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
    }
}

.package-card.featured {
    border: 3px solid var(--contrast-color);
}

.package-image {
    position: relative;
    height: auto;
    overflow: hidden;
}

.package-img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1);
}

.package-card:hover .package-img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.1);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.popular-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--contrast-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.package-content {
    padding: 1.5rem;
}

.package-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.package-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.package-btn {
    width: 100%;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--white);
    text-decoration: none;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-bg-alt) 50%, var(--white) 100%);
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.review-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card:hover::before {
    opacity: 0.08;
    animation: rotate 3s linear infinite;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2);
    border-color: var(--accent-color);
}

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

.review-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--accent-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.review-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.review-card:hover .review-image {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--secondary-color);
}

.review-card:hover .review-image::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

.review-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-stars {
    color: var(--contrast-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.review-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.review-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg-alt) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: var(--gradient-cool);
    opacity: 0.08;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.6);
    background: var(--gradient-cool);
}

.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--secondary-color);
}

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

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 20s linear infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--contrast-color);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    background: var(--contrast-color);
    transform: translateY(-5px) rotate(5deg) scale(1.1);
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile / small screen */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .nav-menu {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: flex-end;
    }
    .nav-link {
        font-size: 0.9rem;
    }
    .logo-icon img {
        height: 60px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-features {
        grid-template-columns: 1fr;
    }
    
    .package-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}

/* Package Detail Pages */
.package-details {
    padding: 6rem 0 4rem;
    background: var(--light-bg);
}

.package-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.package-header .package-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-header .package-badge.ministry-approved {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.package-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.package-header .package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.package-header .package-price .currency {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.package-header .package-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--contrast-color);
}

/* Price Discount Display */
.price-discount {
    margin-bottom: 1rem;
}

/* March offer – prominent box on package details */
.package-march-offer-box {
    background: #fef2f2;
    border: 3px solid #E60E14;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    margin: 1.5rem 0;
    text-align: center;
}
.march-offer-box-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: #E60E14;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.package-march-offer-box .price-discount {
    margin-bottom: 0.75rem;
}
.package-march-offer-box .original-price {
    font-size: 1.2rem;
}
.package-march-offer-box .package-price .amount {
    font-size: 2rem;
}
.package-march-offer-box .total-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #E60E14;
}

/* Hero variant – on gradient background */
.package-march-offer-box--hero {
    background: rgba(255, 255, 255, 0.95);
    border-color: #E60E14;
    color: #1f2937;
}
.package-march-offer-box--hero .march-offer-box-heading {
    color: #E60E14;
}
.package-march-offer-box--hero .original-price {
    color: #374151;
}
.package-march-offer-box--hero .total-amount {
    color: #E60E14;
}

.original-price {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: #374151;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.discount-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

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

.package-content {
    max-width: 800px;
    margin: 0 auto;
}

.package-description {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    text-align: center;
}

.package-description p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.package-features, .package-benefits {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.package-features h3, .package-benefits h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.package-features ul, .package-benefits ul {
    list-style: none;
    padding: 0;
}

.package-features li, .package-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 1rem;
}

.package-features li:last-child, .package-benefits li:last-child {
    border-bottom: none;
}

.package-features li i, .package-benefits li i {
    color: var(--accent-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    font-size: 0.9rem;
}

.package-cta {
    text-align: center;
    margin-top: 3rem;
}

.package-cta .btn {
    margin: 0 0.5rem;
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* E-Learning Programs Grid */
.e-learning-programs {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.e-learning-programs h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.program-item:hover {
    background: rgba(16, 185, 129, 0.15);
    transform: translateX(5px);
    border-color: var(--accent-color);
}

.program-item i {
    color: var(--accent-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
}

.program-item span {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Package Content Grid */
.package-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-main-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: center;
}

.package-section {
    margin-bottom: 3rem;
}

.package-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-section h3 i {
    color: var(--accent-color);
    width: 24px;
}

.package-section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.package-features-list {
    list-style: none;
    padding: 0;
}

.package-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.package-features-list li i {
    color: var(--accent-color);
    width: 20px;
}

/* Package Sidebar */
.package-sidebar {
    position: sticky;
    top: 100px;
}

.package-card-sidebar {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.package-header-sidebar {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.package-header-sidebar h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.package-price-sidebar .currency {
    font-size: 1rem;
    color: var(--text-light);
}

.package-price-sidebar .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-summary {
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.summary-item i {
    color: var(--primary-color);
    width: 20px;
}

.package-guarantee {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.package-guarantee i {
    color: var(--accent-color);
}

/* Package Hero Section */
.package-hero {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 100px;
}

.package-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.package-hero-text {
    position: relative;
    z-index: 2;
}

.package-hero-text .package-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 10px 20px;
    background: var(--contrast-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.package-hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.package-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.package-hero-price {
    margin-bottom: 2rem;
}

.package-hero-price .currency {
    font-size: 1.5rem;
    opacity: 0.8;
}

.package-hero-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--contrast-color);
}

/* Package Hero Price Discount */
.package-hero-price .price-discount {
    margin-bottom: 1.5rem;
}

.package-hero-price .original-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.package-hero-price .discount-badge {
    display: inline-block;
    background: var(--contrast-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.package-hero-price .current-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.package-hero-price .price-note {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.package-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.package-hero-features .feature-item i {
    color: var(--contrast-color);
    width: 20px;
}

.package-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    min-height: 300px;
    overflow: visible;
}

.hero-car {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 4rem;
    color: var(--contrast-color);
    position: relative;
    z-index: 1;
}

.hero-car i {
    font-size: 4rem;
}

.floating-stats {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
    white-space: nowrap;
}

.stat-card .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--contrast-color);
    margin-bottom: 0.25rem;
}

.stat-card .stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    white-space: normal;
}

/* Responsive adjustments for package hero */
@media (max-width: 968px) {
    .package-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-hero-visual {
        min-height: 250px;
        margin-top: 2rem;
    }
    
    .floating-stats {
        position: relative;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .hero-car {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .hero-car i {
        font-size: 3rem;
    }
}

/* Registration Section */
.registration-section {
    padding: 5rem 0;
    background: var(--white);
}

.registration-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.registration-form-container {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-light);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--white);
    padding: 0 4px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: -8px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.license-upload-hint {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 1rem;
}

.form-group input[type="file"] {
    padding: 12px 15px;
    cursor: pointer;
}

.form-group input[type="file"]:focus + label,
.form-group input[type="file"]:valid + label {
    top: -8px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.package-confirmation {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
}

.package-confirmation h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.package-confirmation p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.package-price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.package-price-display .currency {
    font-size: 1rem;
    opacity: 0.8;
}

.package-price-display .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--contrast-color);
}

.registration-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card,
.contact-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.info-card h3,
.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-method:hover {
    color: var(--secondary-color);
}

.contact-method i {
    width: 20px;
}

/* Package Detail Responsive */
@media (max-width: 768px) {
    .package-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .package-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .registration-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .package-header h1 {
        font-size: 2.5rem;
    }
    
    .package-header .package-price .amount {
        font-size: 3rem;
    }
    
    .package-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-sidebar {
        position: static;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .package-hero-text h1 {
        font-size: 2rem;
    }
    
    .package-header h1 {
        font-size: 2rem;
    }
}

/* Private License Training Styles */
.package-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-image {
    height: 300px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    background: #f8f9fa;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    padding: 10px;
}

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

.package-content {
    padding: 30px;
}

.package-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.package-subtitle {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.package-price {
    margin-bottom: 25px;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    display: block;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-bg-alt) 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-light);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-method {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-method p {
    color: #666;
    margin-bottom: 5px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}
