:root {
    --primary: #FFB91D;
    --primary-dark: #e5a51a;
    --secondary: #3D4358;
    --accent: #FEFEFE;
    --dark: #201E1E;
    --darker: #151414;
    --text: #f5f0f0;
    --header-height: 80px;
    --safe-top: env(safe-area-inset-top, 0px);
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--darker);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only:focus,
.sr-only:active {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    white-space: normal;
    padding: .5rem 1rem;
    background: #fff;
    color: #000;
    border-radius: .25rem;
    z-index: 10000;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(32, 30, 30, .8);
    border-bottom: 1px solid rgba(255, 185, 29, .1);
    transition: all .3s;
    height: var(--header-height);
    /*display: flex;*/
    /*align-items: center; /* restored so header children keep expected vertical alignment */
}

/* ensure nav sits to the right on wide screens */
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 20px 0;
    margin-left: auto; /* push nav to the right of the header */
}

/* ensure main content sits below fixed header */
.site-main {
    padding-top: calc(var(--header-height) + var(--safe-top, 0px)); /* adjust if header height changes */
}

header.scrolled {
    padding: 10px 0;
    background: rgba(32, 30, 30, .95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5)
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%; /* Make container fill header height*/
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%; /* Fill container height*/
    position: relative; /* for absolute positioning of mobile menu */
}

.logo-container {
    display: flex;
    align-items: center;
    margin-right: 70px; /* ADDED: gap between logo / company text and the menu*/ 
}

.logo-text {
    margin-left: 20px;  /* spacing between logo image and text */
    font-weight: 700;
    font-size: 24px;
    background: linear-gradient(135deg, #FFB91D, #e5a51a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap; /* prevent wrapping */
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    /*margin-left: auto; /* push nav to the right */
    align-items: center; /* vertical alignment */
    /*justify-content: flex-end;*/
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    position: relative;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 185, 29, .35);
    border-radius: 10px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0; /* prevent hamburger from shrinking */
}

.menu-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    position: relative;
}

.menu-toggle .bar::before,
.menu-toggle .bar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform .2s;
}

.menu-toggle .bar::before {
    top: -6px;
}

.menu-toggle .bar::after {
    top: 6px
}

@media(max-width:768px) {
    :root{
        --header-height: 68px;
    }
    .site-main {
        padding-top: 68px;
    }
    .menu-toggle {
        display: flex;
        position: relative; /* Keep in flow instead of absolute */
        margin-left: auto; /* Push to the right */
    }

    /* Adjust logo container for mobile */
    .logo-container {
        max-width: calc(100% - 70px); /* Leave space for hamburger (44px + padding) */
        flex: 1; /* Take available space */
        min-width: 0; /* Allow flex item to shrink below content size */
    }

    .logo-text {
        font-size: 18px; /* Smaller text on mobile */
        overflow: hidden;
        text-overflow: ellipsis;
    }
    /* Mobile dropdown menu */
    .nav-links {
        position: absolute;
        top: 100%; /* Position below header */
        left: 0;
        right: 0;
        background: rgba(32, 30, 30, 0.98);
        border-top: 1px solid rgba(255, 185, 29, .1);
        overflow: hidden;
        max-height: 0;
        flex-direction: column;
        gap: 0;
        padding: 0;
        align-items: stretch;
        transition: max-height 320ms ease, opacity 320ms ease;
        opacity: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    }

    .nav-links.is-open {
        max-height: 60vh;
        overflow-y: auto;
        opacity: 1;
        padding: 12px 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 12px 20px;
        width: 100%;
    }

    .nav-links a:hover {
        background: rgba(255, 185, 29, .1);
    }
}

/* Extra small phones */
@media(max-width:480px) {
    .logo-container {
        max-width: calc(100% - 60px);
    }

    .logo-text {
        font-size: 16px;
        margin-left: 12px;
    }

    .container {
        padding: 0 15px;
    }
}
/* Make all images responsive to prevent overflow on small screens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth mobile menu open/close and allow scrolling when open */
.nav-links {
    transition: max-height 320ms ease, opacity 320ms ease;
    will-change: max-height, opacity;
}

/* when open allow viewport scrolling inside menu if it grows */
.nav-links.is-open {
    max-height: 60vh; /* relative to viewport */
    overflow-y: auto;
    opacity: 1;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at bottom, #2a2828 0%, #151414 100%)
}

.parallax-bg {
    pointer-events: none;
    position: absolute;
    inset: 0;
    height: 120%;
    background: url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 1440 320%22><path fill=%22%23FFB91D%22 fill-opacity=%220.1%22 d=%22M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z%22></path></svg>') no-repeat center/cover;
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin: 0 0 20px;
    background: linear-gradient(45deg, #fff, #FFB91D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px
}

.highlight {
    background: linear-gradient(135deg, #FFB91D, #e5a51a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero p {
    max-width: 600px;
    margin: 0 auto 40px
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap
}

.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase
}

.btn-primary {
    background: linear-gradient(135deg, #FFB91D, #e5a51a);
    color: #201E1E;
    box-shadow: 0 4px 15px rgba(255, 185, 29, .4)
}

.btn-secondary {
    background: transparent;
    color: #FFB91D;
    border: 2px solid #FFB91D
}

.about-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%)
}

.about-container {
    max-width: 1200px;
    margin: 0 auto
}

.section-header {
    text-align: center;
    margin-bottom: 3rem
}

.section-title {
    text-align: center
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .5rem;
    letter-spacing: 1px
}

.section-header p {
    color: var(--text);
    font-size: 1.1rem
}

.about-content {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start
}

.about-text,
.about-features {
    min-width: 0
}

.about-text h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700
}

.about-text p {
    text-align: justify;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.75
}

.about-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(61, 67, 88, 0.25);
    border: 1px solid rgba(255, 185, 29, 0.3);
    border-radius: 10px;
    padding: 1.75rem;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(255, 185, 29, 0.3);
}

.about-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;

}

.about-icon i {
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.about-card h4 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
}

.about-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-card ul li {
    color: var(--text);
    margin: 0.5rem 0;
    position: relative;
    padding-left: 2.2rem;
}

.about-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
}

@media(max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    justify-items: center;
    align-items: start;
    text-align: center
}

.team-section {
    margin-top: 4rem
}

.team-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2.5rem
}

.team-member {
    background: rgba(61, 67, 88, 0.25);
    border: 1px solid rgba(255, 185, 29, 0.2);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15)
}

.team-member:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 12px 25px rgba(255, 185, 29, 0.25)
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 3px solid rgba(255, 185, 29, 0.4);
    display: flex;
    align-items: center;
    justify-content: center
}

.member-image img {
    width: 100%;
    height: auto;
    display: block
}

.team-member h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: .5rem 0;
    font-weight: 700
}

.team-member p {
    color: var(--primary);
    font-weight: 600;
    margin: .25rem 0
}

.team-member span {
    color: var(--text);
    font-size: .9rem
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.reveal--up {
    transform: translateY(16px)
}

.reveal--down {
    transform: translateY(-16px)
}

.reveal--left {
    transform: translateX(-16px)
}

.reveal--right {
    transform: translateX(16px)
}

.reveal {
    transition-delay: var(--reveal-delay, 0s)
}

@media(prefers-reduced-motion:reduce) {

    .reveal,
    .reveal.is-visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }
}

.carousel-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #151414 0%, #201E1E 100%)
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 185, 29, .1)
}

.carousel-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

.carousel-slide {
    min-width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 185, 29, .9);
    color: #201E1E;
    border: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all .3s;
    z-index: 10;
    font-weight: 700
}

.carousel-prev {
    left: 20px
}

.carousel-next {
    right: 20px
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 185, 29, .3);
    border: 0
}

.carousel-dot.active {
    background: #FFB91D;
    width: 30px
}

.features {
    padding: 100px 20px;
    background: #201E1E
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px
}

.feature-card {
    background: rgba(61, 67, 88, .1);
    border: 1px solid rgba(255, 185, 29, .2);
    border-radius: 20px;
    padding: 40px;
    transition: transform .2s
}

.feature-card h3 {
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 0.5em;
}

.feature-card p {
    text-align: justify;
    color: var(--text);
    margin-top: 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #FFB91D
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #FFB91D, #e5a51a);
    color: #201E1E;
    font-size: 28px
}

.stats {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFB91D 0%, #3D4358 100%)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px
}

.stat-item {
    text-align: center;
    color: #201E1E
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 10px
}

.contact-section {
    padding: 100px 20px;
    background: #151414
}

.contact--grid {
    padding: 96px 20px;
    background: #151414
}

.contact-section {
    text-align: center
}

.contact-section h2 {
    color: #fefefe;
    margin: 0 0 .25rem;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 2rem
}

.contact-section p {
    color: var(--text);
    margin: 0
}

.contact__row {
    display: grid;
    gap: 2.25rem
}

.contact__row--two {
    grid-template-columns: 1fr 1fr
}

.contact__row--full {
    grid-template-columns: 1fr;
    margin-top: 3rem
}

@media(max-width:900px) {
    .contact__row--two {
        grid-template-columns: 1fr
    }
}

.contact__box {
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 185, 29, .2);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(8px)
}

.contact__box h3 {
    color: #fefefe;
    margin: 0 0 .75rem;
    font-size: 1.15rem
}

.contact__box--social {
    text-align: center;
    padding: 1rem .75rem;
    max-width: 500px;
    margin: 0 auto
}

.contact__box--info h3,
.contact__box--map h3 {
    margin-bottom: 2rem;
    text-align: center;
    color: #ffffff
}

.contact__list {
    display: grid;
    gap: 2rem;
    justify-items: start;
    text-align: left;
    overflow-wrap: anywhere
}

.contact__list a {
    color: #fff;
    text-decoration: none
}

.contact__list a:hover {
    text-decoration: underline
}

.contact__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #ffa500 100%);
    color: #201e1e;
    margin-right: .6rem;
    vertical-align: middle
}

.contact__icon i {
    font-size: 24px;
    color: #201e1e;
}

.contact__list li {
    color: rgba(254, 254, 254, .9);
    list-style: none;
    margin: 0;
    padding: 0
}

.map-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.contact__box--social .social-media {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    justify-content: center
}

.social-link {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 185, 29, .25);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 185, 29, .08);
    text-decoration: none;
    transition: transform .15s ease, border-color .15s ease
}

.social-link i {
    font-size: 24px;
    color: currentColor;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: #FFB91D
}

footer {
    background: #151414;
    padding: 50px 20px 30px;
    border-top: 1px solid rgba(255, 185, 29, .1)
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 185, 29, .1)
}

.loader {
    position: fixed;
    inset: 0;
    background: #151414;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity .5s
}

.loader.hidden {
    opacity: 0;
    pointer-events: none
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 185, 29, .3);
    border-top-color: #FFB91D;
    border-radius: 50%;
    animation: spin 1s linear infinite
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #FFB91D;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen
}

.cursor-follower {
    width: 40px;
    height: 40px;
    background: rgba(255, 185, 29, .1);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s
}

.fade-in.visible,
.fade-in.is-visible {
    opacity: 1;
    transform: none
}

@media(max-width:768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .features-grid {
        grid-template-columns: 1fr
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .carousel-slide {
        height: 300px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .parallax-bg,
    .cursor,
    .cursor-follower {
        display: none !important
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}