:root {
    --black: #000000;
    --black-soft: #1d1d1f;
    --red: #e10600;
    --red-hover: #ff0800;
    --white: #ffffff;
    --gray-bg: #f5f5f7;
    --gray-light: #fafafa;
    --gray-text: #86868b;
    --green: #16a34a;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll-triggered animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(225, 6, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(225, 6, 0, 0.6);
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}


a:hover {
    color: #ff2f00;
    text-shadow:
        0 0 6px rgba(255, 34, 0, 0.6),
        0 0 12px rgba(255, 25, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
    background: var(--white);
    color: var(--black-soft);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Animate elements on scroll */
.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { animation-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { animation-delay: 0.5s; }
.animate-on-scroll:nth-child(6) { animation-delay: 0.6s; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--black);
    text-decoration: none;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60px;
    height: 3px;
    background: var(--red);
    animation: expandWidth 0.6s ease-out 0.4s forwards;
}

@keyframes expandWidth {
    to {
        transform: translateX(-50%) scaleX(1);
    }
}

/* NAVBAR - */
.navbar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /*animation: slideDown 0.5s ease-out;*/
}

/*
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}*/

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.logo img {
    height: 6vh;
    max-height: 45px;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
    animation: fadeIn 0.6s ease-out 0.2s both;
    padding-right: 1vh;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logo:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    position: relative;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.nav-links a:nth-child(1) { animation-delay: 0.3s; }
.nav-links a:nth-child(2) { animation-delay: 0.4s; }
.nav-links a:nth-child(3) { animation-delay: 0.5s; }
.nav-links a:nth-child(4) { animation-delay: 0.6s; }
.nav-links a:nth-child(5) { animation-delay: 0.7s; }
.nav-links a:nth-child(6) { animation-delay: 0.8s; }
.nav-links a:nth-child(7) { animation-delay: 0.9s; }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Modern Button Styles */
.btn-primary {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 980px;
    transition: var(--transition);
    letter-spacing: -0.01em;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 6, 0, 0.4);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(225, 6, 0, 0.3);
}

#contact-us {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.92);
    margin-left: 1vh;
}

#contact-us:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1);
}

/* Language Button */
.lang-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    border-radius: 980px;
    transition: var(--transition);
    margin-left: 1vh;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

.lang-btn:active {
    transform: scale(0.95);
}

.btn-large {
    padding: 14px 32px;
    font-size: 17px;
    margin-top: 2rem;
}

/* HERO -  style */
/*
.hero {
    background: var(--black);
    color: var(--white);
    padding: clamp(4rem, 12vw, 10rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
*/


.hero {

    background: var(--black);
    color: var(--white);
    padding: clamp(3rem, 12vw, 2rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 50vh;

}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%,/*rgba(255, 8, 0, 0.403)*/ rgb(181, 99, 99) , transparent 60%);
    animation: pulseGlow 4s ease-in-out infinite;
}

#home {
    background-image: url("Images/hero-index-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 92vh;
    
}

#home::before{
    background: radial-gradient(circle at 50% 0%,/*rgba(255, 8, 0, 0.403)*/ rgba(181, 146, 99, 1) , transparent 60%);
    animation: pulseGlow 4s ease-in-out infinite;
}

#about-us-hero {
    background-image: url("Images/hero-about-us-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero-contact-us {
    background-image: url("Images/hero-contact-us-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;   
}

#hero-references{
    background-image: url("Images/hero-references.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;   
}



@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.4;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1, #h1like {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}


.hero p {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* FEATURES - Card Grid */
.features {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--white);
}

.feature-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card {
    background: var(--gray-bg);
    border-radius: 18px;
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid transparent;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(225, 6, 0, 0.1);
    background: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--black);
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--red);
}

.feature-card p {
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 1rem;
}

/* MODULES */
.modules {
    background: var(--gray-light);
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.module-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.module-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 18px;
    border-left: 3px solid var(--red);
    transition: var(--transition);
    opacity: 0;
    animation: fadeInLeft 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.module-card:nth-child(1) { animation-delay: 0.1s; }
.module-card:nth-child(2) { animation-delay: 0.2s; }
.module-card:nth-child(3) { animation-delay: 0.3s; }
.module-card:nth-child(4) { animation-delay: 0.4s; }
.module-card:nth-child(5) { animation-delay: 0.5s; }
.module-card:nth-child(6) { animation-delay: 0.6s; }

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.module-card:hover::before {
    left: 100%;
}

.module-card:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-left-width: 5px;
}

.module-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--black);
}

.module-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* TRUSTED SECTION - Logo Slider */
.trusted {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--white);
}


.logo-slider {
    overflow: hidden;
    width: 100%;
}

.logo-track {
    display: flex;
    gap: 4rem;
    animation: scroll-left 40s linear infinite;
    will-change: transform;
}

.logo-track img {
    flex: 0 0 auto; /* 🔥 CRITICAL */
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
}


/*
.logo-slider {
    overflow: hidden;
    margin-top: 3rem;
}

.logo-track {
    display: flex;
    width: fit-content;
    animation: scroll-left 50s linear infinite;
    gap: 4rem;
}

.logo-track img {
    max-width: 180px;
    max-height: 80px;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}*/


/*
.logo-track img:nth-child(2n) {
    animation-delay: 0.5s;
}

.logo-track img:nth-child(3n) {
    animation-delay: 1s;
}
*/
.logo-track img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
/*    animation-play-state: paused;*/
}
/*
@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
*/

@keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-1 * var(--scroll-width))); }
}

/* WHY US */
.why-us {
    background: var(--gray-bg);
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.why-content {
    display: flex;
    gap: 4rem;
    justify-content: space-between;
    align-items: start;
}

.why-content > div:first-child {
    flex: 1;
}

.why-list {
    flex: 1;
    list-style: none;
}

.why-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-text);
    line-height: 1.6;
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

/* CTA */
.cta {
    background: var(--black);
    color: var(--white);
    padding: clamp(4rem, 10vw, 8rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(225, 6, 0, 0.1), transparent 70%);
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.cta p {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
}

/* FOOTER */
.footer {
    background: var(--black-soft);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 2rem;
    margin-top: auto;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 3rem;
}

.footer h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
}

/* CONTACT PAGE */
.contact {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: var(--gray-bg);
    padding: 3rem;
    border-radius: 18px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 14px;
    color: var(--black);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-size: 16px;
    border-radius: 12px;
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(225, 6, 0, 0.1);
    transform: translateY(-2px);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background: var(--gray-bg);
    padding: 3rem;
    border-radius: 18px;
    border-left: 3px solid var(--red);
}

.contact-info h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    color: var(--black);
    font-weight: 600;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 980px;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.contact-form button:hover {
    background: var(--red-hover);
}

.contact-form button:active {
    transform: scale(0.98);
}

.contact-form button.loading {
    opacity: 0.7;
    position: relative;
}

.contact-form button.loading::after {
    content: "";
    width: 18px;
    height: 18px;
    border: 3px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg) translate(-50%, -50%); }
}

.form-status {
    margin-top: 14px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.form-status.success {
    color: var(--green);
    opacity: 1;
    transform: translateY(0);
}

.form-status.error {
    color: var(--red);
    opacity: 1;
    transform: translateY(0);
}

/* PACKAGES */
.packages {
    background-color: var(--gray-light);
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.package-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.package-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 18px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 340px;
    text-align: center;
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }

.package-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(225, 6, 0, 0.05), transparent);
    transition: height 0.4s ease;
}

.package-card:hover::after {
    height: 100%;
}

.package-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(225, 6, 0, 0.2);
}

.package-card-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 1em 0;
    color: var(--black);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.package-card:hover .package-card-title {
    color: var(--red);
}

.package-card p {
    color: var(--gray-text);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Package Detail Pages */
.package-hero {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}

.package-details {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--white);
}

.package-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: var(--gray-text);
    text-align: center;
    line-height: 1.6;
}

.package-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
/*
.package-feature-card {
    background: var(--gray-bg);
    padding: 2.5rem;
    border-radius: 18px;
    transition: var(--transition);
}

.package-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-feature-card h3 {
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.package-feature-card p {
    color: var(--gray-text);
    line-height: 1.6;
}
*/
.package-audience {
    padding: clamp(4rem, 10vw, 6rem) 0;
    background: var(--gray-light);
}

#forwho {
    color: var(--black);
}

.audience-list {
    max-width: 700px;
    margin: 2rem auto 0;
    list-style: none;
    padding: 0;
}

.audience-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--gray-text);
    position: relative;
    padding-left: 2rem;
}

.audience-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

/* Package Detail Pages - Full */
.package-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.package-detail.reverse {
    flex-direction: row-reverse;
}

.package-image img {
    max-width: 480px;
    width: 100%;
    border-radius: 18px;
}

.package-info {
    max-width: 520px;
}

.package-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.package-info p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-features {
    margin-bottom: 2rem;
    padding-left: 0;
    list-style: none;
}

.package-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-text);
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

/* REFERENCES GRID */
.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    justify-items: center;
    align-items: center;
}

.reference-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reference-card img {
    width: 160px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.reference-card:nth-child(1) img { animation-delay: 0.1s; }
.reference-card:nth-child(2) img { animation-delay: 0.15s; }
.reference-card:nth-child(3) img { animation-delay: 0.2s; }
.reference-card:nth-child(4) img { animation-delay: 0.25s; }
.reference-card:nth-child(5) img { animation-delay: 0.3s; }
.reference-card:nth-child(6) img { animation-delay: 0.35s; }

.reference-card:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1) rotate(2deg);
}

.reference-card span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-text);
    line-height: 1.4;
}

/* PRIVACY & TERMS */
#privacy-section,
#tos-section {
    padding: clamp(4rem, 10vw, 6rem) 2rem;
    background-color: var(--white);
}

#privacy-container,
#tos-container {
    max-width: 800px;
    margin: 0 auto;
}

#privacy-title,
#tos-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 2rem;
    line-height: 1.1;
}

#privacy-intro,
#tos-intro {
    font-size: 1.125rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.privacy-heading,
.tos-heading {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.privacy-text,
.tos-text {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}



/* Hamburger Menu - Hidden by default */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 8px;
    z-index: 1001;
    transition: var(--transition);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 8vh;
    left: -100%;
    width: 280px;
    height: calc(100vh - 8vh);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 2rem 0;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: none; /* Hidden by default */
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 1.5rem;
}

.mobile-menu .nav-links a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: none;
    opacity: 1;
}

.mobile-menu .nav-links a::after {
    display: none;
}

.mobile-menu .btn-primary {
    margin: 1.5rem 1.5rem 0;
    display: block;
    text-align: center;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}




/* RESPONSIVE */
@media (max-width: 1214px) {
    .nav-links {
        display: none;
    }
    
    .why-content {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hamburger {
        display: flex; /* Show hamburger */
    }
    
    .mobile-menu {
        display: block; /* Enable mobile menu */
    }
    
    .nav-content .btn-primary {
        display: none; /* Hide desktop contact button */
    }
    
    /* Center logo in navbar */
    .nav-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .nav-content > div {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .hamburger {
        position: relative;
        z-index: 10;
    }

    .lang-btn {
        position: relative;
        z-index: 10;
        margin-left: auto;
    }
    
    .package-detail,
    .package-detail.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .package-features {
        text-align: left;
    }
}

@media (max-width: 768px) {
    #home {
        background-image: url("Images/hero-index-bg-mobile.png");
        height: 92vh;
        max-height: none;
    }
    
    .hero {
        height: auto;
        max-height: none;
    }
    
    .nav-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .nav-content > div {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .lang-btn {
        position: relative;
        right: 0;
        top: auto;
        transform: none;
        margin-left: auto;
        z-index: 10;
    }

    .hamburger {
        z-index: 10;
    }
    
    .reference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {
    .logo-track img {
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .reference-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
* {
    text-decoration: none !important;
}

.features p,
.modules p,
.packages p {
    color: var(--gray-text);
}

h1, h2, h3, h4 {
    letter-spacing: -0.02em;
}

