/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a1f44;
    --primary-light: #1a3a6b;
    --accent: #f7941d;
    --accent-hover: #e5850a;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-bg: #0d1b2a;
    --text: #333333;
    --text-light: #666666;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 96px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

.logo-text span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent);
    background: rgba(247, 148, 29, 0.08);
}

.nav-link.active {
    color: var(--accent);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    z-index: 100;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    color: var(--text);
    transition: var(--transition);
}

.dropdown a:hover {
    background: var(--light-bg);
    color: var(--accent);
    padding-left: 25px;
}

/* CTA Button in Nav */
.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(247,148,29,0.25), transparent 55%);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--white);
    padding: 40px 0;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 148, 29, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 31, 68, 0.3);
}

/* ===== MEMBERSHIP BANNER ===== */
.membership-banner {
    background: var(--light-bg);
    border-top: 1px solid rgba(10, 31, 68, 0.08);
    border-bottom: 1px solid rgba(10, 31, 68, 0.08);
    padding: 14px 0;
}

.membership-banner-inner {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.membership-banner-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.membership-banner-label i {
    color: var(--accent);
}

.membership-banner-logos {
    flex: 1;
    overflow: hidden;
}

.membership-banner-track {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.membership-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(80px);
    animation: membershipSlideIn 0.9s ease forwards;
}

.membership-logo-item:nth-child(1) { animation-delay: 0.2s; }
.membership-logo-item:nth-child(2) { animation-delay: 0.9s; }
.membership-logo-item:nth-child(3) { animation-delay: 1.6s; }
.membership-logo-item:nth-child(4) { animation-delay: 2.3s; }
.membership-logo-item:nth-child(5) { animation-delay: 3s; }
.membership-logo-item:nth-child(6) { animation-delay: 3.7s; }

@keyframes membershipSlideIn {
    from { opacity: 0; transform: translateX(80px); }
    to { opacity: 1; transform: translateX(0); }
}

.membership-banner-logos img {
    height: 34px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: var(--transition);
    flex-shrink: 0;
}

.membership-banner-logos img:hover {
    opacity: 1;
    transform: scale(1.08);
}

.membership-logo-item span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .membership-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .membership-banner-logos {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--accent) var(--light-bg);
    }

    .membership-banner-logos::-webkit-scrollbar {
        height: 6px;
    }

    .membership-banner-logos::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 10px;
    }

    .membership-banner-track {
        flex-wrap: nowrap;
        width: max-content;
        padding-bottom: 6px;
    }
}

@media (max-width: 576px) {
    .membership-banner-inner { text-align: left; }
}

/* ===== GLOBAL MEMBERSHIPS SLIDER (Media & Events) ===== */
.membership-slider {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    height: 420px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.membership-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0s linear 0.8s;
}

.membership-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 2;
}

.membership-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.membership-slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.membership-slider-dots {
    position: absolute;
    bottom: 62px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
}

.membership-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(10, 31, 68, 0.2);
    transition: var(--transition);
}

.membership-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

@media (max-width: 576px) {
    .membership-slider { height: 320px; }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 40px;
    background: var(--primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 260px;
}

.cookie-banner-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(247, 148, 29, 0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.cookie-banner-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-content p a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-decline {
    padding: 11px 26px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cookie-accept {
    background: var(--accent);
    color: var(--white);
}

.btn-cookie-accept:hover {
    background: #e08315;
}

.btn-cookie-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cookie-decline:hover {
    border-color: var(--white);
    color: var(--white);
}

@media (max-width: 576px) {
    .cookie-banner {
        padding: 18px 20px;
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-banner-actions {
        justify-content: stretch;
    }
    .btn-cookie-accept,
    .btn-cookie-decline {
        flex: 1;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--dark-bg);
    color: var(--white);
}

.promise-section {
    position: relative;
    background: linear-gradient(rgba(13,27,42,0.9), rgba(13,27,42,0.9)), url('../images/Cosmo-Featured-Image.png') center/cover no-repeat;
    background-attachment: fixed;
    padding: 28px 0;
}

.promise-section .section-title {
    margin-bottom: 20px;
}

.promise-section .section-title h2 {
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.promise-section .section-title p {
    font-size: 0.85rem;
}

.promise-section .section-title .accent-line {
    margin: 8px auto 0;
}

.promise-section .features-grid {
    gap: 14px;
}

.promise-section .feature-item {
    padding: 14px 10px;
}

.promise-section .feature-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 8px;
    font-size: 1.1rem;
}

.promise-section .feature-item h4 {
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.promise-section .feature-item p {
    font-size: 0.78rem;
}

@media (max-width: 768px) {
    .promise-section {
        background-attachment: scroll;
    }
}

.section-light {
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-dark .section-title h2 {
    color: var(--white);
}

.section-title p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-title p {
    color: rgba(255,255,255,0.7);
}

.section-title .accent-line {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ===== STATS ===== */
.stats-section {
    padding: 28px 0;
}

.stats-section .section-title {
    margin-bottom: 20px;
}

.stats-section .section-title h2 {
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.stats-section .section-title .accent-line {
    margin: 8px auto 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    text-align: center;
}

.stat-item {
    padding: 14px 10px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 148, 29, 0.1);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card .learn-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card .learn-more:hover {
    color: var(--accent-hover);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image .placeholder-img {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ===== PROMISE / FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 148, 29, 0.15);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--accent);
}

.feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.section-dark .feature-item h4 {
    color: var(--white);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.section-dark .feature-item p {
    color: rgba(255,255,255,0.7);
}

/* ===== INDUSTRIES ===== */
.industries-section {
    padding: 45px 0;
}

.industries-section .section-title {
    margin-bottom: 35px;
}

.industries-section .section-title h2 {
    font-size: 1.9rem;
    margin-bottom: 8px;
}

.industries-section .section-title p {
    font-size: 0.95rem;
}

.industries-section .section-title .accent-line {
    margin: 10px auto 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

.industry-card {
    background: var(--white);
    padding: 20px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent);
    background-size: 200% 200%;
    animation: industryColorShift 10s ease-in-out infinite alternate;
}

.industry-card:hover {
    transform: translateX(5px) translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.industry-card .icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 10px;
}

.industry-card h4 {
    color: var(--primary);
    margin-bottom: 6px;
    font-size: 1rem;
}

.industry-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

@keyframes industryColorShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.industry-card:nth-child(1) { background-image: linear-gradient(135deg, #eaf4ff, #ffffff, #dceeff); }
.industry-card:nth-child(2) { background-image: linear-gradient(135deg, #eafff2, #ffffff, #d9ffe9); }
.industry-card:nth-child(3) { background-image: linear-gradient(135deg, #fff3e6, #ffffff, #ffe3c2); }
.industry-card:nth-child(4) { background-image: linear-gradient(135deg, #f2eaff, #ffffff, #e6d6ff); }
.industry-card:nth-child(5) { background-image: linear-gradient(135deg, #ffeaf1, #ffffff, #ffd7e6); }
.industry-card:nth-child(6) { background-image: linear-gradient(135deg, #eafcff, #ffffff, #d3f7ff); }
.industry-card:nth-child(7) { background-image: linear-gradient(135deg, #fffbe6, #ffffff, #fff2b8); }
.industry-card:nth-child(8) { background-image: linear-gradient(135deg, #e6fff5, #ffffff, #c8ffe9); }
.industry-card:nth-child(9) { background-image: linear-gradient(135deg, #f0f4ff, #ffffff, #dbe4ff); }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 50px 0;
}

.testimonials-section .section-title {
    margin-bottom: 30px;
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item {
    padding: 25px 35px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-item .quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.testimonial-item .author {
    font-weight: 600;
    color: var(--primary);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.testimonial-item .role {
    font-size: 0.85rem;
    color: var(--text-light);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Quotation mark styling */
.testimonial-item .quote-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 148, 29, 0.12);
    color: var(--accent);
    border-radius: 50%;
    font-size: 1.05rem;
}

/* Slider mechanics: only the active testimonial is shown, cross-faded in */
.testimonials-slider .testimonial-item {
    display: none;
}

.testimonials-slider .testimonial-item.active {
    display: block;
    animation: testimonialFade 0.6s ease;
}

@keyframes testimonialFade {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll-bar style progress indicator */
.testimonial-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.testimonial-progress .progress-bar {
    width: 60px;
    height: 5px;
    background: rgba(10, 31, 68, 0.12);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.testimonial-progress .progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 3px;
}

.testimonial-progress .progress-bar.completed .progress-fill {
    width: 100%;
}

.testimonial-progress .progress-bar.active .progress-fill {
    animation: progressFill 4s linear forwards;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

/* ===== CLIENTS SECTION ===== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.client-logo {
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: var(--transition);
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.client-logo img {
    max-height: 60px;
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover img {
    opacity: 1;
}

/* ===== CLIENT SECTOR ROWS ===== */
.client-sectors {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.client-sector-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 25px;
    align-items: stretch;
}

.client-sector-row.reverse {
    grid-template-columns: 2fr 1fr;
}

.client-sector-row.reverse .client-sector-image {
    order: -1;
}

.client-sector-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 25px 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent);
}

.client-sector-row:hover .client-sector-title {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.client-sector-title h3 {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
}

.client-sector-image {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: var(--transition);
}

.client-sector-image:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.client-sector-image img {
    width: 100%;
    max-height: 150px;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.client-sector-image:hover img {
    transform: scale(1.05);
}

/* ===== BLOG CARDS ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-date {
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-card .read-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.88rem;
}

/* ===== MEDIA & EVENTS PAGE ===== */
.media-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.media-column h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.media-column h3 span {
    color: var(--accent);
}

.media-column p {
    color: var(--text-light);
    line-height: 1.8;
}

.media-column p a {
    color: var(--accent);
    font-weight: 600;
}

.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.award-video-wrapper {
    max-width: 360px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #000;
}

.award-video-wrapper video {
    width: 100%;
    display: block;
}

.awards-recognition-text {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
}

.awards-recognition-text strong {
    color: var(--primary);
}

@media (max-width: 768px) {
    .media-columns { grid-template-columns: 1fr; gap: 25px; }
}

/* ===== CONTACT / QUOTE FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail .icon {
    width: 45px;
    height: 45px;
    background: rgba(247, 148, 29, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail .info h4 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 3px;
}

.contact-detail .info p {
    margin: 0;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== PHONE INPUT WITH COUNTRY CODE ===== */
.phone-input-wrapper {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: visible;
    transition: var(--transition);
    position: relative;
}

.phone-input-wrapper:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.1);
}

.phone-input-wrapper input[type="tel"] {
    border: none;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    flex: 1;
    min-width: 0;
    outline: none;
    background: transparent;
}

.phone-input-wrapper input[type="tel"]:focus {
    box-shadow: none;
}

.country-code-select {
    position: relative;
    flex-shrink: 0;
}

.selected-country {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    cursor: pointer;
    border-right: 1px solid var(--border);
    background: var(--light-bg);
    border-radius: var(--radius) 0 0 var(--radius);
    height: 100%;
    user-select: none;
    transition: var(--transition);
}

.selected-country:hover {
    background: #eee;
}

.selected-country .flag {
    font-size: 1.3rem;
    line-height: 1;
}

.selected-country .code {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.selected-country i {
    font-size: 0.65rem;
    color: var(--text-light);
    transition: var(--transition);
}

.country-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.country-dropdown.open {
    display: block;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.country-search {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
}

.country-search:focus {
    box-shadow: none;
    border-color: var(--accent);
}

.country-list {
    max-height: 220px;
    overflow-y: auto;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.15s;
}

.country-option:hover {
    background: var(--light-bg);
}

.country-option .flag {
    font-size: 1.2rem;
}

.country-option .name {
    flex: 1;
    font-size: 0.88rem;
    color: var(--text);
}

.country-option .code {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== VISION / QUALITY / MISSION ===== */
.vqm-section {
    position: relative;
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5eb19?w=1400') center/cover no-repeat fixed;
}

.vqm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 68, 0.88);
}

.vqm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.vqm-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vqm-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-5px);
}

.vqm-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.vqm-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 15px;
}

.vqm-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .vqm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .vqm-card {
        padding: 30px 20px;
    }
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(247,148,29,0.2), transparent 55%);
    opacity: 0.6;
}

.page-banner h1 {
    position: relative;
    font-size: 2.8rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
}

.page-banner p {
    position: relative;
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
}

.breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb a:hover {
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about .logo-text {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.1);
}

.social-links a[aria-label="Facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 5px 20px rgba(24,119,242,0.4);
}

.social-links a[aria-label="YouTube"]:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 5px 20px rgba(255,0,0,0.4);
}

.social-links a[aria-label="LinkedIn"]:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    box-shadow: 0 5px 20px rgba(10,102,194,0.4);
}

.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #e6683c;
    box-shadow: 0 5px 20px rgba(225,48,108,0.4);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.home-cta {
    padding: 28px 0;
}

.home-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.home-cta p {
    font-size: 0.85rem;
    margin-bottom: 16px;
}

/* ===== TEAM / PEOPLE ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-card-img {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.team-card-content {
    padding: 25px;
}

.team-card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.team-card p {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* Founder featured card responsive */
.member-featured-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
}

@media (max-width: 768px) {
    .member-featured-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===== SOLUTIONS ===== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.solution-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== SOLUTION ROWS (image + content, alternating) ===== */
.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.solution-row {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    align-items: center;
}

.solution-row.reverse {
    grid-template-columns: 3fr 2fr;
}

.solution-row.reverse .solution-image {
    order: 1;
}

.solution-image {
    max-width: 280px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.solution-image:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.solution-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.solution-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 148, 29, 0.15);
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.solution-content h3 {
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}

.solution-content h3 .line-1 {
    color: var(--primary);
}

.solution-content h3 .line-2 {
    color: var(--accent);
}

.solution-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== SOLUTION HIGHLIGHTS (Meet Cosmo icon row) ===== */
.solution-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.solution-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solution-highlight-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: var(--transition);
}

.solution-highlight-item:hover img {
    transform: translateY(-5px);
}

.solution-highlight-item h4 {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .solution-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 768px) {
    .solution-row,
    .solution-row.reverse {
        grid-template-columns: 1fr;
    }

    .solution-row.reverse .solution-image {
        order: 0;
    }

    .solution-image {
        max-width: 220px;
    }

    .solution-image img {
        height: 160px;
    }

    .why-anim {
        max-width: 220px;
        height: 150px;
    }
}

/* ===== WHY US ANIMATED ICONS ===== */
.why-anim {
    max-width: 280px;
    height: 190px;
    margin: 0 auto;
    border-radius: var(--radius);
    background: var(--light-bg);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Badge with pulsing rings: Unmatched Experience / Customer Services */
.anim-badge {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 2;
}

.anim-badge.alt {
    background: var(--accent);
}

.anim-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
    animation: ringPulse 2.5s ease-out infinite;
}

.anim-badge.alt .anim-ring {
    border-color: var(--primary);
}

.anim-ring.ring-2 {
    animation-delay: 0.8s;
}

@keyframes ringPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}

/* Network scene: Latest Technologies */
.anim-network {
    position: relative;
    width: 180px;
    height: 150px;
}

.net-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transform: translate(-50%, -50%);
    animation: coreSpin 12s linear infinite;
    z-index: 2;
}

@keyframes coreSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.net-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

.net-dot.n1 { top: 8px; left: 20px; }
.net-dot.n2 { top: 8px; right: 15px; animation-delay: 0.3s; }
.net-dot.n3 { top: 70px; left: 0; animation-delay: 0.6s; }
.net-dot.n4 { top: 70px; right: 0; animation-delay: 0.9s; }
.net-dot.n5 { bottom: 5px; left: 50%; transform: translateX(-50%); animation-delay: 1.2s; }

/* Equalizer bars: Customized Flexibility */
.anim-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
}

.anim-bars .bar {
    width: 14px;
    border-radius: 6px;
    transform-origin: bottom;
    animation: barPulse 1.4s ease-in-out infinite alternate;
}

.anim-bars .bar.b1 { height: 40px; background: var(--accent); animation-delay: 0s; }
.anim-bars .bar.b2 { height: 70px; background: var(--primary); animation-delay: 0.15s; }
.anim-bars .bar.b3 { height: 100px; background: var(--accent); animation-delay: 0.3s; }
.anim-bars .bar.b4 { height: 65px; background: var(--primary); animation-delay: 0.45s; }
.anim-bars .bar.b5 { height: 45px; background: var(--accent); animation-delay: 0.6s; }

@keyframes barPulse {
    0% { transform: scaleY(0.55); }
    100% { transform: scaleY(1); }
}

/* Growth chart: Competitive Pricing */
.anim-chart {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 110px;
    padding: 0 20px 10px 0;
}

.chart-bar {
    width: 22px;
    border-radius: 4px 4px 0 0;
    transform-origin: bottom;
    background: var(--primary);
    animation: chartGrow 3s ease-in-out infinite;
}

.chart-bar.cb1 { height: 30%; animation-delay: 0s; background: var(--accent); }
.chart-bar.cb2 { height: 55%; animation-delay: 0.2s; }
.chart-bar.cb3 { height: 75%; animation-delay: 0.4s; background: var(--accent); }
.chart-bar.cb4 { height: 95%; animation-delay: 0.6s; }

@keyframes chartGrow {
    0%, 100% { transform: scaleY(0.6); }
    50% { transform: scaleY(1); }
}

.trend-arrow {
    position: absolute;
    top: 10px;
    right: 5px;
    color: var(--accent);
    font-size: 1.4rem;
    animation: arrowFloat 2s ease-in-out infinite;
}

@keyframes arrowFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    50% { transform: translate(4px, -6px); opacity: 1; }
}

/* ===== MEDIA / EVENTS ===== */
.events-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-item:hover {
    box-shadow: var(--shadow-hover);
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.event-date .month {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.event-content h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.event-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== WHY US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.why-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(247, 148, 29, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
}

.why-card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 2.6rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: var(--transition);
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item { width: 100%; }
    
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-item:has(.dropdown) > .nav-link::after {
        content: '+';
        font-size: 1.2rem;
        color: var(--text-light);
        transition: var(--transition);
    }
    
    .nav-item.open:has(.dropdown) > .nav-link::after {
        content: '\2212';
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 15px;
        display: none;
    }
    
    .nav-item.open .dropdown {
        display: block;
    }
    
    .dropdown a {
        padding: 8px 0;
        font-size: 0.85rem;
    }
    
    .hero { padding-top: 130px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; }
    
    .page-banner h1 { font-size: 2rem; }
    .page-banner { padding: 150px 0 40px; }
    
    .section { padding: 60px 0; }
    .section-title h2 { font-size: 2rem; }

    .client-sector-row,
    .client-sector-row.reverse {
        grid-template-columns: 1fr;
    }

    .client-sector-row.reverse .client-sector-image {
        order: 0;
    }

    .event-item { flex-direction: column; gap: 15px; }
}

@media (max-width: 480px) {
    .hero { padding-top: 110px; }
    .hero-content h1 { font-size: 1.8rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .nav-cta { display: block; text-align: center; margin-top: 15px; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

/* ===== HERO SHIPPING ANIMATION ===== */
.hero-animation {
    position: relative;
    width: 450px;
    height: 400px;
    flex-shrink: 0;
    overflow: hidden;
}

.animation-scene {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Ocean Waves */
.wave {
    position: absolute;
    bottom: 60px;
    left: -10%;
    width: 120%;
    height: 30px;
    border-radius: 50%;
    opacity: 0.6;
}

.wave-1 {
    background: rgba(135,206,235,0.6);
    animation: waveMove 4s ease-in-out infinite;
    bottom: 75px;
}

.wave-2 {
    background: rgba(100,180,220,0.5);
    animation: waveMove 5s ease-in-out infinite 0.5s;
    bottom: 60px;
}

.wave-3 {
    background: rgba(70,150,200,0.45);
    animation: waveMove 6s ease-in-out infinite 1s;
    bottom: 45px;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(-5%) scaleY(1); }
    50% { transform: translateX(5%) scaleY(1.8); }
}

/* Cargo Ship */
.ship {
    position: absolute;
    bottom: 65px;
    left: 10%;
    width: 200px;
    animation: shipSail 12s ease-in-out infinite;
}

@keyframes shipSail {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(40px) translateY(-5px) rotate(0.5deg); }
    50% { transform: translateX(80px) translateY(0) rotate(0deg); }
    75% { transform: translateX(40px) translateY(3px) rotate(-0.5deg); }
    100% { transform: translateX(0) translateY(0) rotate(0deg); }
}

/* Flying Airplane */
.plane {
    position: absolute;
    top: 30px;
    left: -80px;
    width: 80px;
    animation: planeFly 8s linear infinite;
}

@keyframes planeFly {
    0% { left: -80px; top: 50px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 480px; top: 20px; opacity: 0; }
}

/* Delivery Truck */
.truck {
    position: absolute;
    bottom: 20px;
    width: 90px;
    animation: truckDrive 10s linear infinite;
}

@keyframes truckDrive {
    0% { left: -100px; }
    100% { left: 500px; }
}

/* Floating Packages */
.package {
    position: absolute;
    width: 35px;
    height: 35px;
}

.pkg-1 {
    top: 80px;
    right: 50px;
    animation: floatPkg 3s ease-in-out infinite;
}

.pkg-2 {
    top: 150px;
    right: 20px;
    animation: floatPkg 3.5s ease-in-out infinite 0.5s;
}

.pkg-3 {
    top: 120px;
    right: 90px;
    animation: floatPkg 4s ease-in-out infinite 1s;
}

@keyframes floatPkg {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Route Dots */
.route-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

.dot-1 { top: 60px; left: 80px; animation-delay: 0s; }
.dot-2 { top: 100px; left: 200px; animation-delay: 0.5s; }
.dot-3 { top: 45px; left: 300px; animation-delay: 1s; }

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 0.5; box-shadow: 0 0 0 0 rgba(247,148,29,0.4); }
    50% { transform: scale(1.5); opacity: 1; box-shadow: 0 0 10px 5px rgba(247,148,29,0.2); }
}

/* Responsive: scale animation down to fit on smaller screens */
@media (max-width: 1024px) {
    .hero-animation {
        width: 350px;
        height: 300px;
    }

    .animation-scene {
        width: 450px;
        height: 400px;
        transform: scale(0.7778);
        transform-origin: top left;
    }
}

@media (max-width: 768px) {
    .hero-animation {
        width: 300px;
        height: 267px;
        margin: 20px auto 0;
    }

    .animation-scene {
        transform: scale(0.6667);
    }
}

@media (max-width: 480px) {
    .hero-animation {
        width: 240px;
        height: 213px;
        margin: 15px auto 0;
    }

    .animation-scene {
        transform: scale(0.5333);
    }
}

