/* index.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;            
}

a {
    text-decoration: none;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(196, 160, 82, 0.2);
    border-top: 4px solid #c4a052;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    color: #c4a052;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Prevent scrolling while loading */
body.loading {
    overflow: hidden;
}

.socials{
    position: relative;
    margin-left: 15px;
    top: 2px;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 30px;
    right: 0;
    /* float: right; */
    background-color: rgb(255 255 255 / 23%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(196, 160, 82, 0.2);
    padding: 0 20px;
    
}

.navbar.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000000d4;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(196, 160, 82, 0.2);
    padding: unset;          
}


.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: end;
    align-items: center;
    height: 80px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c4a052;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #c4a052;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #c4a052 0%, #a68942 100%);
    color: #0a0a0a;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 160, 82, 0.4);
}

.nav-cta:hover::after {
    width: 0;
}

.menu-fa {
    font-size: 28px;
    color: #c4a052;
    padding-right: 20px;            
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #c4a052;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-video-link {
    display: block;
    position: absolute;
    top: 120px;
    left: unset;
    right:10px;
    width: fit-content;
    text-align: center;
    justify-self: end;
    z-index: 999;
    /* padding: 0px 0; */
    /* background: rgba(0, 0, 0, 0.8); */
    backdrop-filter: blur(10px);
    border-bottom: 0.125rem solid rgba(196, 160, 82, 0.2);
}

@media (max-width: 749px) {
    .mobile-video-link {
        top: 70px;
        left: unset;        
    }
}

.mobile-video-link a {
    color: #c4a052;
    font-size: 0.9rem;
    font-weight: 600;    
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.mobile-video-link a:hover {
    color: #d4b062;
}


/* Video Modal */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal {
    position: relative;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal-overlay.active .video-modal {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(196, 160, 82, 0.3);
    border: 1px solid rgba(196, 160, 82, 0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 24px;
    color: #c4a052;
    z-index: 100001;
}

.video-modal-close:hover {
    background: rgba(196, 160, 82, 0.5);
    transform: rotate(90deg);
}

.video-modal-content {
    width: 100%;
    height: auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(196, 160, 82, 0.3);
}

.video-modal-content video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 85vh;
    object-fit: contain; /* Maintains aspect ratio without cropping */
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .video-modal {
        width: 95%;
        max-width: none;
    }
    
    .video-modal-close {
        top: -45px;
        width: 35px;
        height: 35px;
        font-size: 22px;
    }
}

/* Landscape mobile - make video wider */
@media (max-width: 768px) and (orientation: landscape) {
    .video-modal {
        max-width: 70%;
    }
    
    .video-modal-content video {
        max-height: 75vh;
    }
}

/* Hero Section - DARK */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end; /* Changed from center to flex-end */
    justify-content: center;
    text-align: center;
    padding: 60px 20px 80px; /* Added more bottom padding */
    position: relative;
    overflow: hidden;
    background-color: #0a0a0a;
}

/* Video background styling */
/* Video background styling - Desktop (landscape) */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%); /* Shift up for desktop to show heads */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
    opacity: 0.90;
}

/* Optimize for portrait orientation (mobile) */
@media (orientation: portrait) {
    .hero-video {
        transform: translate(-50%, -50%); /* Center normally - video fits naturally */
        min-width: 100%;
        width: 100%;
        height: 100%;
    }
}

/* Optimize for landscape orientation (desktop/tablets) */
@media (orientation: landscape) {
    .hero-video {
        transform: translate(-50%, -40%); /* Keep shifted up */
        min-width: 100%;
        min-height: 100%;
    }
}

/* Fine-tune for very wide screens */
@media (orientation: landscape) and (min-width: 1400px) {
    .hero-video {
        transform: translate(-62%, -46%);
        scale: 0.8;
    }
}

/* Mobile portrait - ensure full coverage */
@media (max-width: 768px) and (orientation: portrait) {
    .hero-video {
        transform: translate(-50%, -50%);
        width: 100%;
        height: auto;
        min-height: 100%;
    }
}

.hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initial state - hidden before animation */
.hero h1,
.hero h2,
.hero p,
.hero .cta-button {
    opacity: 0;
    animation: fadeInDown 1s ease-out forwards;
}


.hero h1 {
    font-size: clamp(1.5rem, 4.5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    animation-delay: 2s; /* First element */
}

.hero h2 {
    font-size: clamp(0.95rem, 2.5vw, 1.4rem); 
    color: #c4a052;
    font-weight: 400;
    margin-bottom: 10px; 
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation-delay: 3s; /* +0.3s delay */
}

.hero p {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto 10px;
    line-height: 1.3;
    animation-delay: 3.5s;
}

.hero .cta-button {
    animation-delay: 4s; /* +0.3s delay */
}

@media (prefers-reduced-motion: reduce) {
    .hero h1,
    .hero h2,
    .hero p,
    .hero .cta-button {
        animation: none;
        opacity: 1;
        transform: none;
    }
}


a.cta-button.main {
    width: 420px;
    max-width: 100%; 
}

@media (max-width: 640px) {
    .hero {
        padding: 40px 15px 60px; 
        min-height: 90vh;
    }
    
    a.cta-button.main {
        width: 100%;
    }
}

.cta-button {
    display: flex;
    padding: 20px 50px;
    background: linear-gradient(135deg, #c4a052 0%, #a68942 100%);
    color: #0a0a0a;
    text-decoration: none;
    /* font-size: 1.2rem; */
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(196, 160, 82, 0.3);
    cursor: pointer;
    border: none;
    margin: 0 auto;
    justify-content: center;
    max-width: 550px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 160, 82, 0.5);
    background: linear-gradient(135deg, #d4b062 0%, #b69952 100%);
}

.section-light .cta-button {
    box-shadow: 0 10px 30px rgba(196, 160, 82, 0.4);
}

.section-light .cta-button:hover {
    box-shadow: 0 15px 40px rgba(196, 160, 82, 0.6);
}

/* Section Styles */
.section {
    padding: 100px 0;
    width: 100%;
    position: relative;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Light Section */
.section-light {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: #1a1a1a;
    width: 100%;
}

.section-light .section-title {
    color: #1a1a1a;
}

.section-light .section-subtitle {
    color: #4a4a4a;
}

.section-light .about-content p {
    color: #3a3a3a;
}

/* Dark Section */
.section-dark {
    background-color: #0a0a0a;
    color: #e0e0e0;
    overflow: hidden;
    width: 100%;
}

.section-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.20;
    z-index: 0;
}

.section-dark > * {
    position: relative;
    z-index: 1;
}

.section-dark .about-grid,
.section-dark .benefits-grid,
.section-dark .faq-container {
    position: relative;
    z-index: 1;
}

.section-dark.faq-section::before {
    background-image: url('../images/lion.webp');
    opacity: 0.8; /* Start with higher opacity */
    transition: opacity 5s ease-out;
}

.section-dark.faq-section.in-view::before {
    opacity: 0.40; /* Animate to default opacity */
}

.faq-container {
    opacity: 0;
    transform: translateY(-50px);
    transition: none; 
}

.faq-section.in-view .faq-container {
    animation: fadeInDown 1s ease-out forwards;
    animation-delay: 0.8s; 
}

.faq-section .section-title {
    opacity: 1;
    transform: none;
}

/* Achievements Section - Initial state with higher opacity background */
.section-dark.achievements-section::before {
    background-image: url('../images/seminar2.jpg');
    opacity: 0.8; /* Start with higher opacity */
    transition: opacity 5s ease-out;
}

/* When section is in view, reduce opacity */
.section-dark.achievements-section.in-view::before {
    opacity: 0.20; /* Animate to default opacity */
}

/* Achievements Container - Initially hidden */
.achievements {
    opacity: 0;
    transform: translateY(-50px);
    transition: none;
}

/* Achievements Container - Animate when in view */
.achievements-section.in-view .achievements {
    animation: fadeInDown 1s ease-out forwards;
    animation-delay: 0.8s; /* Small delay after background starts */
}

/* Ensure title and subtitle are visible from start */
.achievements-section .section-title,
.achievements-section .section-subtitle {
    opacity: 1;
    transform: none;
}

.section-dark .section-title {
    color: #ffffff;
}

.section-dark .section-subtitle {
    color: #b0b0b0;
}

/* Specific dark section backgrounds */
.section-dark.achievements-section::before {
    background-image: url('../images/seminar2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 51%;
    background-position-y: 6%;
}

.section-dark.faq-section::before {
    background-image: url('../images/lion.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 30%;
    background-position-y: 36%;    
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #b0b0b0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.no-margin{
    margin:unset !important;
}

p.seats-left {
    color: red;
    font-size: 14px;
    text-align: center;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-image {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.section-light .about-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 20px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #c0c0c0;
}

/* What You'll Achieve */
.achievements {
    background: linear-gradient(-22deg, rgb(255 255 255 / 35%) 0%, rgb(0 0 0 / 100%) 100%);
border-radius: 20px;
padding: 60px 40px;
margin: 60px 0;
}

.section-light .achievements {
    background: linear-gradient(135deg, rgba(196, 160, 82, 0.2) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 1px solid rgba(196, 160, 82, 0.3);
}

.section-light .achievement-list li {
    color: #2a2a2a;
    border-bottom: 1px solid rgba(196, 160, 82, 0.3);
}

.achievement-list {
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
}

.achievement-list li {
    padding: 25px 0;
    border-bottom: 1px solid rgba(196, 160, 82, 0.2);
    font-size: 1.15rem;
    position: relative;
    padding-left: 50px;
    line-height: 1.7;
    color: #d0d0d0;
}

.achievement-list li:last-child {
    border-bottom: none;
}

.achievement-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c4a052;
    font-size: 2rem;
    font-weight: bold;
}

.quote {
    text-align: center;
    font-size: 1.4rem;
    font-style: italic;
    color: #c4a052;
    margin: 60px 0;
    padding: 40px 20px;
    border-left: 4px solid #c4a052;
    background: rgba(196, 160, 82, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-light .quote {
    background: rgba(196, 160, 82, 0.15);
    border-left: 4px solid #a68942;
    color: #8a7342;
}

.section-light .quote-author {
    color: #6a6a6a;
}

.quote-author {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    color: #b0b0b0;
    font-style: normal;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: rgba(196, 160, 82, 0.05);
    border: 1px solid rgba(196, 160, 82, 0.2);
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s ease;
}

.section-dark .benefit-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(196, 160, 82, 0.3);
}

.section-dark .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 160, 82, 0.2);
    border-color: #c4a052;
    background: rgba(30, 30, 30, 0.9);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 160, 82, 0.2);
    border-color: #c4a052;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    color: #c4a052;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #c0c0c0;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    width: 100%;
}

.testimonials .section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-light .testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(196, 160, 82, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.section-light .testimonial-card h4 {
    color: #1a1a1a;
}

.section-light .testimonial-card p {
    color: #4a4a4a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1270px;
    margin: 60px auto 0;
}

.testimonial-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(196, 160, 82, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #c4a052;
}

.stars {
    color: #c4a052;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #c0c0c0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(196, 160, 82, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-dark .faq-item {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(196, 160, 82, 0.3);
}

.section-dark .faq-item:hover {
    border-color: rgba(196, 160, 82, 0.5);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #c4a052;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #c4a052;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #c0c0c0;
    line-height: 1.8;
    font-size: 1rem;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #e5e5e5 100%);
    padding: 100px 0;
    width: 100%;
}

.form-section .section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-section .section-title {
    color: #1a1a1a;
}

.form-section .section-subtitle {
    color: #4a4a4a;
}

.form-container {
    max-width: 600px;
    margin: 60px auto 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid rgba(196, 160, 82, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Public Seminar Details */
.seminar-details-public {
    margin-bottom: 40px;
}

.detail-box {
    background: rgba(196, 160, 82, 0.08);
    border-left: 4px solid #c4a052;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-box:hover {
    background: rgba(196, 160, 82, 0.12);
    transform: translateX(5px);
}

.detail-label {
    color: #c4a052;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.detail-value {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.detail-subvalue {
    color: #666;
    font-size: 0.95rem;
    margin-top: 5px;
}

.detail-highlight {
    color: #2a7d2e;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 8px;
}

.discount-badge-small {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.payment-method-badge {
    display: inline-block;
    background: rgba(196, 160, 82, 0.15);
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(196, 160, 82, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #c4a052;
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(196, 160, 82, 0.4);
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #c4a052;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(196, 160, 82, 0.1);
}

.trust-note {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    margin-top: 20px;
}

.privacy-link {
    color: #c4a052;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #d4b062;
}

.hidden {
    display: none;
}

/* Modal/Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid rgba(196, 160, 82, 0.4);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: rgba(196, 160, 82, 0.2);
    border: 1px solid rgba(196, 160, 82, 0.4);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #c4a052;
}

.modal-close:hover {
    background: rgba(196, 160, 82, 0.3);
    transform: rotate(90deg);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.modal-icon.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(56, 142, 60, 0.2) 100%);
    border: 2px solid rgba(76, 175, 80, 0.5);
    color: #4caf50;
    animation: successPulse 2s ease-in-out infinite;
}

.modal-icon.error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2) 0%, rgba(211, 47, 47, 0.2) 100%);
    border: 2px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
    animation: errorShake 0.5s ease-in-out;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.modal-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.modal-message {
    font-size: 1.1rem;
    color: #c0c0c0;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 35px;
}

.modal-button {
    display: block;
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #c4a052 0%, #a68942 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(196, 160, 82, 0.3);
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 160, 82, 0.5);
    background: linear-gradient(135deg, #d4b062 0%, #b69952 100%);
}

/* Footer */
footer {
    background: #000000;
    padding: 40px 20px;
    border-top: 1px solid rgba(196, 160, 82, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

footer p {
    color: #888;
    margin: 0;
    text-align: center;
}

.back-to-top {
    position: absolute;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(196, 160, 82, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .back-to-top {
        position: absolute;
        bottom: 95px;
        right: unset;      
    }
}

.back-to-top:hover {
    background: rgba(212, 176, 98, 1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 160, 82, 0.4);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    color: #0a0a0a;
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    footer {
        padding: 30px 20px;
    }

    .modal {
        padding: 40px 30px;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .modal-message {
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 749px) {         
    .asas{}

    .nav-container {
        padding: 0 30px;
        height: 70px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        display: block;
        left: 0;
        top: 70px;
        flex-direction: column;
        background-color: #000000e8;

        width: 100%;
        overflow: hidden;
        overflow-x: hidden;
        text-align: center;
        transition: left 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);                
        gap: 0;
        border-bottom: 2px solid rgba(196, 160, 82, 0.3);                                
        z-index: 999;
        max-height: 0;
        transition: max-height 0.6s ease;
    }

    .socials {
        margin-left:unset;
        position: absolute;
        right: 48px;
        top: 21px;
    }

    .nav-menu.active {
        max-height: 1000px;
        left: 0;
        
    }

    .nav-item {
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid rgba(196, 160, 82, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-link::after {
        display: none;
    }
}

@media (max-width: 968px) {         
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 400px;
    }

    .section-content {
        padding: 0 30px;
    }

    .testimonials .section-content,
    .form-section .section-content {
        padding: 0 30px;
    }

    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body {
        padding-top: 65px;
    }

    .nav-container {
        padding: 0 20px;
        height: 65px;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-menu {
        top: 65px;
    }

    .section {
        padding: 60px 0;
    }

    .section-content {
        padding: 0 15px;
    }

    .testimonials .section-content,
    .form-section .section-content {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 15px;
        min-height: 90vh;
    }

    .achievements {
        padding: 40px 20px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .cta-button {
        width: 100%;
        padding: 18px 30px;
    }

    .section-dark::before,
    .hero::before {
        background-attachment: scroll;
    }
}

        /* Seminar Notification Popup */
        .seminar-notification {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #fff;
            padding: 20px 25px;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            max-width: 400px;
            z-index: 9999;
            border: 1px solid rgba(196, 160, 82, 0.3);
            animation: slideInUp 0.5s ease-out;
            transition: all 0.3s ease;
        }

        .seminar-notification:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        }

        .seminar-notification-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .seminar-notification-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #c4a052;
            margin: 0;
            letter-spacing: 0.5px;
        }

        .seminar-notification-close {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 24px;
            cursor: pointer;
            padding: 0;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
            line-height: 1;
        }

        .seminar-notification-close:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            transform: rotate(90deg);
        }

        .seminar-notification-content {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
        }

        .seminar-notification-content strong {
            color: #c4a052;
            font-weight: 600;
        }

        .seminar-notification.hidden {
            animation: slideOutDown 0.4s ease-in forwards;
        }

        @keyframes slideInUp {
            from {
                transform: translateY(100px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideOutDown {
            from {
                transform: translateY(0);
                opacity: 1;
            }
            to {
                transform: translateY(100px);
                opacity: 0;
            }
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .seminar-notification {
                bottom: 10px;
                right: 10px;
                left: 10px;
                max-width: none;
                padding: 18px 20px;
            }

            .seminar-notification-title {
                font-size: 1rem;
            }

            .seminar-notification-content {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .seminar-notification {
                padding: 15px 18px;
            }

            .seminar-notification-title {
                font-size: 0.95rem;
            }

            .seminar-notification-content {
                font-size: 0.85rem;
            }
        }