
/* Google Fonts — Space Grotesk (headings) + DM Sans (body) */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* CSS Variables for Theme */
:root {
    --primary: #E8304F;
    --primary-dark: #c9243f;
    --secondary: #f0506a;
    --accent: #f5899b;
    --white: #ffffff;
    --off-white: #fafaf8;
    --light-bg: #fff0f2;
    --lighter-bg: #ffdde2;
    --text-dark: #111111;
    --text-mid: #3a3a3a;
    --text-gray: #6b7280;
    --border: #f0d0d6;
    --gradient-1: linear-gradient(135deg, #E8304F 0%, #f0506a 100%);
    --gradient-2: linear-gradient(135deg, #f0506a 0%, #f5899b 100%);
    --shadow: 0 2px 12px rgba(232, 48, 79, 0.08);
    --shadow-lg: 0 8px 32px rgba(232, 48, 79, 0.14);
    --radius: 12px;
    --radius-lg: 20px;
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
}

/* Utility classes */
.text-primary { color: var(--primary); }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; border-radius: 6px; }

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body), -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

header > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-mid);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.2s ease;
    position: relative;
}

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

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

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 50%, #ffe8dc 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 66, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-width: 600px;
    height: auto;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 640px) {
    .hero-logo {
        content: url('../images/header-logo-compact.png');
        max-width: 400px;
    }
}

.hero h1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: var(--text-dark);
}

.hero h1 .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.tag {
    background: var(--light-bg);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.82rem;
    border: 1px solid var(--border);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn {
    padding: 0.82rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(249, 93, 26, 0.28);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 93, 26, 0.38);
}

.btn-secondary {
    background: var(--light-bg);
    color: var(--primary);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    background: var(--lighter-bg);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Hero container centering */
.hero .container {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Compact page-hero for sub-pages — replaces full-screen .hero */
.page-hero {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 50%, #ffe8dc 100%);
    padding: 120px 0 3rem;
    text-align: center;
    border-bottom: 2px solid var(--lighter-bg);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 66, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out both;
}

.page-hero .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* .subtitle is an alias for .hero-subtitle used in sub-pages */
.subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* 4-column card grid */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Generic card */
.card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card h2 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.card a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.card a:hover {
    color: var(--primary-dark);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 1s both;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Core Competencies */
.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.competency-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--light-bg);
    transition: all 0.3s ease;
}

.competency-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.competency-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.competency-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.competency-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--light-bg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.6rem 0;
    color: var(--text-gray);
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* About Section */
#about {
    background: var(--light-bg);
    padding-top: 160px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    text-align: left;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid var(--lighter-bg);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Why Choose Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid var(--light-bg);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--light-bg);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.solution-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.solution-content {
    padding: 2rem;
}

.solution-content h3 {
    margin-bottom: 1rem;
}

.solution-content p {
    color: var(--text-gray);
}

.solution-features {
    list-style: none;
    margin-top: 1rem;
}

.solution-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.solution-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Contact Section */
#contact {
    background: var(--light-bg);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--lighter-bg);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-gray);
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--lighter-bg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--light-bg);
    border: 2px solid var(--lighter-bg);
    border-radius: 10px;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

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

/* Footer */
footer {
    background: var(--text-dark);
    padding: 3rem 2rem 1rem;
    color: var(--white);
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-1);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

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

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-logo {
        max-width: 350px;
    }

    .trust-badges {
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-tags {
        font-size: 0.85rem;
    }

    .services-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .hero-logo {
        max-width: 280px;
    }
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

/* Customers Grid */
.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

/* Section divider images */
.section-divider-mobile {
    display: none !important;
}

@media (max-width: 640px) {
    .section-divider-desktop {
        display: none !important;
    }
    .section-divider-mobile {
        display: inline-block !important;
    }
}

/* Customer Cards */
.customer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary) !important;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* WhatsApp tooltip */
.whatsapp-float::before {
    content: "Chat with us on WhatsApp";
    position: absolute;
    right: 70px;
    background: var(--text-dark);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float::before {
        display: none;
    }
}

/* ========================================
MOBILE RESPONSIVENESS FIXES
======================================== */

/* Base mobile improvements */
@media (max-width: 968px) {
    /* Container padding */
    .container {
        padding: 0 1rem !important;
    }
    
    /* Navigation fixes */
    .nav-container,
    header > .container {
        padding: 0 1rem !important;
        flex-wrap: wrap;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--lighter-bg);
    }

    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        color: var(--primary);
        font-size: 1.8rem;
        cursor: pointer;
        padding: 0.5rem;
    }

    /* Logo adjustments */
    .logo img {
        height: 36px !important;
    }

    .logo-text {
        font-size: 1.2rem !important;
    }

    /* Hero section */
    .hero {
        min-height: auto;
        padding: 100px 1rem 2rem !important;
    }

    .hero-logo {
        max-width: 90% !important;
        margin: 0 auto 1rem !important;
    }

    .hero h1 {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        padding: 0 0.5rem;
    }

    .hero-tags {
        gap: 0.5rem !important;
        justify-content: center;
    }

    .tag {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem !important;
    }

    .badge-number {
        font-size: 2rem !important;
    }

    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        padding: 1rem !important;
        font-size: 1rem !important;
    }

    /* Section spacing */
    section {
        padding: 3rem 0 !important;
    }

    #about {
        padding-top: 100px !important;
    }

    .section-header {
        margin-bottom: 2rem !important;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
    }

    /* About section */
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Tal Shany bio section */
    .about-content > div[style*="grid-template-columns: 200px 1fr"] {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .about-content img[alt*="Tal Shany"] {
        margin: 0 auto !important;
    }

    /* Competencies grid */
    .competencies-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .service-card {
        padding: 1.5rem !important;
    }

    /* Why Choose section */
    .why-choose-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Solutions grid */
    .solutions-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Customers grid */
    .customers-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .customer-card {
        padding: 1.5rem !important;
    }

    /* Stats grid */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Contact section */
    .contact-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* WhatsApp button */
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
    }

    .whatsapp-float svg {
        width: 28px !important;
        height: 28px !important;
    }

    .whatsapp-float::before {
        display: none !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.75rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
    }

    .tag {
        font-size: 0.75rem !important;
        padding: 0.3rem 0.6rem !important;
    }

    .logo img {
        height: 70px !important;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    /* Tech stack grid */
    .tech-stack {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }

    .tech-item {
        padding: 0.8rem !important;
        font-size: 0.85rem !important;
    }

    /* Make all grids single column on very small screens */
    .about-content > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }
}

/* Landscape mobile fix */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        min-height: auto !important;
        padding: 120px 1rem 2rem !important;
    }
}

/* Fix for any inline styles that might override */
@media (max-width: 968px) {
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="display: grid"] {
        gap: 1.5rem !important;
    }
}

/* Form Messages Styling */
#form-messages {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#form-messages p {
    margin: 0;
}

#captcha {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.g-recaptcha {
    margin: 1rem 0;
}


/* ========================================
   VISUAL REFRESH OVERRIDES 2025
   ======================================== */

/* Sections alternating background */
section:nth-child(even) {
    background: var(--off-white);
}

/* Section headers — tighter, bolder */
.section-title {
    font-family: var(--font-display) !important;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.15 !important;
    color: var(--text-dark) !important;
}

.section-subtitle {
    font-size: 1rem !important;
    color: var(--text-gray) !important;
    font-weight: 400 !important;
    max-width: 640px;
    line-height: 1.7;
}

/* Service cards — clean, modern */
.service-card {
    border-radius: var(--radius) !important;
    border: 1px solid var(--border) !important;
    border-top: 3px solid var(--primary) !important;
    background: var(--white) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.service-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary) !important;
}

/* Pricing cards */
.pricing-card {
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--border) !important;
    background: var(--white) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.pricing-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-lg) !important;
}

.pricing-card.featured {
    border: 2px solid var(--primary) !important;
    background: linear-gradient(160deg, #fff8f5 0%, #ffffff 100%) !important;
}

.pricing-badge {
    background: var(--primary) !important;
    border-radius: 6px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
}

/* Trust badges */
.badge-number {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    letter-spacing: -0.03em !important;
}

/* Contact form */
.contact-form {
    background: var(--off-white) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
    padding: 2.5rem !important;
}

input, textarea, select {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    background: var(--white) !important;
    color: var(--text-dark) !important;
}

input:focus, textarea:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(249, 93, 26, 0.1) !important;
}

label {
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    color: var(--text-mid) !important;
    margin-bottom: 0.4rem !important;
    display: block !important;
}

/* Footer */
footer {
    background: #0f0f0f !important;
}

footer h4 {
    color: #ffffff !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    margin-bottom: 1.2rem !important;
}

footer a, footer p {
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.88rem !important;
    line-height: 2.2 !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}

footer a:hover {
    color: var(--primary) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    padding-top: 1.5rem !important;
    margin-top: 2rem !important;
}

.footer-bottom p {
    font-size: 0.82rem !important;
    color: rgba(255,255,255,0.3) !important;
}

/* WhatsApp float — cleaner */
.whatsapp-float {
    width: 52px !important;
    height: 52px !important;
    border-radius: 14px !important;
    background: #25D366 !important;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35) !important;
}

/* Scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section divider line accent */
.section-header::after {
    display: none;
}

/* Hero section cleanup */
.hero {
    background: linear-gradient(160deg, #ffffff 0%, #fff5f6 55%, #ffdde2 100%) !important;
}

/* ================================================
   PRIVACY POLICY PAGE
   ================================================ */
.privacy-body {
    max-width: 780px;
    margin: 0 auto;
}
.privacy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--light-bg);
}
.privacy-section:last-child {
    border-bottom: none;
}
.privacy-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.privacy-section p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
.privacy-section ul {
    margin: 0.75rem 0 0.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.privacy-section ul li {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.7;
}
.privacy-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.privacy-section a:hover {
    text-decoration: underline;
}

/* ================================================
   WHY BISKILLED / WHY NOW SECTION
   ================================================ */
.why-section {
    background: #111111 !important;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 50% at 15% 40%, rgba(232,48,79,.07) 0%, transparent 65%),
        radial-gradient(ellipse 45% 55% at 85% 60%, rgba(232,48,79,.05) 0%, transparent 65%);
    pointer-events: none;
}
.why-header {
    text-align: center;
    margin-bottom: 56px;
}
.why-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid rgba(232,48,79,.3);
    padding: 0.4rem 1.1rem;
    border-radius: 4px;
    background: rgba(232,48,79,.06);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
}
.why-col {
    padding: 52px 48px;
    background: transparent;
    border: none;
    border-radius: 0;
}
.why-col--left {
    border-right: 1px solid rgba(255,255,255,.07);
}
.why-number {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--primary);
    margin-bottom: 16px;
}
.why-title {
    font-size: clamp(1.7rem, 2.5vw, 2.2rem) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.03em !important;
    line-height: 1.1 !important;
    margin-bottom: 18px !important;
}
.why-lead {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 14px;
    line-height: 1.5;
}
.why-body {
    font-size: 0.9rem;
    color: rgba(255,255,255,.52);
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: 300;
}
.why-points {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 26px;
}
.why-point {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.87rem;
    color: rgba(255,255,255,.68);
    line-height: 1.5;
}
.why-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}
.why-urgency {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 26px;
}
.why-urgency-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 15px 16px;
}
.why-urgency-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.why-urgency-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 3px;
}
.why-urgency-item span {
    color: rgba(255,255,255,.48);
    font-size: 0.82rem;
    line-height: 1.6;
    font-weight: 300;
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
    background: #fafaf8;
    padding: 80px 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 1060px;
    margin: 0 auto;
}
.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item:hover {
    border-color: rgba(232,48,79,.3);
    box-shadow: 0 2px 12px rgba(232,48,79,.08);
}
.faq-item.open {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(232,48,79,.1);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.15rem 1.4rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 700;
    color: #111111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    line-height: 1.4;
    transition: color 0.2s;
    font-family: var(--font-body);
}
.faq-q:hover { color: var(--primary); }
.faq-item.open .faq-q { color: var(--primary); }
.faq-icon {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.25s;
    line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 1.4rem;
}
.faq-item.open .faq-a {
    max-height: 320px;
    padding: 0 1.4rem 1.15rem;
}
.faq-a p {
    font-size: 0.87rem;
    color: #6b7280;
    line-height: 1.75;
    border-top: 1px solid var(--border);
    padding-top: 0.9rem;
    margin: 0;
}
.faq-a strong { color: #111111; font-weight: 700; }

/* ================================================
   RESPONSIVE — WHY & FAQ
   ================================================ */
@media (max-width: 900px) {
    .why-section .why-grid { grid-template-columns: 1fr !important; }
    .why-col { padding: 40px 24px !important; }
    .why-col--left { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.07); }
    .faq-grid { grid-template-columns: 1fr !important; }
    #services .container > div[style*="grid-template-columns:repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
    #why > .container > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}

