/* ═══════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
════════════════════════════════════════════════ */
:root {
    --orange:       #F07B1F;
    --orange-dark:  #D4691A;
    --orange-light: #FFF3E6;
    --dark:         #111827;
    --dark-2:       #1F2937;
    --gray:         #6B7280;
    --gray-2:       #9CA3AF;
    --gray-light:   #F3F4F6;
    --white:        #FFFFFF;
    --shadow:       0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-lg:    0 8px 48px rgba(0, 0, 0, 0.12);
    --radius:       16px;
    --radius-sm:    10px;
    --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════════
   CONTAINER
════════════════════════════════════════════════ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240, 123, 31, 0.40);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.60);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════
   BADGES
════════════════════════════════════════════════ */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* ═══════════════════════════════════════════════════
   SECTION HEADER
════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 64px; }

.section-header h2 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    margin: 14px 0 12px;
    line-height: 1.2;
}

.section-header p {
    font-size: 17px;
    color: var(--gray);
    max-width: 540px;
    margin: 0 auto;
}

.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255, 255, 255, 0.70); }

/* ═══════════════════════════════════════════════════
   SECTIONS
════════════════════════════════════════════════ */
.section { padding: 100px 0; }

/* ═══════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 56px;
    width: auto;
    transition: var(--transition);
}

/* Hero (dark): show white version, hide light version */
.nav-logo .logo-dark  { display: block; }
.nav-logo .logo-light { display: none; }

/* Scrolled (white navbar): show light version, hide white version */
.navbar.scrolled .nav-logo .logo-dark  { display: none; }
.navbar.scrolled .nav-logo .logo-light { display: block; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.90);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:not(.btn-nav):hover::after { transform: scaleX(1); }
.navbar.scrolled .nav-links a:not(.btn-nav) { color: var(--dark); }

.btn-nav {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(240, 123, 31, 0.40);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--dark); }

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 42px, rgba(255,255,255,0.018) 42px, rgba(255,255,255,0.018) 43px),
        repeating-linear-gradient(90deg, transparent, transparent 84px, rgba(255,255,255,0.018) 84px, rgba(255,255,255,0.018) 85px);
}

.hero-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(240, 123, 31, 0.22) 0%, transparent 68%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(240, 123, 31, 0.12);
    border: 1px solid rgba(240, 123, 31, 0.30);
    color: var(--orange);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(34px, 4.2vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
}

.text-orange { color: var(--orange); }

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 500;
}

.trust-item i { color: var(--orange); font-size: 14px; }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle {
    width: 360px;
    height: 360px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(240, 123, 31, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 80px rgba(240, 123, 31, 0.10);
}

.hero-logo-large { max-width: 260px; }

.hero-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

.hero-card i { font-size: 22px; color: var(--orange); flex-shrink: 0; }
.hero-card strong { display: block; font-size: 13px; }
.hero-card small { display: block; font-weight: 400; color: var(--gray); font-size: 11px; }

.card-1 {
    top: 40px;
    left: -30px;
    animation: float 3.2s ease-in-out infinite;
}

.card-2 {
    bottom: 40px;
    right: -30px;
    animation: float 3.2s ease-in-out infinite 1.6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll-hint a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 18px;
    display: block;
    animation: bounce-down 2.2s ease-in-out infinite;
    transition: color 0.3s;
}

.hero-scroll-hint a:hover { color: var(--orange); }

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

/* ═══════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════ */
.services-section { background: var(--gray-light); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--orange);
}

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-icon.orange { background: var(--orange-light); color: var(--orange); }
.service-icon.dark   { background: var(--dark); color: var(--white); }

.service-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card > p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 18px;
}

.service-list {
    margin-bottom: 22px;
    flex-grow: 1;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    padding: 4px 0;
}

.service-list li i { color: var(--orange); font-size: 11px; flex-shrink: 0; }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    margin-top: auto;
}

.service-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════════ */
.why-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.why-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(240, 123, 31, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(240, 123, 31, 0.08);
    border-color: rgba(240, 123, 31, 0.25);
    transform: translateY(-6px);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: rgba(240, 123, 31, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--orange);
    margin: 0 auto 20px;
}

.why-card h3 {
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════ */
.about-section { background: var(--white); }

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.about-card-big {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 48px 40px;
    text-align: center;
}

.about-logo { max-width: 280px; margin: 0 auto 32px; }

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-stat {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 4px;
    line-height: 1;
}

.about-stat small {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

.about-content .badge { margin-bottom: 14px; }

.about-content h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

.about-lead {
    font-size: 17px;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.65;
    margin-bottom: 14px;
}

.about-content > p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 14px;
}

.about-values { margin: 26px 0 34px; }

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.value-item:last-child { border-bottom: none; }
.value-item i { color: var(--orange); font-size: 16px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
.contact-section { background: var(--gray-light); }

.contact-container {
    display: grid;
    grid-template-columns: 5fr 8fr;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Contact Info Panel */
.contact-info {
    background: var(--dark);
    padding: 52px 36px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgba(240, 123, 31, 0.08);
    border-radius: 50%;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(240, 123, 31, 0.14);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
    font-size: 16px;
}

.contact-item strong {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

.contact-item a:hover { color: var(--orange); }

.contact-social {
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.contact-social h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
}

.social-links { display: flex; gap: 10px; }

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(240, 123, 31, 0.40);
}

/* Contact Form */
.contact-form { padding: 52px 44px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 7px;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(240, 123, 31, 0.10);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0B8C4; }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success,
.form-error {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
}

.form-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.form-success i { color: #10B981; font-size: 20px; flex-shrink: 0; }

.form-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

.form-error i { color: #EF4444; font-size: 20px; flex-shrink: 0; }
.form-error a { color: inherit; font-weight: 700; text-decoration: underline; }

.form-success.show,
.form-error.show { display: flex; }

/* ═══════════════════════════════════════════════════
   FLOATING CTA
════════════════════════════════════════════════ */
.fab-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(16px) scale(0.95);
    pointer-events: none;
}

.fab-cta i { font-size: 22px; }

.fab-cta.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.fab-cta:hover {
    background: #1EB855;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

/* ═══════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
    background: var(--dark-2);
    color: rgba(255, 255, 255, 0.65);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 64px;
}

.footer-logo {
    max-width: 190px;
    margin-bottom: 18px;
}

.footer-brand > p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-social .social-link {
    background: rgba(255, 255, 255, 0.07);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.footer-links ul li { margin-bottom: 10px; }

.footer-links ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links ul li a::before {
    content: '→';
    color: var(--orange);
    font-size: 12px;
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition);
}

.footer-links ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-links ul li a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact p {
    font-size: 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-contact i { color: var(--orange); margin-top: 2px; flex-shrink: 0; width: 14px; }
.footer-contact a { color: rgba(255, 255, 255, 0.65); transition: var(--transition); }
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════════════ */
[data-animate] {
    opacity: 0;
    transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-animate="fade-up"]    { transform: translateY(36px); }
[data-animate="fade-left"]  { transform: translateX(36px); }
[data-animate="fade-right"] { transform: translateX(-36px); }

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid  { grid-template-columns: repeat(2, 1fr); }
    .why-grid       { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 36px; }
    .about-container  { gap: 48px; }
    .hero-circle { width: 300px; height: 300px; }
    .hero-logo-large { max-width: 210px; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Mobile Nav */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        padding: 80px 36px 48px;
        gap: 20px;
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
        z-index: 1050;
    }

    .nav-links.open { display: flex; }
    .nav-links a { color: var(--white) !important; font-size: 17px; }
    .nav-links a::after { display: none; }
    .btn-nav { width: 100%; justify-content: center; text-align: center; margin-top: 8px; }

    .hamburger { display: flex; }

    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .hero-visual   { display: none; }
    .hero-actions  { justify-content: center; }
    .hero-trust    { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-badge    { margin: 0 auto 22px; }

    /* Sections */
    .services-grid { grid-template-columns: 1fr; }
    .why-grid      { grid-template-columns: 1fr; }

    /* About */
    .about-container { grid-template-columns: 1fr; }
    .about-card-big  { padding: 32px 24px; }

    /* Contact */
    .contact-container { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 36px 24px; }

    /* Footer */
    .footer-container { grid-template-columns: 1fr; gap: 28px; }

    /* FAB */
    .fab-cta span { display: none; }
    .fab-cta {
        padding: 16px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .section { padding: 72px 0; }
    .hero-title { font-size: 30px; }
    .section-header { margin-bottom: 44px; }
    .service-card { padding: 28px 22px; }
    .why-card { padding: 28px 20px; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
}
