/* ===== FNR Document Clearing Services - Premium Website Styles ===== */
/* Colors: Dark Green #0d2818 | Gold #c9a84c | White */

:root {
    --green-dark: #0d2818;
    --green-deep: #0a1f13;
    --green-medium: #1a4d2e;
    --gold: #c9a84c;
    --gold-light: #d4b96a;
    --gold-dark: #a88a3a;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --font-en: 'Inter', sans-serif;
    --font-ar: 'Tajawal', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-en);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body[dir="rtl"] { font-family: var(--font-ar); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.hidden { display: none !important; }

/* ===== Video Splash ===== */
.video-splash {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}

.video-splash video {
    width: 100%; height: 100%;
    object-fit: cover;
}

.video-splash.fade-out {
    opacity: 0;
    pointer-events: none;
}

.skip-btn {
    position: absolute;
    bottom: 40px; right: 40px;
    background: rgba(201,168,76,0.9);
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.skip-btn:hover { background: var(--gold); transform: scale(1.05); }

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13,40,24,0.95);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.nav-logo img { height: 44px; width: auto; }

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

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover { color: var(--gold); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }

.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-whatsapp:hover { background: #128C7E; transform: translateY(-1px); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(13,40,24,0.92) 0%, rgba(13,40,24,0.75) 50%, rgba(13,40,24,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text h1 .gold { color: var(--gold); }

.hero-text p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(201,168,76,0.4); }

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-full { width: 100%; }
.btn-lg { padding: 18px 40px; font-size: 16px; }

.hero-form {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-form h3 {
    color: var(--green-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.hero-form form { display: flex; flex-direction: column; gap: 14px; }

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--gray-100);
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-600);
    margin-top: 8px;
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--green-dark);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.05), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item { position: relative; }

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    display: inline;
}

.stat-plus {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-top: 6px;
    font-weight: 500;
}

/* ===== Section Styles ===== */
section { padding: 100px 0; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.7); }

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 12px;
}

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

/* ===== Core Services ===== */
.services { background: var(--gray-100); }

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

.service-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green-medium));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 64px; height: 64px;
    background: rgba(13,40,24,0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green-dark);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--green-dark);
    color: var(--gold);
}

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

.service-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.service-link:hover { color: var(--gold-dark); }

/* ===== Value-Added Services ===== */
.value-services { background: #fff; }

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

.value-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.value-icon { font-size: 36px; margin-bottom: 16px; }

.value-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ===== Why FNR ===== */
.why-fnr {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%);
}

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

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

.why-card:hover {
    background: rgba(201,168,76,0.1);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-4px);
}

.why-icon { font-size: 36px; margin-bottom: 16px; }

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

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

/* ===== Partners ===== */
.partners { background: var(--gray-100); }

.partners-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    align-items: center;
}

.partner-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.partner-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.partner-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.partner-item span {
    font-size: 11px;
    color: var(--gray-600);
    font-weight: 500;
}

/* ===== Industries ===== */
.industries { background: #fff; }

.industries-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--green-dark);
    transition: var(--transition);
}

.industry-item:hover {
    background: var(--green-dark);
    color: #fff;
}

.industry-item span { font-size: 20px; }

/* ===== How It Works ===== */
.how-it-works { background: var(--gray-100); }

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    text-align: center;
    padding: 36px 28px;
    flex: 1;
    min-width: 200px;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 12px;
}

.step-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* ===== Testimonials ===== */
.testimonials {
    background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
}

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

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: #fff;
    font-size: 15px;
}

.testimonial-author span {
    color: var(--gold);
    font-size: 12px;
}

/* ===== Blog Preview ===== */
.blog-preview { background: #fff; }

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

.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }

.blog-content { padding: 24px; }
.blog-date { font-size: 12px; color: var(--gold); font-weight: 600; }
.blog-content h4 { font-size: 16px; font-weight: 700; color: var(--green-dark); margin: 8px 0; line-height: 1.4; }
.blog-content p { font-size: 13px; color: var(--gray-600); margin-bottom: 12px; }
.blog-link { color: var(--gold); text-decoration: none; font-size: 13px; font-weight: 600; }

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
}

.cta-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.cta-bg img { width: 100%; height: 100%; object-fit: cover; }

.cta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(13,40,24,0.88);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 36px;
}

.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
.footer {
    background: var(--green-deep);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo { height: 40px; margin-bottom: 16px; }

.footer-about p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.1);
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

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

.footer-col ul a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul a:hover { color: var(--gold); }

.footer-contact li {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.6;
}

.footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ===== Booking Modal ===== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.active { display: flex; }

.modal {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray-600);
}

.modal h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.modal form { display: flex; flex-direction: column; gap: 14px; }

.modal input,
.modal select,
.modal textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.modal input:focus,
.modal select:focus,
.modal textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.modal textarea { resize: vertical; min-height: 80px; }

/* ===== RTL Support ===== */
[dir="rtl"] .nav-links { direction: rtl; }
[dir="rtl"] .hero-content { direction: rtl; }
[dir="rtl"] .service-link { direction: rtl; }
[dir="rtl"] .footer-grid { direction: rtl; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--green-dark);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links.active { display: flex; }
    
    .mobile-menu-btn { display: flex; }
    
    .nav-whatsapp span { display: none; }
    
    .hero { padding: 100px 0 60px; min-height: auto; }
    
    .hero-content { grid-template-columns: 1fr; }
    
    .hero-form { padding: 28px 20px; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    .stat-number { font-size: 36px; }
    
    .services-grid,
    .value-grid,
    .why-grid,
    .testimonials-grid,
    .blog-grid { grid-template-columns: 1fr; }
    
    .steps-grid { flex-direction: column; }
    .step-connector { width: 2px; height: 30px; background: linear-gradient(180deg, var(--gold), transparent); }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    
    section { padding: 60px 0; }
    
    .cta-section { padding: 80px 0; }
    
    .skip-btn { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-scroll { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .industries-carousel { grid-template-columns: 1fr; }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Print Styles */
@media print {
    .navbar, .whatsapp-float, .video-splash, .modal-overlay { display: none; }
    .hero { min-height: auto; padding: 40px 0; }
}
