/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.fw-black {
    font-weight: 900;
}

/* Colors */
.text-orange {
    color: #f97316;
}

.text-teal {
    color: #0d9488;
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.bg-gradient-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.navbar-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 0.5px;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0.25rem;
    position: relative;
    transform: scale(1);
}

.nav-btn:hover {
    transform: scale(1.05);
}

.nav-btn.active {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.navbar-nav .nav-item:nth-child(2) .nav-btn.active {
    background: linear-gradient(135deg, #0d9488, #0f766e);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.navbar-nav .nav-item:nth-child(3) .nav-btn.active {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.custom-toggler {
    background: linear-gradient(135deg, #f97316, #eab308);
    border: none;
    border-radius: 50px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.custom-toggler:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fef3e2, #fef3c7, #f0fdfa);
    padding: 5rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.hero-text .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #374151;
}

.hero-highlight {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.hero-image-container {
    position: relative;
}

.image-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 1rem;
    transform: rotate(3deg);
    opacity: 0.2;
}

.hero-image {
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    filter: contrast(1.1) brightness(1.05);
}

.signup-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid #fed7aa;
    border-radius: 1rem;
}

.signup-btn {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border: none;
    font-weight: 600;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Golden Ticket Section */
.golden-ticket-section {
    background: linear-gradient(135deg, #fef3c7, #fed7aa, #fde68a);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.decorative-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.decoration {
    position: absolute;
    font-size: 4rem;
}

.decoration-1 {
    top: 2rem;
    left: 2rem;
    animation: pulse 2s infinite;
}

.decoration-2 {
    top: 5rem;
    right: 5rem;
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

.decoration-3 {
    bottom: 2rem;
    left: 25%;
    font-size: 3rem;
    animation: pulse 2s infinite;
}

.decoration-4 {
    bottom: 5rem;
    right: 2rem;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.golden-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    letter-spacing: 0.05em;
}

.sparkle {
    font-size: 1.75rem;
}

.golden-title {
    font-size: 4rem;
    font-weight: 900;
    color: #1f2937;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.golden-description {
    font-size: 1.25rem;
    color: #374151;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.highlight-orange {
    font-weight: 900;
    color: #ea580c;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(234, 88, 12, 0.3);
}

.highlight-yellow {
    font-weight: 900;
    color: #d97706;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(217, 119, 6, 0.3);
}

.guarantee-text {
    font-weight: 900;
    color: #1d4ed8;
    font-size: 1.25rem;
    text-shadow: 2px 2px 4px rgba(29, 78, 216, 0.3);
    margin-top: 1rem;
    display: block;
}

.golden-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid #fbbf24;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 28rem;
}

.parrot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.parrot-emoji {
    font-size: 4rem;
    display: inline-block;
}

.parrot-dance {
    animation: parrotBounce 2s ease-in-out infinite;
}

.parrot-dance:nth-child(1) {
    animation-delay: 0s;
}

.parrot-dance:nth-child(2) {
    animation-delay: 0.3s;
}

.parrot-dance:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes parrotBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    40% {
        transform: translateY(-20px) rotate(-5deg);
    }
    60% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.parrot-spin {
    animation: parrotSpin 1.5s linear infinite;
}

.parrot-spin:nth-child(1) {
    animation-delay: 0s;
}

.parrot-spin:nth-child(2) {
    animation-delay: 0.2s;
}

.parrot-spin:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes parrotSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        transform: rotate(180deg) scale(1);
    }
    75% {
        transform: rotate(270deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.ticket-instruction {
    font-size: 1.125rem;
    color: #374151;
    font-weight: 600;
}

.btn-gradient {
    background: linear-gradient(135deg, #eab308, #f97316);
    border: none;
    color: white;
    font-weight: 900;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4);
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #d97706, #ea580c);
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(234, 179, 8, 0.6);
}

.btn-gradient:disabled {
    opacity: 0.7;
    transform: none;
}

.try-luck-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-icon {
    font-size: 1.25rem;
}

.attempt-info .alert {
    border: 2px solid #3b82f6;
    background: #dbeafe;
    color: #1e40af;
}

.second-chance .alert {
    border: 2px solid #fbbf24;
    background: #fef3c7;
    color: #92400e;
}

.winner-trophy {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.winner-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1f2937;
}

.winner-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 600;
}

/* Golden Ticket Modal */
.golden-ticket-modal .modal-content {
    background: transparent;
    border: none;
}

.golden-ticket-content {
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 25%, #ffff00 50%, #ffd700 75%, #ffa500 100%);
    border: 4px solid #b8860b;
    border-radius: 15px;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: goldenGlow 3s ease-in-out infinite alternate;
}

.golden-ticket-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: goldenShine 4s ease-in-out infinite;
}

@keyframes goldenGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.8),
            inset 0 0 20px rgba(255, 255, 255, 0.3),
            0 8px 32px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 
            0 0 50px rgba(255, 215, 0, 1),
            inset 0 0 30px rgba(255, 255, 255, 0.5),
            0 12px 40px rgba(0, 0, 0, 0.4);
    }
}

@keyframes goldenShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

.golden-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 0.8;
}

.golden-ornaments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ornament {
    color: #b8860b;
    font-size: 2rem;
    animation: ornamentPulse 2s ease-in-out infinite;
}

@keyframes ornamentPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.golden-title {
    color: #000000;
    text-shadow: 
        2px 2px 4px rgba(255, 215, 0, 0.8),
        0 0 15px rgba(255, 255, 255, 0.6),
        1px 1px 3px rgba(184, 134, 11, 0.7);
    font-weight: 900;
    letter-spacing: 1.5px;
    font-size: 2.5rem;
}

.golden-ticket-icon {
    font-size: 4rem;
    margin: 1rem 0;
}

.winner-badge {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #000000;
    border: 2px solid #b8860b;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    font-weight: 800;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
}

.congratulations-section {
    border: 3px solid #b8860b;
    border-radius: 8px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.2));
    padding: 1.5rem;
}

.congrats-title {
    color: #000000;
    text-shadow: 
        2px 2px 4px rgba(255, 215, 0, 0.8),
        0 0 15px rgba(255, 255, 255, 0.6);
    font-weight: 900;
    font-size: 2rem;
}

.prize-text, .prize-main, .prize-with {
    color: #000000;
    text-shadow: 
        2px 2px 4px rgba(255, 215, 0, 0.8),
        0 0 15px rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

.prize-main {
    font-size: 1.5rem;
    font-weight: 900;
}

.prize-details {
    border: 3px solid #b8860b;
    border-radius: 8px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.2));
    padding: 1.5rem;
}

.details-title {
    color: #000000;
    text-shadow: 
        2px 2px 4px rgba(255, 215, 0, 0.8),
        0 0 15px rgba(255, 255, 255, 0.6);
    font-weight: 900;
}

.prize-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
}

.prize-icon {
    font-size: 1.5rem;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.8);
}

.prize-item strong {
    color: #000000;
    text-shadow: 
        2px 2px 4px rgba(255, 215, 0, 0.8),
        0 0 15px rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

.prize-item small {
    color: #000000;
    text-shadow: 1px 1px 2px rgba(255, 215, 0, 0.6);
    font-weight: 500;
    display: block;
}

.value-section {
    border: 3px solid #b8860b;
    border-radius: 8px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.2));
    padding: 1rem;
    text-align: center;
}

.value-text {
    color: #000000;
    text-shadow: 
        2px 2px 4px rgba(255, 215, 0, 0.8),
        0 0 15px rgba(255, 255, 255, 0.6);
    font-weight: 900;
    font-size: 1.125rem;
}

.rarity-text {
    color: #000000;
    text-shadow: 1px 1px 2px rgba(255, 215, 0, 0.6);
    font-weight: 600;
}

.btn-golden {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #000000;
    border: 2px solid #b8860b;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-golden:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Loading Animation */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #eab308;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

.spinning-text {
    font-size: 1.25rem;
    font-weight: 900;
    color: #1f2937;
}

/* Learning Paths Section */
.learning-paths {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    position: relative;
    overflow: hidden;
}

.path-bg-decorations {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.path-decoration {
    position: absolute;
    font-size: 5rem;
}

.path-decoration-1 {
    top: 5rem;
    left: 5rem;
}

.path-decoration-2 {
    bottom: 5rem;
    right: 5rem;
    font-size: 4rem;
}

.path-decoration-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-icon {
    font-size: 1.125rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
}

.gradient-text {
    background: linear-gradient(135deg, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.learning-card {
    border: none;
    border-radius: 1rem;
    transition: all 0.5s ease;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}

.learning-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.learning-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(0,0,0,0.02));
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.hatchlings-card {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.hatchlings-card:hover {
    background: linear-gradient(135deg, #fde68a, #fbbf24);
}

.fledglings-card {
    background: linear-gradient(135deg, #dbeafe, #c7d2fe);
    transform: scale(1.05);
}

.fledglings-card:hover {
    background: linear-gradient(135deg, #bfdbfe, #a5b4fc);
}

.wingmasters-card {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.wingmasters-card:hover {
    background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
}

.popular-card {
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 50px 50px;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 2;
}

.learning-icon {
    margin-bottom: 1rem;
}

.icon-circle {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.icon-circle:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.hatchlings-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.fledglings-icon {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.wingmasters-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.hatchlings-card .card-title {
    color: #92400e;
}

.fledglings-card .card-title {
    color: #1e40af;
}

.wingmasters-card .card-title {
    color: #065f46;
}

.level-badge {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.hatchlings-badge {
    background: #fde68a;
    color: #92400e;
}

.fledglings-badge {
    background: #bfdbfe;
    color: #1e40af;
}

.wingmasters-badge {
    background: #a7f3d0;
    color: #065f46;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.trophy-icon {
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: currentColor;
}

.hatchlings-card .feature-list li::before {
    background: #f59e0b;
}

.fledglings-card .feature-list li::before {
    background: #3b82f6;
}

.wingmasters-card .feature-list li::before {
    background: #10b981;
}

.btn-hatchlings {
    background: linear-gradient(135deg, #eab308, #f97316);
    border: none;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-hatchlings:hover {
    background: linear-gradient(135deg, #d97706, #ea580c);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(234, 179, 8, 0.6);
}

.btn-fledglings {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-fledglings:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.btn-wingmasters {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-wingmasters:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-outline-hatchlings {
    border: 2px solid #eab308;
    color: #92400e;
    background: transparent;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline-hatchlings:hover {
    background: #fef3c7;
    color: #92400e;
}

.btn-outline-fledglings {
    border: 2px solid #3b82f6;
    color: #1e40af;
    background: transparent;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline-fledglings:hover {
    background: #dbeafe;
    color: #1e40af;
}

.btn-outline-wingmasters {
    border: 2px solid #10b981;
    color: #065f46;
    background: transparent;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline-wingmasters:hover {
    background: #d1fae5;
    color: #065f46;
}

.arrow-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn:hover .arrow-icon {
    transform: translateX(0.25rem);
}

.book-icon {
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #e5e7eb;
}

.footer-logo {
    height: 3.5rem;
    width: auto;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 0;
    line-height: 1.6;
}

.footer-title {
    color: #f59e0b;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
}

.contact-icon {
    font-size: 1rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.5rem;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.youtube:hover {
    background: #cc0000;
    transform: scale(1.1);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.instagram:hover {
    transform: scale(1.1);
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.twitter:hover {
    background: #0d8bd9;
    transform: scale(1.1);
}

.social-note {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-divider {
    border-color: #374151;
    margin: 2rem 0;
}

.footer-bottom {
    color: #9ca3af;
}

/* Modal Styles */
.hatchlings-modal .modal-content {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border: 4px solid #fbbf24;
}

.program-emoji {
    font-size: 2.5rem;
}

.program-level-badge {
    background: #fde68a;
    color: #92400e;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
}

.hatchlings-level {
    background: #fde68a;
    color: #92400e;
}

.program-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.hatchlings-features {
    border-color: #fbbf24;
}

.hatchlings-included {
    border-color: #f97316;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hatchlings-features .feature-title {
    color: #92400e;
}

.hatchlings-included .feature-title {
    color: #ea580c;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #374151;
}

.feature-list li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: currentColor;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.hatchlings-features .feature-list li::before {
    background: #eab308;
}

.hatchlings-included .feature-list li::before {
    background: #f97316;
}

.signup-form-modal {
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #fde68a;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .golden-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .parrot-emoji {
        font-size: 3rem;
    }
    
    .golden-ticket-icon {
        font-size: 3rem;
    }
    
    .fledglings-card {
        transform: none;
    }
    
    .golden-title {
        font-size: 2rem;
    }
    
    .congrats-title {
        font-size: 1.5rem;
    }
    
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-xl {
        max-width: 95vw;
    }
    
    .golden-ticket-content {
        margin: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .golden-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .navbar-brand-text {
        font-size: 1.25rem;
    }
    
    .btn-gradient {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .prize-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .golden-badge {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
}

/* Utility Classes */
.animation-delay-1 {
    animation-delay: 0.1s;
}

.animation-delay-2 {
    animation-delay: 0.2s;
}

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

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .modal,
    .btn {
        display: none !important;
    }
    
    .golden-ticket-section {
        background: white !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}