/* GLOBAL SETTINGS */
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    transition: background-color 0.3s ease;
}

img {
    content-visibility: auto;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure images and videos don't overflow */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* ================= NAVBAR ================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    font-weight: 700;
    font-size: 1.3rem;
    color: #101828;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 4px;
    padding-top: 4px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e07a5f;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover {
    color: #e07a5f;
    transform: translateY(-2px);
}

nav a.active {
    color: #e07a5f;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #101828;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= HERO ================= */

.hero {
    position: relative;
    height: 100vh;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: white;
    background: linear-gradient(120deg, #101828, #1e3a5f, #2a4365);
    background-size: 200% 200%;
    animation: gradientAnimation 15s ease infinite;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 60% 40%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 80% 80%, rgba(255,255,255,0.15), transparent),
        radial-gradient(3px 3px at 10% 60%, rgba(224,122,95,0.2), transparent),
        radial-gradient(3px 3px at 70% 20%, rgba(224,122,95,0.15), transparent),
        radial-gradient(2px 2px at 90% 50%, rgba(255,255,255,0.25), transparent);
    animation: particleDrift 20s linear infinite;
    will-change: transform;
    z-index: 1;
}

@keyframes particleDrift {
    0%   { transform: translateY(0) translateX(0); }
    50%  { transform: translateY(-30px) translateX(15px); }
    100% { transform: translateY(0) translateX(0); }
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(224, 122, 95, 0.15);
    border: 1px solid rgba(224, 122, 95, 0.4);
    color: #e07a5f;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-btn {
    padding: 14px 35px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.secondary-btn:hover::before {
    left: 0;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::after {
    content: '';
    width: 4px;
    height: 8px;
    background: #e07a5f;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%   { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 22px; }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 24, 40, 0.5) 0%, rgba(30, 58, 95, 0.4) 50%, rgba(42, 67, 101, 0.5) 100%);
    z-index: 0;
    pointer-events: none;
}

/* Button */
.primary-btn {
    padding: 14px 35px;
    background: #e07a5f;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.primary-btn:hover::before {
    width: 300px;
    height: 300px;
}

.primary-btn:hover {
    background: #c86c52;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 122, 95, 0.5);
}

/* ================= SECTIONS ================= */

section {
    padding: 100px 80px;
}

/* Mobile-first responsive fixes */
@media (max-width: 1440px) {
    section {
        padding: 80px 60px;
    }
    
    .navbar {
        padding: 20px 60px;
    }
    
    .footer-top {
        padding: 60px 60px 40px;
    }
    
    .footer-bottom {
        padding: 20px 60px;
    }
}

@media (max-width: 1200px) {
    section {
        padding: 70px 50px;
    }
    
    .navbar {
        padding: 18px 40px;
    }
    
    .footer-top {
        padding: 50px 50px 35px;
    }
    
    .footer-bottom {
        padding: 18px 50px;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.1rem;
    }
}

@media (max-width: 1024px) {
    section {
        padding: 60px 40px;
    }
    
    .navbar {
        padding: 16px 30px;
    }
    
    .footer-top {
        padding: 45px 40px 30px;
    }
    
    .footer-bottom {
        padding: 16px 40px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.9rem;
    }
    
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ================= BRANDS ================= */

.brands {
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f7f6f4 100%);
    padding-bottom: 30px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 20px;
}

.brand-card {
    --accent: #e07a5f;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.85));
    border-radius: 14px;
    transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.45s;
    cursor: pointer;
    text-align: center;
    border: 1px solid rgba(16,24,40,0.04);
    will-change: transform, box-shadow;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* soft colored glow behind each card using the accent variable */
.brand-card::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    right: -30px;
    top: -40px;
    background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 40%);
    filter: blur(30px);
    opacity: 0.65;
    transform: scale(0.9);
    transition: transform 0.6s, opacity 0.45s;
    pointer-events: none;
}

.brand-card:hover::after {
    transform: scale(1.05);
    opacity: 1;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 48px rgba(16, 24, 40, 0.12);
}

.brand-logo {
    width: 140px;
    height: 90px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
    z-index: 2;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.45s;
    will-change: transform, box-shadow;
}

.brand-card:hover .brand-logo img {
    transform: scale(1.18);
    box-shadow: 0 12px 30px rgba(16,24,40,0.12);
}

/* Per-brand accent colors (match brand identity where possible) */
.brand-grid .brand-card:nth-child(1) { --accent: #ff4d4f; } /* Miniso - red */
.brand-grid .brand-card:nth-child(2) { --accent: #0075ff; } /* Skechers - blue */
.brand-grid .brand-card:nth-child(3) { --accent: #d4af37; } /* Mia - gold */
.brand-grid .brand-card:nth-child(4) { --accent: #f59e0b; } /* Helios - amber */
.brand-grid .brand-card:nth-child(5) { --accent: #ff2d20; } /* Puma - red */

.brand-card h3 {
    font-size: 1.3rem;
    margin: 10px 0 5px;
    color: #101828;
}

.brand-card p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* ================= ABOUT ================= */

.about {
    background: #faf8f5;
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}

.about-content h2 {
    text-align: center;
    margin-bottom: 18px;
}

.about-lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 14px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: #555;
    margin: 0 0 14px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ================= BRAND LOGO CAROUSEL ================= */

.brand-carousel-section {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: carouselScroll 20s linear infinite;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 200px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.12);
}

@keyframes carouselScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-carousel-section:hover .carousel-track {
    animation-play-state: paused;
}

/* ================= EXPERTISE ================= */

.expertise {
    text-align: center;
    background: #fff;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.expertise-card {
    padding: 40px 25px;
    background: #faf8f5;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #eee;
    will-change: transform, box-shadow, border-color;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 122, 95, 0.08), transparent);
    transition: left 0.6s ease;
}

.expertise-card:hover::before {
    left: 100%;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(224, 122, 95, 0.15);
    border-color: #e07a5f;
}

.expertise-card i {
    font-size: 2.5rem;
    color: #e07a5f;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.expertise-card:hover i {
    transform: scale(1.15) rotateZ(10deg);
}

.expertise-card h3 {
    font-size: 1.2rem;
    color: #101828;
    margin-bottom: 10px;
}

.expertise-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ================= STATS / STORE PRESENCE ================= */

.stats {
    background: linear-gradient(135deg, #101828, #1e3a5f);
    color: white;
    text-align: center;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.stats h2 {
    color: #fff;
}

.stats .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat {
    padding: 30px 20px;
}

.stat h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #e07a5f;
}

.stat p {
    font-size: 1rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.presence-cities {
    margin-top: 20px;
}

.presence-cities h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.city-tags span {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.city-tags span:hover {
    background: #e07a5f;
    border-color: #e07a5f;
}

/* ================= GALLERY ================= */

.gallery {
    text-align: center;
    background: #faf8f5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
    opacity: 1 !important;
    transform: none !important;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(16, 24, 40, 0.95));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
}

.gallery-item.more-stores {
    background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.25), transparent 35%),
                radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.2), transparent 30%),
                linear-gradient(140deg, #101828 0%, #1f5f8b 55%, #e07a5f 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.24);
}

.more-stores-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
    padding: 26px;
    position: relative;
    z-index: 1;
}

.more-stores-content i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.more-stores-content h3 {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.15;
}

.more-stores-content p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.more-stores-cta {
    display: inline-block;
    margin-top: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}

.gallery-item.more-stores:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 22px 40px rgba(16, 24, 40, 0.3);
}

/* ================= CONTACT ================= */

.contact {
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    text-align: left;
    color: #101828;
}

.contact-info > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.2rem;
    color: #e07a5f;
    margin-top: 4px;
}

.info-item strong {
    display: block;
    color: #101828;
    margin-bottom: 3px;
}

.info-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #faf8f5;
    border-radius: 50%;
    color: #101828;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.contact-socials a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #e07a5f;
    transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.contact-socials a:hover::before {
    left: 0;
}

.contact-socials a:hover {
    background: #e07a5f;
    color: #fff;
    transform: translateY(-5px) scale(1.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #faf8f5;
    will-change: border-color, box-shadow;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    transition: color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e07a5f;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.1);
    transform: translateY(-2px);
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    color: #bbb;
}

.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    display: block;
}

.form-message ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.form-message li {
    margin: 5px 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ================= LEADERSHIP ================= */

.leadership {
    background: #faf8f5;
    text-align: center;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

.leader-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #eee;
    will-change: transform, box-shadow, border-color;
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.leader-card:hover::before {
    opacity: 1;
}

.leader-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(224, 122, 95, 0.12);
    border-color: #e07a5f;
}

.leader-img {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.leader-card:hover .leader-img img {
    transform: scale(1.05);
}

.leader-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background: rgba(16, 24, 40, 0.85);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-socials {
    transform: translateY(0);
}

.leader-socials a {
    color: #fff;
    font-size: 0.85rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.leader-socials a:hover {
    color: #e07a5f;
}

.leader-card h3 {
    font-size: 1.25rem;
    color: #101828;
    margin: 5px 0 2px;
}

.leader-card span {
    font-size: 0.85rem;
    color: #e07a5f;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-card p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 12px;
    line-height: 1.6;
}

/* ================= FOOTER ================= */

footer {
    background: #0c111d;
    color: white;
    padding: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 70px 80px 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.footer-socials a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #e07a5f;
    transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.footer-socials a:hover::before {
    left: 0;
}

.footer-socials a:hover {
    background: #e07a5f;
    border-color: #e07a5f;
    color: #fff;
    transform: translateY(-5px) scale(1.1);
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #e07a5f;
}

.footer-col-subhead {
    margin-top: 25px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.85rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: #e07a5f;
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-list i {
    color: #e07a5f;
    font-size: 0.8rem;
    width: 16px;
}

.footer-newsletter {
    display: flex;
    gap: 0;
    margin-top: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.85rem;
    border-radius: 4px 0 0 4px;
    font-family: 'Poppins', sans-serif;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter input:focus {
    outline: none;
    border-color: #e07a5f;
}

.footer-newsletter button {
    padding: 10px 16px;
    background: #e07a5f;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.footer-newsletter button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.footer-newsletter button:hover::before {
    width: 300px;
    height: 300px;
}

.footer-newsletter button:hover {
    background: #c86c52;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(224, 122, 95, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #e07a5f;
}

/* ================= ADMIN FLOAT BUTTON ================= */

.admin-float {
    position: fixed;
    bottom: 160px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    z-index: 3000;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: adminPulse 2s infinite;
}

.admin-float:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3d8e 100%);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    animation: none;
}

.admin-tooltip {
    position: absolute;
    right: 68px;
    background: #333;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.admin-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.admin-float:hover .admin-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes adminPulse {
    0%   { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.5); }
    70%  { box-shadow: 0 0 0 15px rgba(102, 126, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
}

/* ================= WHATSAPP FLOAT BUTTON ================= */

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: #333;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ================= BACK TO TOP ================= */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #e07a5f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(224, 122, 95, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #101828;
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 8px 25px rgba(224, 122, 95, 0.5);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        padding: 50px 40px 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        text-align: center;
    }

    .contact-info > p {
        text-align: center; 
    }

    .info-item {
        justify-content: center;
    }

    .contact-socials {
        justify-content: center;
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* TABLET BREAKPOINT - iPad and similar devices */
@media (max-width: 900px) {
    section {
        padding: 55px 35px;
    }
    
    .navbar {
        padding: 15px 25px;
    }
    
    .hero {
        margin-top: 65px;
        min-height: 85vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        padding: 0 20px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.9rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .brand-card {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .brand-logo {
        width: 110px;
        height: 70px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .stat {
        padding: 25px 15px;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        padding: 45px 35px 35px;
    }
    
    .footer-bottom {
        padding: 15px 35px;
    }
}

/* MOBILE TABLET BREAKPOINT */
@media (max-width: 768px) {

    .navbar {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 80px;
    }

    nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    nav a {
        font-size: 1.2rem;
    }

    .hero {
        margin-top: 60px;
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        padding: 0 20px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1.05rem;
        letter-spacing: 0.5px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }

    .hero-buttons {
        gap: 12px;
        flex-wrap: wrap;
    }

    .primary-btn,
    .secondary-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    section {
        padding: 50px 20px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .brand-card {
        padding: 25px 15px;
        min-height: auto;
    }

    .brand-logo {
        width: 80px;
        height: 55px;
    }

    .brand-card h3 {
        font-size: 1.15rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-content {
        padding: 26px 22px;
    }

    .about-content h2 {
        margin-bottom: 14px;
        font-size: 1.6rem;
    }

    .about-lead {
        font-size: 1.02rem;
    }

    .about-content p {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat {
        padding: 20px 15px;
    }

    .stat h3 {
        font-size: 2.2rem;
    }

    .stat p {
        font-size: 0.85rem;
    }

    .city-tags {
        gap: 8px;
    }

    .city-tags span {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-item {
        height: 180px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info h2 {
        text-align: center;
        font-size: 1.6rem;
    }

    .contact-info > p {
        text-align: center;
    }

    .info-item {
        justify-content: center;
    }

    .contact-socials {
        justify-content: center;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
        padding: 12px 14px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 40px 20px 30px;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-socials {
        justify-content: center;
        gap: 15px;
    }

    .footer-newsletter {
        max-width: 100%;
        margin: 10px 0 0;
    }

    .footer-newsletter input {
        border-radius: 4px 0 0 4px;
    }

    .footer-newsletter button {
        border-radius: 0 4px 4px 0;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
        text-align: center;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .leader-card {
        max-width: 100%;
        padding: 22px 16px;
    }

    .leader-img {
        width: 124px;
        height: 124px;
        margin: 0 auto 14px;
    }
    
    .leadership .section-subtitle{
        margin-bottom: 24px;
    }
    
    .brand-carousel-section {
        padding: 25px 0;
    }

    .carousel-slide {
        width: 150px;
        padding: 0 25px;
    }
    
     .admin-float {
        bottom: 150px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        z-index: 3000;
        display: flex;
    }
    
    .admin-tooltip {
        display: none;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    section {
        padding: 45px 18px;
    }
    
    .navbar {
        padding: 13px 18px;
    }
    
    .hero {
        min-height: 75vh;
        margin-top: 55px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        padding: 0 15px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .brand-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 15px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav-cart {
        display: none;
    }

    .hero {
        min-height: 70vh;
        margin-top: 50px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        padding: 0 15px;
        line-height: 1.25;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
        margin-bottom: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 15px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .about-content {
        padding: 18px 15px;
        border-radius: 10px;
        border: 1px solid #eee;
    }

    .about-content h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .about-lead {
        font-size: 0.98rem;
    }

    .about-content p {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .brand-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .brand-card {
        padding: 20px 15px;
        min-height: 200px;
    }

    .brand-card h3 {
        font-size: 1.1rem;
    }

    .brand-card p {
        font-size: 0.85rem;
    }

    .brand-logo {
        width: 70px;
        height: 50px;
        margin-bottom: 15px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-card {
        padding: 25px 15px;
    }

    .expertise-card i {
        font-size: 2rem;
    }

    .expertise-card h3 {
        font-size: 1.05rem;
    }

    .expertise-card p {
        font-size: 0.88rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat {
        padding: 15px 10px;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .stat p {
        font-size: 0.8rem;
    }

    .city-tags {
        flex-wrap: wrap;
        gap: 6px;
    }

    .city-tags span {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 150px;
    }

    .gallery-overlay {
        padding: 15px;
    }

    .gallery-overlay span {
        font-size: 0.9rem;
    }

    .leader-card {
        padding: 20px 15px;
    }

    .leader-img {
        width: 130px;
        height: 130px;
    }

    .leader-card h3 {
        font-size: 1.1rem;
    }

    .leader-card span {
        font-size: 0.75rem;
    }

    .leader-card p {
        font-size: 0.85rem;
        margin-top: 8px;
    }

    .contact-wrapper {
        gap: 20px;
    }

    .contact-info h2 {
        font-size: 1.3rem;
    }

    .contact-info > p {
        font-size: 0.9rem;
    }

    .info-item {
        gap: 12px;
    }

    .info-item i {
        font-size: 1rem;
    }

    .info-item strong {
        font-size: 0.9rem;
    }

    .info-item p {
        font-size: 0.85rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 11px 12px;
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    .form-message {
        font-size: 0.9rem;
        padding: 12px;
    }

    .footer-top {
        padding: 30px 15px 20px;
        gap: 20px;
    }

    .footer-brand .footer-logo {
        font-size: 1.2rem;
    }

    .footer-brand > p {
        font-size: 0.85rem;
    }

    .footer-socials {
        gap: 8px;
    }

    .footer-socials a {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .footer-col h4 {
        font-size: 0.95rem;
    }

    .footer-col ul a {
        font-size: 0.85rem;
    }

    .footer-col p {
        font-size: 0.8rem;
    }

    .footer-contact-list li {
        font-size: 0.8rem;
    }

    .footer-newsletter input {
        padding: 8px 10px;
        font-size: 0.85rem;
        border-radius: 4px 0 0 4px;
    }

    .footer-newsletter button {
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 0 4px 4px 0;
    }

    .footer-bottom {
        padding: 12px 15px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    .footer-bottom-links {
        gap: 10px;
    }

    .footer-bottom-links a {
        font-size: 0.75rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .leader-card {
        padding: 18px 14px;
    }
    
    .leader-img {
        width: 108px;
        height: 108px;
        margin-bottom: 12px;
    }
    
    section {
        padding: 40px 15px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
}

/* ================= REDUCED MOTION ================= */

@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;
    }

    .hero-particles,
    .hero-scroll-indicator span::after,
    .carousel-track {
        animation: none;
    }

    .gallery-item img,
    .brand-card,
    .expertise-card,
    .leader-card {
        will-change: auto;
    }
}