* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d31312;
    --bg: #0b0b0b;
    --surface: #141414;
    --muted: #2d2d2d;
    --text: #fefefe;
    --accent: #590a0a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff4444);
    z-index: 10000;
    transition: width 0.1s ease;
}

/* Outer Frame */
.page-frame {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    margin-bottom: 20px;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 60px;
    background: url('background.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 11, 11, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 900px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(254, 254, 254, 0.9);
    margin-bottom: 30px;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--text);
    font-size: 24px;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
.section {
    background: var(--surface);
    border-radius: 32px;
    padding: 60px 40px;
    margin-bottom: 40px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
    z-index: 2;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up {
    transform: translateY(50px);
}

.fade-in-down {
    transform: translateY(-50px);
}

.fade-in-left {
    transform: translateX(-50px);
}

.fade-in-right {
    transform: translateX(50px);
}

.fade-in-scale {
    transform: scale(0.8);
}

.fade-in-rotate {
    transform: rotate(-5deg) scale(0.9);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate(0) scale(1) rotate(0);
}

/* Staggered Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }
.stagger-9 { transition-delay: 0.9s; }

/* Additional Animation Effects */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Smooth reveal for FAQ items */
.faq-item {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* CTA Button animations */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    animation: pulse 0.6s ease-in-out;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    color: var(--primary);
}

.section-subtitle {
    display: block;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.9;
    line-height: 1.5;
}

/* Video Section */
.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 32px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(211, 19, 18, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 50px rgba(211, 19, 18, 0.4);
}

.video-thumbnail {
    width: 100%;
    height: 450px;
    background: url('background.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 11, 11, 0.5);
    z-index: 1;
}

.play-button {
    width: 100px;
    height: 100px;
    background: rgba(211, 19, 18, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 30px solid white;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 6px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-container:hover .play-button {
    transform: scale(1.15);
    background: rgba(211, 19, 18, 1);
    box-shadow: 0 12px 32px rgba(211, 19, 18, 0.5);
}

.video-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px auto 0;
    max-width: 1200px;
}

.video-point-card {
    background: var(--surface);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(211, 19, 18, 0.12);
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
    text-align: center;
}

.video-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(211, 19, 18, 0.25), 0 0 0 1px rgba(211, 19, 18, 0.2);
    filter: brightness(1.05);
}

.video-point-card i {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.video-point-card p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin: 0;
    line-height: 1.5;
}

/* Mission & Vision Cards */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-card, .vision-card {
    background: var(--muted);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.mission-card h3, .vision-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Marketing Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.package-card {
    background: var(--surface);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 0 1px rgba(211, 19, 18, 0.12), 0 12px 28px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(211, 19, 18, 0.35), 0 16px 40px rgba(0, 0, 0, 0.5);
    filter: brightness(1.1);
}

.package-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.package-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text);
}

.package-card ul {
    list-style: none;
    padding-left: 0;
}

.package-card ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(254, 254, 254, 0.8);
}

.package-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.price-chip {
    text-align: center;
    margin: 50px 0 40px;
    cursor: pointer;
}

.price-chip .price {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #ff4444);
    padding: 30px 60px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(211, 19, 18, 0.4);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.price-chip .price::before {
    content: 'Click to reveal';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 4;
    transition: opacity 0.4s ease;
}

.price-chip.revealed .price::before {
    opacity: 0;
}

.price-chip .price::after {
    content: '🎁';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    z-index: 2;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.price-chip .price-text {
    position: relative;
    z-index: 3;
    filter: blur(8px);
    user-select: none;
    transition: filter 0.4s ease, opacity 0.4s ease;
    opacity: 0.3;
}

.price-chip.revealed .price-text {
    filter: blur(0);
    opacity: 1;
}

.price-chip.revealed .price::after {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
}

.price-chip .price:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(211, 19, 18, 0.5);
}

.price-chip .price:active {
    transform: scale(0.98);
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--muted);
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(211, 19, 18, 0.1);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: rgba(254, 254, 254, 0.8);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Swiper Styles - Matching Website Colors */
.certificates-swiper-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.certificates-swiper {
    flex: 1;
    padding-bottom: 40px;
}

.videos-swiper {
    max-width: 420px;
    margin: 40px auto 0;
    padding-bottom: 40px;
}

.videos-swiper .swiper-slide video {
    width: 100%;
    max-height: 50vh;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

/* Navigation Buttons */
.certificates-swiper-container .swiper-button-next,
.certificates-swiper-container .swiper-button-prev {
    position: relative;
    margin: 0;
    flex-shrink: 0;
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    left: auto;
    right: auto;
    top: auto;
}

.videos-swiper .swiper-button-next,
.videos-swiper .swiper-button-prev {
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.certificates-swiper-container .swiper-button-next:after,
.certificates-swiper-container .swiper-button-prev:after,
.videos-swiper .swiper-button-next:after,
.videos-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.certificates-swiper-container .swiper-button-next:hover,
.certificates-swiper-container .swiper-button-prev:hover,
.videos-swiper .swiper-button-next:hover,
.videos-swiper .swiper-button-prev:hover {
    background: #ff4444;
    transform: scale(1.1);
}

/* Pagination Dots */
.certificates-swiper .swiper-pagination,
.videos-swiper .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.certificates-swiper .swiper-pagination-bullet,
.videos-swiper .swiper-pagination-bullet {
    background: rgba(254, 254, 254, 0.3);
    opacity: 1;
    width: 12px;
    height: 12px;
}

.certificates-swiper .swiper-pagination-bullet-active,
.videos-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .certificates-swiper-container {
        gap: 10px;
    }

    .certificates-swiper-container .swiper-button-next,
    .certificates-swiper-container .swiper-button-prev,
    .videos-swiper .swiper-button-next,
    .videos-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .certificates-swiper-container .swiper-button-next:after,
    .certificates-swiper-container .swiper-button-prev:after,
    .videos-swiper .swiper-button-next:after,
    .videos-swiper .swiper-button-prev:after {
        font-size: 16px;
    }

    .certificates-swiper .swiper-pagination,
    .videos-swiper .swiper-pagination {
        margin-top: 25px;
    }
}



.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(254, 254, 254, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* Licensed Badge */
.licensed-section {
    text-align: center;
    padding: 28px;
    background: var(--muted);
    border-radius: 28px;
    margin: 40px 0;
}

.licensed-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary);
}

.licensed-section p {
    font-size: 15px;
    margin-bottom: 16px;
}

.licensed-cert-wrap {
    max-width: 300px;
    margin: 16px auto;
    text-align: center;
}

.licensed-cert-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 3px solid #d31312;
}

.license-badge {
    display: inline-block;
    padding: 15px 30px;
    background: var(--surface);
    border-radius: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Team & Certificates Slider */
.certificates-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.certificates-slider-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.certificates-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.certificate-slide {
    min-width: calc(33.333% - 20px);
    flex-shrink: 0;
}

.certificates-slider-container .slider-btn {
    flex-shrink: 0;
    background: var(--primary);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.certificates-slider-container .slider-btn:hover {
    background: #ff4444;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .certificate-slide {
        min-width: calc(50% - 15px);
    }

    .certificates-slider-container {
        gap: 10px;
    }

    .certificates-slider-container .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .certificate-slide {
        min-width: 100%;
    }
}

.team-certificates {
    display: flex;
    gap: 30px;
}

.team-member, .certificate {
    background: var(--muted);
    padding: 30px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ff4444);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

.cert-logo, .certificate img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    object-fit: contain;
}

/* Final CTA */
.cta-section {
    text-align: center;
    padding: 60px 40px;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(254, 254, 254, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ff4444);
    color: white;
    box-shadow: 0 8px 24px rgba(211, 19, 18, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(211, 19, 18, 0.5);
}

.btn-secondary {
    background: var(--muted);
    color: var(--text);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(211, 19, 18, 0.1);
}

.contact-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-info a {
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary), #ff4444);
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(211, 19, 18, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(211, 19, 18, 0.5);
}

/* Footer */
footer {
    background: var(--surface);
    border-radius: 32px;
    padding: 60px 40px 30px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(254, 254, 254, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: background 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--muted);
    color: rgba(254, 254, 254, 0.6);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--surface);
    border-radius: 32px;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.modal-close:hover {
    background: var(--muted);
}

/* Lock body scroll when video modal is open */
body.video-modal-open {
    overflow: hidden;
}

.video-modal .modal-content {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    padding: 0;
    background: black;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    position: relative;
}

.video-modal .modal-close {
    position: absolute;
    z-index: 20;
    top: 20px;
    right: 20px;
}

.video-modal .modal-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border-radius: 12px;
    border: 2px solid var(--muted);
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

#formMessage {
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-frame {
        padding: 10px;
    }

    nav {
        padding: 0 20px;
    }

    .logo img {
        height: 32px;
    }

    .footer-logo img {
        height: 30px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        margin-top: 10px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        height: 80vh;
    }

    .section {
        padding: 40px 20px;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .video-points {
        grid-template-columns: 1fr;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-points {
        grid-template-columns: repeat(2, 1fr);
    }
}
