/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red:#CF0038;
    --dark-red: #E10046;
    --dark-gray: #4a4a4a;
    --light-gray: #1E1A1B;
    --text-dark: #333;
    --text-light: #666;
    --secondary-color: #F6F2EE;
    --white: rgb(255, 255, 255);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
    background-color: #FFFDF9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 48px;
    text-decoration: none;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-red);
    letter-spacing: 1.5px;
}

.logo-sub {
    font-size: 11px;
    color: var(--dark-gray);
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-red);
}

.cta-link {
    background-color: var(--primary-red);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: var(--transition);
}

.cta-link:hover {
    background-color: var(--dark-red);
}

/* ===== Hamburger Menu ===== */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1002;
    border-radius: 6px;
    transition: background-color 0.25s ease;
}

.nav-toggle:hover {
    background-color: var(--light-gray);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease,
                background-color 0.3s ease;
}

.nav-toggle.open {
    background-color: transparent;
}

.nav-toggle.open span {
    background-color: var(--primary-red);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== Mobile Menu Overlay ===== */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 18, 18, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

body.nav-open {
    overflow: hidden;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 19px;
    font-weight: bold;
    line-height: 1.2;
}

.hero-content > p:first-of-type {
    font-size: 25px;
    margin-bottom: 10px;
    opacity: 0.95;
}

.hero-tagline {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
        line-height: 1.15;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.1;
    }
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    padding: 200px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 22px;
    opacity: 0.9;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(207, 0, 56, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

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

/* ===== Why Us Section ===== */
.why-us {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.why-us h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #FFFDF9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-card p {
    color: stone-900;
    line-height: 1.6;
}

/* ===== Services Preview ===== */
.services-preview {
    padding: 80px 20px;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.service-box {
    background: #FFFDF9;
    padding: 35px;
    border-left: 4px solid var(--primary-red);
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);
}

.service-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.service-box h3 {
    color: var(--primary-red);
    margin-bottom: 12px;
    font-size: 20px;
}

.service-box p {
    color: stone-900;
    line-height: 1.6;
}

.services-preview > .btn {
    display: block;
    margin: 40px auto 0;
    text-align: center;
    width: fit-content;
}

/* ===== About Section ===== */
.about-section {
    padding: 60px 20px;
}

.about-intro {
    max-width: 800px;
    margin-bottom: 60px;
}

.about-intro h2 {
    color: var(--primary-red);
    font-size: 32px;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-highlights h2,
.expertise-section h2 {
    color: var(--primary-red);
    font-size: 32px;
    margin-bottom: 40px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.highlight-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--primary-red);
}

.highlight-card h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
}

.highlight-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.expertise-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-red);
}

.expertise-item h3 {
    color: var(--primary-red);
    margin-bottom: 12px;
}

.expertise-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.values-section h2 {
    color: var(--primary-red);
    font-size: 32px;
    margin-bottom: 30px;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    list-style: none;
}

.values-list li {
    padding: 12px 0;
    padding-left: 30px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

/* ===== Services Detail Section ===== */
.services-section {
    padding: 60px 20px;
}

.service-detail {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--light-gray);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail h2 {
    color: var(--primary-red);
    font-size: 28px;
    margin-bottom: 20px;
}

.service-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 900px;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.highlight {
    display: inline-block;
    background-color: #f0f0f0;
    color: var(--primary-red);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--primary-red);
}

.why-services {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.why-services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.why-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.why-card h3 {
    color: var(--primary-red);
    margin-bottom: 12px;
    font-size: 18px;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--primary-red);
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-info a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

/* ===== Footer ===== */
.footer {
    background-color: #1A1715;
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin: 8px 0;
    font-size: 15px;
}

.footer p:first-child {
    font-weight: 600;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: min(82vw, 320px);
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: none;
        overflow-y: auto;
        padding: 96px 0 40px;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.18);
        z-index: 1000;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 18px 32px;
        border-bottom: 1px solid var(--light-gray);
        position: relative;
        font-size: 16px;
        letter-spacing: 0.3px;
        opacity: 0;
        transform: translateX(24px);
        transition: opacity 0.4s ease, transform 0.4s ease,
                    color 0.2s ease, background-color 0.2s ease;
    }

    .nav-links.open a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.open li:nth-child(1) a { transition-delay: 0.12s; }
    .nav-links.open li:nth-child(2) a { transition-delay: 0.18s; }
    .nav-links.open li:nth-child(3) a { transition-delay: 0.24s; }
    .nav-links.open li:nth-child(4) a { transition-delay: 0.3s; }

    .nav-links a.active::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        height: auto;
        background-color: var(--primary-red);
    }

    .nav-links a:hover {
        background-color: var(--light-gray);
        padding-left: 38px;
    }

    .nav-links a.cta-link {
        margin: 20px 24px 0;
        width: calc(100% - 48px);
        text-align: center;
        border: none;
        border-radius: 6px;
        padding: 14px 20px;
        font-weight: 600;
        box-shadow: 0 6px 16px rgba(196, 30, 58, 0.25);
    }

    .nav-links a.cta-link:hover {
        padding-left: 20px;
    }

    .nav-container {
        padding: 12px 20px;
    }

    .logo-text {
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content > p:first-of-type {
        font-size: 18px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .why-us h2,
    .services-preview h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 28px;
    }

    .service-detail h2 {
        font-size: 22px;
    }

    .about-intro h2,
    .about-highlights h2,
    .expertise-section h2,
    .values-section h2 {
        font-size: 24px;
    }

    .why-services h2 {
        font-size: 28px;
    }

    .features-grid,
    .services-grid,
    .highlights-grid,
    .expertise-list,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-links a.cta-link {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .page-header h1 {
        font-size: 22px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .service-highlights {
        flex-direction: column;
    }
    
    .highlight {
        width: 100%;
        text-align: center;
    }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    .nav-links,
    .nav-links a,
    .nav-toggle span,
    .nav-overlay {
        transition-duration: 0.01ms !important;
    }
}

/* ===== Contact style ===== */

.contact-section {
    background: (--light-gray);
    padding: 80px 20px;
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

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

.contact-card {
    background: #F5F1D9;
    padding: 30px;
    border-bottom: 4px solid #c41e3a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 4px;
}

.contact-card:hover {
    border-bottom-width: 6px;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px #8b1428;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    color: #333;
    font-weight: 600;
}

.contact-links {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    color: #333;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition);
    padding: 0;
    border-bottom: none;
    font-size: 18px;
    cursor: pointer;
}

.contact-link:hover {
    color: var(--primary-red); /* or your red color */
    text-decoration: underline;
}

.whatsapp-link {
    display: inline-flex;
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
    color: #4a4a4a;
}

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

.address-text {
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-size: 18px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        order: 2;
    }
    
    .map-container {
        order: 1;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 15px;
    }
    
    .contact-header h2 {
        font-size: 1.75rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .contact-card h3 {
        font-size: 1.25rem;
    }
    
    .map-container {
        height: 300px;
    }
}

/* ========================================
SECTION A
======================================== */
.section-a {
    padding: 5rem 1.25rem;
    background-color: #FAF8F3;
}

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

.section-a .section-title {
    font-size: 2.25rem;
    text-align: center;
    font-weight: 700;
    color: #4A4642;
    margin-bottom: 1rem;
}

.section-a .section-description {
    font-size: 1.125rem;
    color: #6F6A63;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
    margin-bottom: 50px; 
}

.section-a .social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #9CA3AF;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
    font-weight: 500;
    font-size: 0.95rem;
}

.section-a .social-link:hover {
    border-bottom-color: var(--color-accent-brown);
    color: #9CA3AF;
}

/* ========================================
SECTION B
======================================== */
.section-b {
    padding: 5rem 1.25rem;
    background-color: #F0ECE5;
}

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

.section-b .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: #4A4642;
    margin-bottom: 1rem;
}

.section-a .section-description {
    font-size: 1.125rem;
    color: #6F6A63;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
    margin-bottom: 50px; 
}

.section-b .social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #45403D;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
    font-weight: 500;
    font-size: 0.95rem;
}

.section-b .social-link:hover {
    border-bottom-color: var(--color-accent-brown);
    color: #45403D;
}
/* ========================================
    about image
    ======================================== */
    
    .about-container {
        max-width: 1152px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    .about-grid {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 3rem;
    }
    
    .about-image-box {
        flex: 1 1 380px;
        max-width: 400px;
        padding: 8px;
        background: #FFFDF9;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .about-image-box .about-image {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: 8px;
        display: block;
    }
    
    .about-text {
        flex: 1 1 380px;
    }

/* ========================================
    client section 
    ======================================== */
    
    .clients-grid {
        display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e2dccf;
    border: 1px solid #e2dccf;
    border-radius: 8px;
    overflow: hidden;
}

.client-card {
    background: #FFFDF9;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    transition: background 0.3s ease, padding-left 0.3s ease;
}

.client-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #8b1a1a;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.client-card:hover::before {
    transform: scaleY(1);
}

.client-card:hover {
    background: #fdfaf5;
    padding-left: 2.1rem;
}

.client-index {
    font-size: 0.75rem;
    font-weight: 700;
    color: #c9bfa8;
    min-width: 26px;
    font-variant-numeric: tabular-nums;
}

.client-name {
    font-size: 1rem;
    font-weight: 600;
    color: #33302b;
    letter-spacing: 0.01em;
}

/* View More button — hidden on desktop */
.view-more-btn {
    display: none;
}

@media (max-width: 900px) {
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .clients-grid { grid-template-columns: 1fr; }
    .client-card { padding: 1.25rem 1.5rem; }

    /* Hide extra clients by default on mobile */
    .extra-client {
        display: none;
    }

    .clients-grid.expanded .extra-client {
        display: flex;
        animation: fadeInCard 0.4s ease forwards;
    }

    .view-more-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        margin-top: 1.5rem;
        padding: 0.9rem;
        background: #fff;
        border: 1px solid #e2dccf;
        border-radius: 8px;
        color: var(--primary-red);
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        cursor: pointer;
        transition: background 0.25s ease, border-color 0.25s ease;
    }

    .view-more-btn:hover {
        background: #fdfaf5;
        border-color: #d9c9c9;
    }

    .view-more-btn svg {
        transition: transform 0.3s ease;
    }
}

@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ========================================
    client section 
    ======================================== */
    
    .qr-code {
        margin-top: 20px;
        text-align: center;
    }
    
    .qr-code img {
        width: 140px;
        height: 140px;
        border-radius: 8px;
        background: #fff;
        padding: 8px;
    }
    
    .qr-code p {
        margin-top: 8px;
        font-size: 14px;
        color: #666;
    }
    
/* ========================================
    footer bottom
    ======================================== */

.footer-bottom {
    display: flex;
     flex-direction: column;  
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
    color: #bfbfbf;
}

.footer-bottom a {
    color: #CF0038;
    text-decoration: none;
    font-weight: 600;
    transition: color .3s;
}

.footer-bottom a:hover {
    color: #E10046;
}