@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/InterVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ── Particle Canvas ── */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ── Gradient Utilities ── */
.gradient-text {
    /* background: linear-gradient(135deg, #f59e0b, #ea580c); */
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.gradient-bg-hover:hover {
    background: linear-gradient(135deg, #B91C1C, #f59e0b);
}

.gradient-border {
    position: relative;
    border-radius: 1rem;
    background: white;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 1.1rem;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.gradient-border:hover::before {
    opacity: 1;
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

.stagger-7 {
    transition-delay: 0.7s;
}

/* ── Navbar ── */
.navbar {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.nav-link {
    position: relative;
    padding: 0.25rem 0;
    color: #374151;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, #ea580c);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: #f59e0b;
}

.nav-link:hover::after {
    width: 100%;
}

/* ── Service Card ── */
.service-card {
    background: white;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s, border-color 0.5s;
}

.service-card.gradient-bg {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    border-color: transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #ea580c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.12);
    border-color: rgba(220, 38, 38, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon-wrap {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s;
}

.service-card:hover .icon-wrap {
    transform: scale(1.1) rotate(-3deg);
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.service-card:hover .icon-wrap svg {
    color: white !important;
}

/* ── Team Card ── */
.team-card {
    background: white;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
    position: relative;
    overflow: hidden;
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(220, 38, 38, 0.04), transparent);
    transition: height 0.5s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(220, 38, 38, 0.12);
}

.team-card:hover::after {
    height: 100%;
}

.team-card:hover .avatar-ring {
    border-color: #ea580c;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.team-card:hover .avatar-svg {
    transform: translateY(-4px);
}

.avatar-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #E5E7EB;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.4s, box-shadow 0.4s;
    background: linear-gradient(135deg, #FEF2F2, #FFF7ED);
}

.avatar-svg {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── WhatsApp Button ── */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: wa-ping 2s ease-out infinite;
}

@keyframes wa-ping {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ── CTA Button ── */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
    filter: brightness(1.08);
}

.cta-btn:active {
    transform: translateY(0) scale(0.98);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    background: transparent;
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.cta-btn-outline:hover {
    border-color: #f59e0b;
    background: rgba(220, 38, 38, 0.04);
    transform: translateY(-2px);
}

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: white;
    z-index: 1000;
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ── Hero floating shapes ── */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float-shape 8s ease-in-out infinite;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ── Section divider ── */
.section-divider {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #f59e0b, #ea580c);
}

/* ── Why Choose cards ── */
.why-card {
    padding: 2rem;
    border-radius: 1.25rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.4s, box-shadow 0.4s;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.1);
}

/* ── Form styles ── */
.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: 1.5px solid #E5E7EB;
    background: white;
    font-size: 0.9375rem;
    color: #111827;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    font-family: inherit;
}

.form-input:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-input::placeholder {
    color: #9CA3AF;
}

/* ── Toast ── */
.toast {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 9999;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    background: #111827;
    color: white;
    font-size: 0.875rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ── Counter animation ── */
.counter {
    font-variant-numeric: tabular-nums;
}

/* ── Misc ── */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F9FAFB;
}

::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

/* Mission/Vision cards */
.mv-card {
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.08;
}

.mv-mission {
    background: linear-gradient(135deg, #FEF2F2, #FFF7ED);
}

.mv-mission::before {
    background: #f59e0b;
}

.mv-vision {
    background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
}

.mv-vision::before {
    background: #ea580c;
}

/* Client logos placeholder */
.client-logo {
    width: 140px;
    height: 60px;
    border-radius: 0.75rem;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #9CA3AF;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.client-logo:hover {
    background: white;
    color: #6B7280;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}