/* ═══════════════════════════════ DESIGN TOKENS ══════════════════════════════════ */
:root {
    --brand-red: #e8341a;
    --brand-red-dark: #c42a12;
    --brand-red-light: #ff6b4a;
    --neutral-900: #0d0d0d;
    --neutral-800: #1a1a1a;
    --neutral-700: #2e2e2e;
    --neutral-600: #4a4a4a;
    --neutral-400: #9a9a9a; 
    --neutral-200: #e8e8e8;
    --neutral-100: #f4f4f4;
    --neutral-50: #fafafa;
    --white: #ffffff;
    --success: #16a34a;
    --warning: #ca8a04;

    --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 2rem;
    --radius-2xl: 4rem;

    --shadow-sm:
        0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-red: 0 8px 32px rgba(232, 52, 26, 0.25);

    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

/* ═══════════════════════════════ RESET & BASE ═══════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--neutral-900);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn .3s forwards;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ═══════════════════════════════ UTILITIES ══════════════════════════════════════ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 640px) {
    .container {
        padding: 0 var(--space-sm);
    }
}

.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;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    /* letter-spacing: 0.12em; */
    /* text-transform: uppercase; */
    /* color: black; */
    border: 1px solid var(--neutral-200);
    /* background: rgba(232, 52, 26, 0.05); */
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: var(--space-sm);
}

.section-label svg {
    width: 12px;
    height: 12px;
    color: var(--brand-red);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--neutral-900);
}

.section-sub {
    font-size: 15px;
    font-weight: 500;
    color: var(--neutral-600);
    max-width: 560px;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.text-center .section-sub {
    margin: 0 auto;
}

/* ═══════════════════════════════ BUTTONS ════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 50px;
    padding: 0.8125rem 1.75rem;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: var(--transition);
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.12);
}

.btn:focus-visible {
    outline: 3px solid var(--brand-red);
    outline-offset: 3px;
}

.btn-primary {
    background: black;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: black;
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--neutral-900);
    border: 1.5px solid var(--neutral-200);
}

.btn-outline:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    transform: translateY(-1px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-sm {
    font-size: 0.875rem;
    padding: 0.6rem 1.25rem;
}

.btn-request-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    color: var(--white);
    background-color: var(--brand-red);
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 50px;
    padding: 0.8125rem 1.75rem;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-request-footer:hover {
    background-color: var(--brand-red);
    transform: translateY(-2px);
    transition: var(--transition);
}

/* ═══════════════════════════════ NAVBAR ═════════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--neutral-200);
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

#navbar.scrolled {
    border-bottom-color: var(--neutral-200);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    height: 68px;
    gap: var(--space-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* .nav-logo svg {
    height: 45px;
} */

.nav-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--brand-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-mark svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--neutral-900);
    letter-spacing: -0.03em;
}

.nav-logo-text span {
    color: var(--brand-red);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-900);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--brand-red-dark);
    /* background: var(--neutral-100); */
}

.nav-cta {
    margin-left: var(--space-sm);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    margin-left: auto;
    transition: var(--transition);
}

.nav-hamburger:hover {
    background: var(--neutral-100);
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--neutral-200);
    padding: var(--space-sm) var(--space-sm) var(--space-md);
    box-shadow: var(--shadow-lg);
}

.nav-mobile.open {
    display: block;
}

.nav-mobile a {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--neutral-700);
    padding: 0.75rem var(--space-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-mobile a:hover {
    background: var(--neutral-100);
    color: var(--neutral-900);
}

.nav-mobile .btn {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-sm);
}

@media (max-width: 900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}

.mobile-dropdown {
  width: 100%;
}

.mobile-dropdown-toggle {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0.75rem var(--space-sm);
  display: flex;
  justify-content: start;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--neutral-700);
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 1rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-menu a {
  padding: 0.75rem 0;
}

.mobile-dropdown.active .arrow {
  transform: rotate(180deg);
}

.mobile-dropdown .arrow {
  transition: transform 0.3s ease;
}

/* ═══════════════════════════════ FOOTER ═════════════════════════════════════════ */
#footer {
    background: #0a0a0a;
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    gap: var(--space-xl);
    margin-bottom: var(--space-md);
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: var(--space-2xl);
}

.footer-brand .nav-logo {
    margin-bottom: var(--space-sm);
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: var(--space-md);
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.footer-contact a:hover {
    color: var(--brand-red-light);
}

.footer-contact svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.footer-col a {
    display: flex;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    padding: 0.3rem 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-tagline {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.04em;
}

/* ═════════════════════ FOOTER RESPONSIVE ═════════════════════ */

@media (max-width: 992px) {

    .footer-flex {
        flex-direction: column;
        gap: 3rem;
    }

    .cta-inner {
        width: 100%;
    }

    .footer-info {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-col {
        flex: 1 1 200px;
    }
}

@media (max-width: 768px) {

    .footer-flex {
        text-align: center;
        align-items: center;
    }

    .cta-inner {
        width: 100%;
    }

    .cta-actions {
        display: flex;
        justify-content: center;
    }

    .footer-info {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer-col {
        width: 100%;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact a {
        justify-content: center;
    }

    .footer-col a {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
}


/* ═══════════════════════════════ SCROLL REVEAL ══════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bar-grow {
    from {
        transform: scaleY(0);
    }
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-6px) rotate(0deg);
    }
}

/* ═══════════════════════════════ CTA ════════════════════════════════════════════ */
#cta {
    padding: var(--space-3xl) 0;
    background: var(--neutral-900);
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
            rgba(232, 52, 26, 0.15) 0%,
            transparent 60%);
}

.cta-inner {
    text-align: start;
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(1rem, 4.5vw, 2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.1rem;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.cta-heading span {
    color: var(--brand-red-light);
}

.cta-sub {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: var(--space-sm);
    flex-wrap: wrap;
    /* margin-bottom: var(--space-lg); */
}

.cta-note {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}


/* ----------------DROPDOWN---------------- */

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px 0;
    margin-top: 10px;
    list-style: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 1000;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    transition: background .2s;
}

.dropdown-menu a:hover {
    background: #f5f7fb;
    color: #2563eb;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}