/* ============================================================
   MANGO GROUP - Modern Redesigned Stylesheet
   Fonts: Oswald (headings), Montserrat (body)
   ============================================================ */

:root {
    /* Color Palette - Mango inspired */
    --mango: #f5a623;
    --mango-dark: #e08e00;
    --mango-light: #ffce6b;
    --teal: #2a9d8f;
    --teal-dark: #1f7a6f;
    --teal-light: #e8f4f2;
    --green: #264653;
    --green-light: #2a9d8f;
    --ink: #1d2b35;
    --ink-soft: #4a5a66;
    --gray-light: #f5f7f8;
    --gray-border: #e3e8ec;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(38, 70, 83, 0.08);
    --shadow-md: 0 8px 24px rgba(38, 70, 83, 0.12);
    --shadow-lg: 0 16px 48px rgba(38, 70, 83, 0.18);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--ink);
    line-height: 1.2;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

/* Section headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--mango), var(--teal));
    border-radius: var(--radius-full);
    margin: 20px auto;
}

.section-subtitle {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 600px;
    margin: 0 auto;
}

.text-accent {
    color: var(--teal);
    font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--mango), var(--mango-dark));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.45);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

/* ===== NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.site-header.scrolled .logo-img {
    height: 42px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.site-header.scrolled .nav-toggle span {
    background: var(--ink);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--ink);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--ink);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    padding: 8px 0;
    position: relative;
}

.site-header.scrolled .nav-link {
    color: var(--ink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mango);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
    position: relative;
}

.dropdown li a:hover {
    color: var(--teal);
    padding-left: 30px;
    background: var(--teal-light);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(38, 70, 83, 0.55) 0%,
        rgba(38, 70, 83, 0.45) 40%,
        rgba(38, 70, 83, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero-tag {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    color: var(--mango-light);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(40px, 7vw, 88px);
    font-weight: 700;
    color: var(--white);
    text-transform: none;
    line-height: 1.15;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--mango);
    position: relative;
    display: inline-block;
}

.hero-scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll:hover {
    background: var(--mango);
    border-color: var(--mango);
    transform: translateY(4px);
    animation: none;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===== STORY SECTION ===== */
.story-section {
    background: var(--white);
    position: relative;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.story-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: center;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 16.5px;
    line-height: 1.8;
    color: var(--ink-soft);
}

.story-lead {
    font-size: 19px !important;
    color: var(--ink) !important;
    border-left: 4px solid var(--mango);
    padding-left: 24px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mango), var(--teal));
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.stat-card:hover::after {
    width: 100%;
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--teal-light);
    color: var(--teal);
    font-size: 22px;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== COMPANIES SECTION ===== */
.companies-section {
    background: var(--gray-light);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.company-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 1px solid transparent;
    position: relative;
}

.company-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 2px;
    background: linear-gradient(135deg, var(--mango), var(--teal));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.company-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.company-card:hover::before {
    opacity: 1;
}

.company-card.company-highlight {
    transform: translateY(-8px);
    box-shadow: 0 0 0 3px var(--mango), var(--shadow-lg);
    animation: pulseHighlight 1.5s ease 2;
}

.company-card.company-highlight::before {
    opacity: 1;
}

@keyframes pulseHighlight {
    0%, 100% { box-shadow: 0 0 0 3px var(--mango), var(--shadow-lg); }
    50% { box-shadow: 0 0 0 8px rgba(245, 166, 35, 0.3), var(--shadow-lg); }
}

.company-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 12px;
    background: var(--gray-light);
    border: 3px solid var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    overflow: hidden;
}

.company-card:hover .company-logo {
    border-color: var(--mango);
    transform: scale(1.06);
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-name {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ink);
}

.company-desc {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
}

/* ===== STRENGTHS SECTION ===== */
.strengths-section {
    background: var(--green);
    position: relative;
    overflow: hidden;
}

.strengths-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.15);
}

.strengths-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.08);
}

.strengths-section .section-title {
    color: var(--white);
}

.strengths-section .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.strength-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 40px 28px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.strength-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    border-color: var(--mango);
}

.strength-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--mango), var(--mango-dark));
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
    transition: var(--transition);
}

.strength-card:hover .strength-icon {
    transform: rotate(-6deg) scale(1.08);
}

.strength-card h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

.strength-line {
    width: 36px;
    height: 3px;
    background: var(--mango);
    border-radius: var(--radius-full);
    margin: 0 auto;
    transition: var(--transition);
}

.strength-card:hover .strength-line {
    width: 60px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--white);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 100%;
    box-shadow: var(--shadow-lg);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.contact-image:hover img {
    transform: scale(1.04);
}

.contact-info-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
    background: linear-gradient(0deg, rgba(38, 70, 83, 0.9), transparent);
    color: var(--white);
}

.contact-info-overlay h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-info-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info-overlay i {
    color: var(--mango);
    width: 18px;
    text-align: center;
}

.contact-form-wrap {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-border);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--ink);
    transition: var(--transition);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a8b3ba;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.12);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--ink-soft) !important;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--teal);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--teal);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--mango-dark);
}

.form-success {
    display: none;
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--teal-light);
    border: 1px solid var(--teal);
    border-radius: var(--radius-sm);
    color: var(--teal-dark);
    font-size: 14px;
    font-weight: 500;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.75);
}

.footer-top {
    padding: 64px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 8px;
}

.footer-desc {
    font-size: 14.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    max-width: 380px;
}

.footer-links-col h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--mango);
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-links-col ul li a::before {
    content: '›';
    position: absolute;
    left: -14px;
    color: var(--mango);
    opacity: 0;
    transition: var(--transition);
}

.footer-links-col ul li a:hover {
    color: var(--mango);
    padding-left: 16px;
}

.footer-links-col ul li a:hover::before {
    opacity: 1;
    left: 2px;
}

.footer-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    text-align: center;
}

.copyright {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
}

.copyright i {
    color: var(--mango);
    margin-right: 4px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mango), var(--mango-dark));
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .companies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .contact-image {
        min-height: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    /* Mobile nav */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        height: 100vh;
        background: var(--white);
        padding: 100px 40px 40px;
        transform: translateX(100%);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 1050;
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .nav-link {
        color: var(--ink);
        font-size: 18px;
        display: block;
        padding: 12px 0;
        width: 100%;
    }

    .site-header:not(.scrolled) .nav-link {
        color: var(--ink);
    }

    .has-dropdown {
        width: 100%;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        border-left: 2px solid var(--teal-light);
        margin-bottom: 8px;
    }

    .dropdown li a {
        padding: 8px 12px;
        font-size: 14px;
    }

}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }

    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .company-card {
        padding: 24px 16px;
    }

    .company-logo {
        width: 90px;
        height: 90px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .companies-grid {
        grid-template-columns: 1fr;
    }

    .company-card {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 20px;
    }

    .company-logo {
        width: 72px;
        height: 72px;
        flex-shrink: 0;
        margin: 0;
    }

    .company-name {
        font-size: 15px;
    }

    .company-desc {
        font-size: 12px;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .story-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 20px 12px;
    }

    .hero-tag {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* ===== REDUCED MOTION PREFERENCE ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}