/* Global Styles */
:root {
    --primary-color: #ff6600;
    /* Technical Orange as per request */
    --accent-blue: #007bff;
    --dark-bg: #111111;
    --darker-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* Mobile touch optimization */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

html,
body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
    /* Smooth scrolling with hardware acceleration */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
    /* Hardware acceleration */
    will-change: transform;
    transform: translateZ(0);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
    border: 2px solid var(--primary-color);
    overflow: visible;
    animation: neonGlowOrange 2.5s ease-in-out infinite;
}

.btn-primary:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
}

/* Mobile tap feedback */
.btn:active {
    transform: scale(0.98);
}

.btn-lg {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
/* Header styles removed (unused) */

.logo {
    height: 50px;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    /* Fallback */
    height: 100svh;
    /* Stable mobile height */
    /* Full viewport height */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/images/hero-bg.jpg');
    /* Sports cars garage background */
    background-size: cover;
    background-position: center;
    margin-top: 130px;
    /* Offset for countdown (60px) + header (70px) */
}

/* Overlay to darken image */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.badge-hero {
    background-color: var(--accent-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    /* Large impact */
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-dates {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--white);
}

.hero-dates i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Animation */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 68, 0, 0.1) 100%);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
    animation: urgency-shine 3s infinite;
}

@keyframes urgency-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.urgency-content>i {
    font-size: 2rem;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

.urgency-text {
    text-align: center;
}

.urgency-text strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    letter-spacing: 2px;
}

.urgency-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

.urgency-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 102, 0, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    overflow: visible;
    animation: neonGlowOrange 2.5s ease-in-out infinite;
}

.urgency-date i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.urgency-date span {
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}

/* Course Info */
.course-info {
    padding: 4rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.course-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border: 2px solid rgba(255, 102, 0, 0.2);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
    animation: neonGlowOrange 2.5s ease-in-out infinite;
    /* Hardware acceleration */
    will-change: transform;
    transform: translateZ(0);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
    transition: left 0.6s;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.3),
        0 0 20px rgba(255, 102, 0, 0.2);
}

.icon-accent {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.5));
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Learning Objectives / Dark Section */
.section-dark {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
    padding: 5rem 0;
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.objectives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.check-list li:hover {
    background: rgba(255, 102, 0, 0.05);
    transform: translateX(10px);
}

.check-list li i {
    color: #00ff88;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.6));
}

/* Authority / Instructor */
.authority {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.authority::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.authority-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.authority-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.instructor-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.3);
    transition: all 0.4s ease;
}

.instructor-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 102, 0, 0.5);
}

/* Fallback for placeholder if needed */
.instructor-placeholder {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: #555;
    border: 4px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.3);
}


.authority-text {
    flex: 2;
}

.instructor-name {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.instructor-title {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-style: italic;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 102, 0, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.credential-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.instructor-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.trust-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.4);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e65c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.trust-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.trust-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.trust-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.4),
        0 0 30px rgba(255, 102, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.8));
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Investment / Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid rgba(255, 102, 0, 0.3);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: neonGlowOrange 2.5s ease-in-out infinite;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.4),
        0 0 30px rgba(255, 102, 0, 0.2);
}

.recommended {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(40, 20, 10, 0.95) 0%, rgba(20, 10, 5, 0.95) 100%);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.3),
        0 0 20px rgba(255, 102, 0, 0.2);
}

.best-value-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 5px 0;
    text-transform: uppercase;
}

.card-header h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.msi-badge {
    background: var(--accent-blue);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

.price-comparison {
    margin: 1.5rem 0;
}

.price-regular {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.includes-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 102, 0, 0.3);
}

.includes-section h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: left;
}

.pricing-features li i.fa-check-circle {
    color: #00ff88;
}

/* Registration Form */
.registration {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    position: relative;
}

.registration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 102, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(255, 102, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.form-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 1rem;
    background-color: #000;
    border: 1px solid #444;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.payment-options {
    background-color: #000;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #444;
}

.payment-radio {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border-bottom: 1px solid #222;
    cursor: pointer;
    transition: background 0.2s;
}

.payment-radio:last-child {
    border-bottom: none;
}

.payment-radio:hover {
    background-color: #111;
}

.payment-radio input {
    margin-top: 5px;
    margin-right: 15px;
}

.radio-content {
    display: flex;
    flex-direction: column;
}

.radio-title {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.radio-desc {
    font-size: 0.9rem;
    color: #00ff88;
    /* Highlight savings */
}

.form-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.form-trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-trust-indicators i {
    color: #00ff88;
    font-size: 1rem;
}

/* Footer */
.site-footer {
    padding: 3rem 0;
    background-color: var(--darker-bg);
    text-align: center;
    border-top: 1px solid #222;
}

.footer-logo {
    margin: 2rem 0;
}

/* Social Media */
.social-media {
    margin: 2.5rem 0;
}

.social-title {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #222;
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

/* Individual social media colors on hover */
.social-icons a:nth-child(1):hover {
    /* Facebook */
    background-color: #1877f2;
    border-color: #1877f2;
    color: white;
}

.social-icons a:nth-child(2):hover {
    /* Instagram */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
    color: white;
}

.social-icons a:nth-child(3):hover {
    /* TikTok */
    background-color: #000000;
    border-color: #00f2ea;
    color: #00f2ea;
}

.social-icons a:nth-child(4):hover {
    /* WhatsApp */
    background-color: #25d366;
    border-color: #25d366;
    color: white;
}

.social-icons a:nth-child(5):hover {
    /* Telegram */
    background-color: #0088cc;
    border-color: #0088cc;
    color: white;
}

.social-icons a:nth-child(6):hover {
    /* YouTube */
    background-color: #ff0000;
    border-color: #ff0000;
    color: white;
}

.social-icons a:nth-child(7):hover {
    /* X (Twitter) */
    background-color: #000000;
    border-color: #ffffff;
    color: white;
}

.social-icons a:nth-child(8):hover {
    /* Snapchat */
    background-color: #fffc00;
    border-color: #fffc00;
    color: #000000;
}

.copyright {
    color: #555;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .authority-content {
        flex-direction: column;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 1.5rem;
        color: white;
    }

    .payment-option {
        padding: 1rem;
    }

    .payment-option h4 {
        font-size: 1rem;
    }

    .price {
        font-size: 2rem;
    }

    .price-detail {
        font-size: 0.85rem;
    }

    .discount-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Neon Glow Animations */
@keyframes neonGlowOrange {

    0%,
    100% {
        box-shadow:
            0 0 5px rgba(255, 102, 0, 0.4),
            0 0 10px rgba(255, 102, 0, 0.3),
            0 0 15px rgba(255, 102, 0, 0.2),
            0 0 20px rgba(255, 102, 0, 0.1);
    }

    50% {
        box-shadow:
            0 0 10px rgba(255, 102, 0, 0.6),
            0 0 20px rgba(255, 102, 0, 0.5),
            0 0 30px rgba(255, 102, 0, 0.4),
            0 0 40px rgba(255, 102, 0, 0.2);
    }
}

@keyframes neonGlowRed {

    0%,
    100% {
        box-shadow:
            0 0 5px rgba(255, 0, 0, 0.4),
            0 0 10px rgba(255, 0, 0, 0.3),
            0 0 15px rgba(255, 0, 0, 0.2),
            0 0 20px rgba(255, 0, 0, 0.1);
    }

    50% {
        box-shadow:
            0 0 10px rgba(255, 0, 0, 0.6),
            0 0 20px rgba(255, 0, 0, 0.5),
            0 0 30px rgba(255, 0, 0, 0.4),
            0 0 40px rgba(255, 0, 0, 0.2);
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.05), transparent);
    transition: left 0.6s;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
}

.faq-item h3 i {
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* Carousel Gallery */
.carousel-gallery {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    position: relative;
    overflow: hidden;
}

.carousel-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 102, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 102, 0, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 50%;
    aspect-ratio: 1/1;
    padding: 0.5rem;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 102, 0, 0.9);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.5);
}

.carousel-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.7);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.8);
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content-wrapper {
    position: relative;
    margin: auto;
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 10001;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

/* Image Protection */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: auto;
    /* Allow clicks */
    user-select: none;
    -webkit-user-select: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .authority-content {
        flex-direction: column;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 1.5rem;
        color: white;
    }

    .payment-option {
        padding: 1rem;
    }

    .payment-option h4 {
        font-size: 1rem;
    }

    .price {
        font-size: 2rem;
    }

    .price-detail {
        font-size: 0.85rem;
    }

    .discount-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    /* Mobile Gallery - Single Slide */
    .carousel-slide {
        min-width: 100%;
    }
}