/* ========================================
   SEMLINER EXPRESS LOGISTICS - MASTER CSS
   All Pages Share This Stylesheet
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1a3c6e;
    --primary-dark: #0f2a4a;
    --secondary: #e67e22;
    --secondary-dark: #d35400;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f8f9fa;
    --bg-card: #f3f4f6;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --border-light: #f0f0f0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s ease;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1280px;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -999px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 10px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    min-height: 44px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 60, 110, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1DAF5B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-outline-light:hover {
    background: var(--bg-light);
    border-color: var(--primary);
}

/* ======================================== */
/* HEADER - Glass Morphism                  */
/* ======================================== */
header {
    position: sticky;
    top: 12px;
    z-index: 50;
    padding: 0 16px;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    padding: 8px 16px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    object-fit: contain;
    background: var(--bg-light);
    padding: 4px;
}

.logo-text .brand {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.logo-text .sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-desktop a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a:focus,
.nav-desktop a.active {
    background: var(--primary);
    color: var(--white);
}

/* Desktop Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-actions .btn {
    padding: 8px 18px;
    font-size: 0.8rem;
    min-height: 40px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    cursor: pointer;
    font-size: 1rem;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.mobile-toggle span {
    font-size: 0.75rem;
}

/* ======================================== */
/* MOBILE MENU                             */
/* ======================================== */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

.mobile-overlay.open {
    display: block;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    padding: 80px 24px 24px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
    display: block;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    cursor: pointer;
    font-size: 1.2rem;
}

.mobile-menu a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text-dark);
    transition: all var(--transition);
}

.mobile-menu a:hover {
    background: var(--primary);
    color: var(--white);
}

.mobile-menu hr {
    margin: 16px 0;
    border-color: var(--border-color);
}

.mobile-menu .whatsapp-mobile {
    color: #25D366;
    font-weight: 600;
}

/* ======================================== */
/* ABOUT HERO                              */
/* ======================================== */
.about-hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(to bottom, var(--white), var(--bg-light));
    text-align: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(26, 60, 110, 0.04);
    pointer-events: none;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero-content .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 16px 0 12px;
    color: var(--text-dark);
}

.about-hero-content h1 .highlight {
    color: var(--primary);
}

.about-hero-content .subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

/* Trust Highlights */
.trust-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.trust-highlights li {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-color);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ======================================== */
/* ABOUT OVERVIEW                          */
/* ======================================== */
.about-overview {
    padding: 60px 0;
    background: var(--white);
}

.overview-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    padding: 40px 48px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.overview-text .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--secondary);
}

.overview-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 12px 0 16px;
    color: var(--primary);
}

.overview-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.feature-list {
    margin: 20px 0 24px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-list li::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 6px;
}

.overview-image img {
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
}

/* ======================================== */
/* TRUST SECTION                           */
/* ======================================== */
.trust-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.trust-header {
    max-width: 700px;
    margin-bottom: 40px;
}

.trust-header .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

.trust-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 8px;
    color: var(--text-dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trust-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}

.trust-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.trust-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ======================================== */
/* TEAM SECTION                            */
/* ======================================== */
.team-section {
    padding: 60px 0;
    background: var(--white);
}

.team-header {
    max-width: 700px;
    margin-bottom: 40px;
}

.team-header .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.team-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 8px;
    color: var(--text-dark);
}

.team-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 8px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.team-photo {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 3px solid var(--border-color);
    padding: 4px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary);
}

.team-card .role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.team-card p:last-child {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ======================================== */
/* BLOG PREVIEW                            */
/* ======================================== */
.blog-preview {
    padding: 60px 0;
    background: var(--bg-light);
}

.blog-preview-header {
    max-width: 700px;
    margin-bottom: 40px;
}

.blog-preview-header .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

.blog-preview-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 8px;
    color: var(--text-dark);
}

.blog-preview-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 8px;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-preview-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.blog-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.blog-preview-card:hover .blog-image img {
    transform: scale(1.02);
}

.blog-preview-card h3 {
    padding: 16px 20px 8px;
    font-size: 1.05rem;
    font-weight: 600;
}

.blog-preview-card h3 a {
    color: var(--text-dark);
    transition: color var(--transition);
}

.blog-preview-card h3 a:hover {
    color: var(--primary);
}

.blog-preview-card p {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ======================================== */
/* CTA SECTION                             */
/* ======================================== */
.cta-section {
    padding: 60px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ======================================== */
/* FOOTER                                  */
/* ======================================== */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 48px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 32px;
}

.footer-grid h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--secondary);
    margin-bottom: 12px;
}

.footer-grid p,
.footer-grid address {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-style: normal;
}

.footer-grid address a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer-grid address a:hover {
    color: var(--secondary);
}

.footer-grid .address {
    margin-top: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 6px;
}

.footer-grid ul a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer-grid ul a:hover {
    color: var(--secondary);
}

.footer-grid ul .primary-link {
    color: var(--secondary);
    font-weight: 500;
}

.footer-grid ul .primary-link:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-credits .tag {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.3);
}

/* ======================================== */
/* RESPONSIVE                              */
/* ======================================== */
@media (max-width: 1024px) {
    .overview-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .nav-actions .btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-content .subtitle {
        font-size: 0.95rem;
    }

    .trust-highlights li {
        font-size: 0.75rem;
        padding: 4px 14px;
    }

    .overview-text h2 {
        font-size: 1.6rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-credits {
        justify-content: center;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.6rem;
    }

    .overview-card {
        padding: 20px 16px;
    }

    .trust-card {
        padding: 16px;
    }

    .team-card {
        padding: 20px 16px;
    }
}
/* ======================================== */
/* SERVICES PAGE SPECIFIC STYLES            */
/* ======================================== */

/* ===== SERVICES HERO ===== */
.services-hero {
    padding: 60px 0 40px;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.services-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.services-hero-text .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.services-hero-text h1 {
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 12px 0 16px;
    color: var(--text-dark);
}

.services-hero-text .subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
}

.services-hero-text .hero-actions {
    display: flex;
    gap: 12px;
    margin: 24px 0 20px;
    flex-wrap: wrap;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tags li {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 6px 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    list-style: none;
}

/* ===== HERO SIDEBAR ===== */
.services-hero-sidebar {
    padding-top: 20px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.sidebar-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.sidebar-header .badge {
    background: rgba(230, 126, 34, 0.12);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.sidebar-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.category-grid span {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

.sidebar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sidebar-footer a {
    color: var(--primary);
    font-weight: 600;
    transition: color var(--transition);
}

.sidebar-footer a:hover {
    color: var(--secondary);
}

/* ===== SERVICE CATEGORIES ===== */
.service-categories {
    padding: 60px 0;
    background: var(--bg-light);
}

.categories-header {
    max-width: 700px;
    margin-bottom: 40px;
}

.categories-header .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.categories-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 8px 0 12px;
    color: var(--text-dark);
}

.categories-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.future-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 16px;
}

.future-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    transition: all var(--transition);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.category-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
}

.category-image img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}

.category-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.category-meta .tag {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.category-meta .arrow {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.category-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.category-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.expand-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.expand-hint i {
    font-size: 0.7rem;
    transition: transform var(--transition);
}

.category-card:hover .expand-hint i {
    transform: translateX(4px);
}

/* ===== SERVICE PROCESS ===== */
.service-process {
    padding: 60px 0;
    background: var(--white);
}

.process-header {
    max-width: 700px;
    margin-bottom: 40px;
}

.process-header .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

.process-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 8px 0 12px;
    color: var(--text-dark);
}

.process-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}
/* ===== SERVICE PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    padding: 0;
    list-style: none;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
    list-style: none;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-family);
}

.step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

/* ===== SERVICES DETAILED GRID ===== */
.services-grid-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.services-grid-wrapper {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 48px;
}

.grid-header {
    max-width: 700px;
    margin-bottom: 32px;
}

.grid-header .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.grid-header h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 8px 0 12px;
    color: var(--text-dark);
}

.grid-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-detailed-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}

.service-detailed-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-detailed-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-detailed-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.service-detailed-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.service-cta p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ===== REGIONAL COVERAGE ===== */
.regional-coverage {
    padding: 60px 0;
    background: var(--white);
}

.regional-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}


.regional-text .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.regional-text h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 8px 0 16px;
    color: var(--text-dark);
}

.regional-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.regional-text .btn {
    margin-top: 8px;
}

.regional-checklist {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px 28px;
}

.regional-checklist h3 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.regional-checklist ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.regional-checklist ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    list-style: none;
}

.regional-checklist .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(26, 60, 110, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ======================================== */
/* RESPONSIVE - SERVICES PAGE               */
/* ======================================== */
@media (max-width: 1024px) {
    .services-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .regional-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .services-hero-text h1 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-detailed-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid-wrapper {
        padding: 24px 16px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .category-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-cta {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .sidebar-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .services-hero-text h1 {
        font-size: 1.6rem;
    }
    
    .services-hero-text .hero-actions {
        flex-direction: column;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
}
/* ======================================== */
/* BLOG PAGE SPECIFIC STYLES                */
/* ======================================== */
/* ======================================== */
/* BLOG PAGE SPECIFIC STYLES                */
/* ======================================== */

/* ===== BLOG HERO ===== */
.blog-hero {
    padding: 60px 0 40px;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(26, 60, 110, 0.03);
    pointer-events: none;
}

.blog-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-hero-content .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--secondary);
}

.blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 12px 0 16px;
    color: var(--primary);
}

.blog-hero-content .subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 24px;
}

/* Topic Tags */
.topic-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.topic-tags span {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition);
}

.topic-tags span:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.blog-hero-content .hero-action {
    margin-top: 8px;
}

/* ======================================== */
/* BLOG ARTICLES SECTION                    */
/* ======================================== */
.blog-articles {
    padding: 60px 0 80px;
    background: var(--bg-light);
    position: relative;
    /* Background Image */
    background-image: url('images/blog/blog-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Dark Overlay for readability */
.blog-articles::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(248, 249, 250, 0.92);
    z-index: 0;
}

.blog-articles .container {
    position: relative;
    z-index: 1;
}

/* ===== ARTICLES GRID LAYOUT ===== */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.articles-header .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.articles-header h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 8px 0 12px;
    color: var(--text-dark);
}

.articles-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== ARTICLES CARDS - HORIZONTAL GRID ===== */
.articles-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* ===== ARTICLE CARD ===== */
.article-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.article-card:has(details[open]) {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(26, 60, 110, 0.12);
}

.article-details {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-summary::-webkit-details-marker {
    display: none;
}

.article-summary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

.article-image {
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.article-image img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.02);
}

.article-preview {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-tag {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

.article-preview h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 6px 0 8px;
    color: var(--text-dark);
    line-height: 1.3;
}

.article-preview p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.article-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    transition: color var(--transition);
    flex-shrink: 0;
}

.article-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.article-details[open] .article-toggle i {
    transform: rotate(180deg);
}

.article-details[open] .article-toggle {
    color: var(--secondary);
}

/* ===== ARTICLE FULL CONTENT ===== */
.article-full {
    padding: 0 24px 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    flex-shrink: 0;
}

.article-full p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

.article-full p:last-child {
    margin-bottom: 0;
}

/* ======================================== */
/* RESPONSIVE - BLOG PAGE                   */
/* ======================================== */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .articles-header {
        max-width: 700px;
    }
    
    .articles-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .blog-hero-content .subtitle {
        font-size: 0.95rem;
    }
    
    .topic-tags span {
        font-size: 0.7rem;
        padding: 4px 14px;
    }
    
    .articles-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .articles-header {
        text-align: center;
    }
    
    .articles-header h2 {
        font-size: 1.8rem;
    }
    
    .article-preview {
        padding: 16px 18px 20px;
    }
    
    .article-preview h3 {
        font-size: 1rem;
    }
    
    .article-full {
        padding: 0 18px 18px;
    }
    
    .article-full p {
        font-size: 0.9rem;
    }
    
    .blog-articles {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .blog-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .topic-tags {
        gap: 6px;
    }
    
    .topic-tags span {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
    
    .article-preview h3 {
        font-size: 0.95rem;
    }
    
    .article-preview {
        padding: 14px 16px 18px;
    }
}
.blog-articles::before {
    background: rgba(15, 42, 74, 0.85);
}
/* Then make text white */
.blog-articles .articles-header .label { color: rgba(255,255,255,0.7); }
.blog-articles .articles-header h2 { color: var(--white); }
.blog-articles .articles-header p { color: rgba(255,255,255,0.8); }
/* ======================================== */
/* CONTACT PAGE SPECIFIC STYLES             */
/* ======================================== */

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 60px 0 40px;
    background: var(--white);
}

.faq-wrapper {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    max-width: 700px;
}

.faq-header h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--primary);
    margin-bottom: 8px;
}

.faq-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-list {
    margin-top: 24px;
    border-top: 1px solid var(--border-color);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 4px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 12px;
    cursor: pointer;
    list-style: none;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
    border-radius: 10px;
    transition: background var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 12px 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

/* ===== CONTACT BANNER ===== */
.contact-banner {
    padding: 40px 0;
    background: var(--bg-light);
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px 40px;
}

.banner-text .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.banner-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 8px 0 12px;
    color: var(--text-dark);
}

.banner-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.banner-image img {
    border-radius: var(--radius-sm);
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

/* Contact Info Card */
.contact-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px 28px;
}

.contact-card .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

.contact-card h2 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 8px 0 12px;
    color: var(--primary);
}

.contact-card > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.email-highlight {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 16px;
}

.email-highlight .label-small {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin: 0;
}

.email-highlight .email-link {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    transition: color var(--transition);
    word-break: break-all;
}

.email-highlight .email-link:hover {
    color: var(--text-dark);
}

.contact-details-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-details-list li a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color var(--transition);
}

.contact-details-list li a:hover {
    color: var(--primary);
}

.contact-details-list .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    flex-shrink: 0;
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px 36px;
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-family);
    background: var(--white);
    color: var(--text-dark);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 8px;
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    max-width: 320px;
}

/* ======================================== */
/* RESPONSIVE - CONTACT PAGE               */
/* ======================================== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .banner-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px;
    }
    
    .banner-text .btn {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .faq-wrapper {
        padding: 24px 20px;
    }
    
    .faq-header h2 {
        font-size: 1.6rem;
    }
    
    .banner-text h2 {
        font-size: 1.4rem;
    }
    
    .banner-image img {
        height: 160px;
    }
    
    .contact-form-wrapper {
        padding: 24px 20px;
    }
    
    .contact-card {
        padding: 24px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .form-note {
        max-width: 100%;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.2rem;
    }
    
    .contact-card h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 0.9rem;
        padding: 12px 8px;
    }
    
    .faq-answer {
        font-size: 0.85rem;
        padding: 0 8px 12px;
    }
    
    .banner-grid {
        padding: 16px;
    }
    
    .contact-form-wrapper {
        padding: 16px;
    }
}
/* ======================================== */
/* COMPANY PROFILE PAGE SPECIFIC STYLES     */
/* ======================================== */

/* ===== CP HERO ===== */
.cp-hero {
    padding: 40px 0 20px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.cp-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(26, 60, 110, 0.02);
    pointer-events: none;
}

.cp-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.cp-hero-text .badge {
    display: inline-block;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.cp-hero-text h1 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cp-hero-text .tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 16px;
}

.cp-hero-text .description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 20px;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    list-style: none;
    padding: 0;
}

.trust-indicators li {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.download-action .btn {
    gap: 10px;
}

/* ===== CP HERO SIDEBAR ===== */
.snapshot-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px 28px;
}

.snapshot-card h3 {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.snapshot-card dl {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.snapshot-card dl div {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.snapshot-card dl div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.snapshot-card dl dt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
}

.snapshot-card dl dd {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

/* ===== CP OVERVIEW ===== */
.cp-overview {
    padding: 60px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cp-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.cp-overview-text .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.cp-overview-text h2 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 8px 0 16px;
    color: var(--text-dark);
}

.cp-overview-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.highlights-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px 28px;
}

.highlights-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.highlights-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.highlights-card ul li {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.highlights-card ul li .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlights-card .note {
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 10px;
    padding: 16px 20px;
}

.highlights-card .note h4 {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin: 0 0 4px;
}

.highlights-card .note p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== CP VALUES ===== */
.cp-values {
    padding: 60px 0;
    background: var(--white);
}

.cp-values-header {
    max-width: 700px;
    margin-bottom: 40px;
}

.cp-values-header .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

.cp-values-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 8px 0 12px;
    color: var(--text-dark);
}

.cp-values-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.vm-card {
    padding: 24px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.vm-card.vision {
    border-color: rgba(26, 60, 110, 0.2);
    background: rgba(26, 60, 110, 0.04);
}

.vm-card.mission {
    border-color: rgba(230, 126, 34, 0.2);
    background: rgba(230, 126, 34, 0.04);
}

.vm-card h3 {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin: 0 0 8px;
}

.vm-card p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.values-section {
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.values-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.values-section > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.value-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px 24px;
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.value-card .category {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

.value-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 4px 0 6px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== CP LEADERSHIP ===== */
.cp-leadership {
    padding: 60px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.cp-leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.cp-leadership-text .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.cp-leadership-text h2 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 8px 0 16px;
    color: var(--text-dark);
}

.cp-leadership-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.cp-leadership-text strong {
    color: var(--text-dark);
}

.cp-leadership-text .btn {
    margin-top: 8px;
}

.cp-leadership-principles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cp-leadership-principles dl {
    margin: 0;
}

.cp-leadership-principles div {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px 24px;
}

.cp-leadership-principles dt {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.cp-leadership-principles dd {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== CP SERVICES ===== */
.cp-services {
    padding: 60px 0;
    background: var(--white);
}

.cp-services-header {
    max-width: 650px;
    margin-bottom: 32px;
}

.cp-services-header .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.cp-services-header h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 8px 0 12px;
    color: var(--text-dark);
}

.cp-services-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.cp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.service-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px 24px;
    transition: all var(--transition);
}

.service-item:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.service-item .bar {
    width: 40px;
    height: 6px;
    border-radius: 3px;
    background: var(--primary);
    margin-bottom: 12px;
}

.service-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.service-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.cp-services-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.cp-services-cta p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== CP STANDARDS ===== */
.cp-standards {
    padding: 60px 0;
    background: var(--bg-light);
}

.cp-standards-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.cp-standards-main header .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.cp-standards-main header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 8px 0 12px;
    color: var(--text-dark);
}

.cp-standards-main header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
}

.standards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.standards-grid article {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px 24px;
}

.standards-grid article h3 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.standards-grid article p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== CP STANDARDS SIDEBAR ===== */
.cp-standards-sidebar .sidebar-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px 24px;
}

.cp-standards-sidebar .sidebar-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cp-standards-sidebar .sidebar-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cp-standards-sidebar .sidebar-card dl {
    margin: 0 0 20px;
}

.cp-standards-sidebar .sidebar-card dt {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 12px;
}

.cp-standards-sidebar .sidebar-card dt:first-child {
    margin-top: 0;
}

.cp-standards-sidebar .sidebar-card dd {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.cp-standards-sidebar .sidebar-card .btn {
    width: 100%;
    justify-content: center;
}

.cp-standards-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ======================================== */
/* RESPONSIVE - COMPANY PROFILE PAGE       */
/* ======================================== */
@media (max-width: 1024px) {
    .cp-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cp-overview-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cp-leadership-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cp-standards-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .standards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .cp-hero-text h1 {
        font-size: 2.2rem;
    }
    
    .cp-hero-text .tagline {
        font-size: 1rem;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cp-leadership-principles {
        grid-template-columns: 1fr;
    }
    
    .cp-services-grid {
        grid-template-columns: 1fr;
    }
    
    .cp-standards-grid {
        grid-template-columns: 1fr;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
    }
    
    .cp-services-cta {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .cp-overview-text h2 {
        font-size: 1.8rem;
    }
    
    .cp-leadership-text h2 {
        font-size: 1.8rem;
    }
    
    .cp-standards-main header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .cp-hero-text h1 {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .snapshot-card {
        padding: 16px;
    }
    
    .highlights-card {
        padding: 16px;
    }
    
    .highlights-card ul li {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .cp-leadership-text h2 {
        font-size: 1.4rem;
    }
    
    .trust-indicators li {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}