/* ==========================================================================
   CSS VARIABLES (Design System based on Modest Logo)
   ========================================================================== */
   :root {
    /* Brand Colors (Extracted from Logo) */
    --brand-navy: #090E2D; /* The dark blue from the logo */
    --brand-red: #D80C14;  /* The bright red from the logo */
    
    /* Backgrounds */
    --bg-base: #F8F9FA;    /* Off-white with a tiny blue tint instead of purple */
    --bg-alt: #EDF0F5;     /* Pale navy-gray for alternating sections */
    
    /* Text Colors (The Ink System) */
    --text-h1: #090E2D;          /* Ink */
    --text-h2: #131A3A;          /* Slightly softened */
    --text-body: #353C54;        /* Soft ink for readability */
    --text-muted: #5D647E;       /* Light ink-gray */
    --text-meta: #828A9F;        /* Lowest emphasis */
    
    /* UI Details */
    --shadow-soft: 0 8px 24px rgba(9, 14, 45, 0.06);
    --border-radius: 12px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}



/* ADD THIS TO THE VERY BOTTOM OF styles.css */
/* EMERGENCY FIX: Force content to be visible */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: translateY(0) !important;
}




/* ==========================================================================
   RESET & TYPOGRAPHY
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-body);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--text-h1);
    margin-bottom: 0.5em;
}

h1 { font-size: 32px; font-weight: 600; line-height: 1.2; }
h2 { font-size: 24px; font-weight: 600; line-height: 1.3; color: var(--text-h2); }
h3 { font-size: 18px; font-weight: 500; line-height: 1.4; color: var(--text-h2); }
h4 { font-size: 15px; font-weight: 500; color: var(--text-muted); }

/* Mobile Typography overrides */
@media (max-width: 768px) {
    h1 { font-size: 24px; }
    h2 { font-size: 20px; }
    h3 { font-size: 16px; }
    h4 { font-size: 14px; }
    body { font-size: 15px; line-height: 1.6; }
}

a {
    color: var(--brand-navy);
    text-decoration: none;
    transition: var(--transition-smooth);
}

p { margin-bottom: 1rem; }

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-spacing {
    padding: 80px 0;
}

.bg-secondary {
    background-color: var(--bg-alt);
}

.center { text-align: center; }
.justify-center { justify-content: center; }

/* Tags (Left Upper Side of sections) */
.tag {
    display: inline-block;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-red) 0%, #90050A 100%);
    color: #FFF;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    box-shadow: 0 4px 15px rgba(216, 12, 20, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.4), rgba(255,255,255,0));
    transform: skewX(-20deg);
    z-index: -1;
    transition: all 0.7s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(216, 12, 20, 0.4);
}

.btn-primary:hover::after {
    left: 150%;
}

.btn-outline {
    border-color: var(--brand-navy);
    color: var(--brand-navy);
}

.btn-outline:hover {
    background-color: var(--brand-navy);
    color: #FFF;
}

.btn-group {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
#site-header {
    background-color: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(9, 14, 45, 0.05);
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-h1);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--brand-red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number {
    font-weight: 600;
    color: var(--brand-navy);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ==========================================================================
   GRID LAYOUTS (Hero, About, etc)
   ========================================================================== */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.hero-stat-item {
    display: inline-block;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
}

.image-wrapper img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   SERVICES CARDS
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.services-grid--row2 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

/* The card itself — clean white, no background image */
.service-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(9, 14, 45, 0.08);
    border-top: 3px solid transparent;
    box-shadow: 0 4px 16px rgba(9, 14, 45, 0.07);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: scale(1.04);
    box-shadow: 0 16px 40px rgba(9, 14, 45, 0.14);
    border-top-color: var(--brand-red);
}

.service-card:active {
    transform: scale(0.97);
    box-shadow: 0 4px 12px rgba(9, 14, 45, 0.1);
}

/* Hide the bg image div entirely — not needed */
.service-bg-image {
    display: none;
}

/* Content container — tight, no gaps */
.card-blur-overlay {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: none;
    /* remove all absolute/overlay styles */
    position: static;
    height: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: none;
}

/* Coloured icon circle */
.service-icon {
    font-size: 28px;
    line-height: 1;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EDF0F5;
    border-radius: 12px;
    margin-bottom: 14px;
    flex-shrink: 0;
}

/* Title */
.card-blur-overlay h3 {
    color: var(--brand-navy);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

/* Description */
.card-blur-overlay p {
    color: var(--text-body);
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 0;
}

/* CTA link */
.btn-text {
    color: var(--brand-red);
    font-weight: 600;
    font-size: 13px;
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.service-card:hover .btn-text {
    gap: 8px;
}

/* Tablet: 2 per row */
@media (max-width: 1024px) {
    .services-grid,
    .services-grid--row2 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin-top: 20px;
    }
}

/* Mobile: 1 per row */
@media (max-width: 600px) {
    .services-grid,
    .services-grid--row2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* ==========================================================================
   PROCESS / 3D EFFECT
   ========================================================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: #FFF;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    border-top: 4px solid var(--brand-red);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-alt);
    color: var(--brand-navy);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.hover-3d {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.hover-3d:hover {
    transform: perspective(1000px) rotateX(4deg) rotateY(-4deg) scale(1.03) translateY(-10px);
    box-shadow: -15px 20px 40px rgba(9, 14, 45, 0.12), 0 0 20px rgba(216, 12, 20, 0.05);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #FFF;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-h1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* ==========================================================================
   BOTTOM CTA & FOOTER
   ========================================================================== */
.bottom-cta {
    background-color: var(--brand-navy);
    padding: 80px 0;
}

.bottom-cta h2, .bottom-cta .cta-phone { color: #FFF; }
.bottom-cta .cta-phone { display: block; margin-top: 15px; font-weight: 600; }

.site-footer {
    background-color: #05081A;
    color: #A0A5B5;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo { max-width: 200px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.site-footer h4 { color: #FFF; margin-bottom: 20px; }
.site-footer a { color: #A0A5B5; display: block; margin-bottom: 10px; }
.site-footer a:hover { color: #FFF; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: 14px; }

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.floating-wa:hover { transform: scale(1.1); }

/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-content { order: 2; }
    .hero-image { order: 1; }
    
    .process-steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .nav-links, .nav-actions { display: none; }
    .mobile-toggle { display: block; }
}


/* ==========================================================================
   HERO SECTION — FULL COVER BANNER
   ========================================================================== */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
}

/* The image wrapper becomes a full-cover background layer */
.hero .hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    order: unset;
}

.hero .hero-image .image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    display: block;
}

.hero .hero-image .image-wrapper img,
.hero .hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    display: block;
}

/* Dark overlay so text stays readable */
.hero .hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(9, 14, 45, 0.82) 0%,
        rgba(9, 14, 45, 0.55) 60%,
        rgba(9, 14, 45, 0.25) 100%
    );
    z-index: 1;
}

/* Content sits on top of the image */
.hero .hero-content {
    position: relative;
    z-index: 2;
}

/* Adjust text colors for dark background */
.hero .hero-content h1,
.hero .hero-content p,
.hero .hero-content .tag {
    color: #FFF;
}


.hero .hero-content .btn-outline {
    border-color: rgba(255, 255, 255, 0.7);
    color: #FFF;
}

.hero .hero-content .btn-outline:hover {
    background: #FFF;
    color: var(--brand-navy);
    border-color: #FFF;
}

/* Keep grid layout but hide the right column slot (image is now bg) */
.hero .hero-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-left: 0;
    margin-right: auto;
    padding: 60px 0;
}

.hero .hero-content {
    text-align: left;
    align-items: flex-start;
    padding: 20px 40px 20px 0;
}

/* Ensure the container inside hero starts from the left */
.hero .container {
    display: flex;
    justify-content: flex-start;
    padding-left: 5%;
}

@media (max-width: 992px) {
    .hero {
        min-height: 420px;
        background-image: url('../images/banner1.jpg');
        background-size: cover;
        background-position: center;
    }
    /* Overlay for mobile bg image */
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to right,
            rgba(9, 14, 45, 0.82) 0%,
            rgba(9, 14, 45, 0.45) 100%
        );
        z-index: 1;
    }
    .hero .container {
        position: relative;
        z-index: 2;
    }
    /* Hide the absolute image on mobile, use CSS background instead */
    .hero .hero-image {
        display: none;
    }
    /* Override the mobile rule that reorders hero columns */
    .hero .hero-content { order: unset; }
}

/* ==========================================================================
   ABOUT SNIPPET — HOME PAGE
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-img-col {
    position: relative;
}

/* No decorative frame — clean image with shadow */
.about-img-frame {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(9, 14, 45, 0.18);
}

.about-img-frame img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-frame:hover img {
    transform: scale(1.03);
}

.about-text-col {
    padding-right: 10px;
}

.about-text-col h2 {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.3;
}

.about-text-col p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.75;
}

/* ── Stats bar — individual cards ─────────────────────── */
.about-stats-bar {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
    margin-top: 56px;
}

.about-stat-item {
    flex: 1;
    max-width: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 28px 20px;
    background: rgba(9, 14, 45, 0.06);
    border: 1px solid rgba(9, 14, 45, 0.1);
    border-radius: 14px;
    cursor: default;
    transition: background 0.3s ease, border-color 0.3s ease,
                transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.3s ease;
}

.about-stat-item:hover {
    background: rgba(216, 12, 20, 0.06);
    border-color: rgba(216, 12, 20, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(216, 12, 20, 0.1);
}

.about-stat-item .stat-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1;
    letter-spacing: -1px;
    font-variant-numeric: tabular-nums;
}

.about-stat-item .stat-suffix {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-red);
    line-height: 1;
}

/* num + suffix inline */
.about-stat-item .stat-num,
.about-stat-item .stat-suffix {
    display: inline;
}

.about-stat-item .stat-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Remove old dividers */
.about-stat-divider { display: none; }

/* Star row */
.star-row {
    display: flex;
    gap: 3px;
    margin-top: 4px;
}

.star {
    font-size: 16px;
    color: #FFB800;
    opacity: 0;
    transform: scale(0.4) rotate(-30deg);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: calc(var(--i) * 0.12s);
}

.star.lit {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.star.half {
    background: linear-gradient(90deg, #FFB800 50%, rgba(255,184,0,0.25) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* UAE flag pulse */
.emirates-flags {
    font-size: 18px;
    animation: flagPulse 2s ease-in-out infinite;
    display: block;
}

@keyframes flagPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0.8; }
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-text-col { padding-right: 0; order: 1; }
    .about-img-col { order: 2; }
    .about-img-frame img { height: 380px; }
    .about-stats-bar { flex-wrap: wrap; gap: 12px; }
    .about-stat-item { flex: 0 0 calc(50% - 8px); max-width: none; }
    .about-stat-item .stat-num { font-size: 34px; }
}

@media (max-width: 600px) {
    .about-img-frame img { height: 280px; }
    .about-stat-item .stat-num { font-size: 28px; }
}

@media (max-width: 400px) {
    .about-stat-item { flex: 0 0 100%; }
}

/* Ensure old about-stats-row stays hidden */
.about-stats-row { display: none; }

/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================================================== */

/* Fade In Animation for Hero */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.stat-card {
    background: #FFF;
    padding: 40px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border-bottom: 4px solid var(--brand-red);
    transition: var(--transition-smooth);
}
.stat-card:hover {
    transform: translateY(-5px);
}
.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 10px;
    line-height: 1;
}
.stat-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Mission Quote */
.mission-quote {
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: var(--brand-red);
    border-left: 4px solid var(--brand-navy);
    padding-left: 20px;
    margin-top: 30px;
    line-height: 1.5;
}

/* Founder Image Container */
.founder-image-container {
    position: relative;
    padding-bottom: 20px;
    padding-right: 20px;
}
.founder-accent-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background-color: var(--brand-navy);
    border-radius: var(--border-radius);
    z-index: 1;
}
.founder-img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

/* Values Cards (Different Shapes) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.value-card {
    background: #FFF;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(9, 14, 45, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid transparent;
}
/* Assigning distinct asymmetrical corner radiuses */
.shape-1 { border-radius: 50px 10px 50px 10px; }
.shape-2 { border-radius: 10px 50px 10px 50px; }
.shape-3 { border-radius: 50px 50px 10px 10px; }

.value-card:hover {
    border-color: rgba(216, 12, 20, 0.2);
    box-shadow: 0 20px 40px rgba(216, 12, 20, 0.08);
}

/* The shapes invert on hover for a dynamic morphing effect */
.shape-1:hover { border-radius: 10px 50px 10px 50px; }
.shape-2:hover { border-radius: 50px 10px 50px 10px; }
.shape-3:hover { border-radius: 10px 10px 50px 50px; }

/* Timeline Elements */
.timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 30px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 6px; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--brand-red), var(--brand-navy));
    border-radius: 3px;
}
.timeline-item {
    position: relative;
    margin-bottom: 50px;
    background: #FFF;
    padding: 25px;
    border-radius: 0 20px 20px 20px;
    box-shadow: 0 5px 20px rgba(9, 14, 45, 0.05);
    transition: transform 0.4s ease;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:hover { transform: translateX(10px); }
.timeline-item::after {
    content: '';
    position: absolute;
    left: -42px; top: 20px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #FFF;
    border: 4px solid var(--brand-red);
    box-shadow: 0 0 10px rgba(216, 12, 20, 0.5);
    transition: transform 0.3s ease;
}
.timeline-item:hover::after { transform: scale(1.3); }
.timeline-item .year {
    display: inline-block;
    background: var(--brand-navy);
    color: #FFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.team-card {
    background: #FFF;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 3px solid var(--brand-red);
}
.team-info {
    padding: 25px;
}
.team-info .role {
    color: var(--brand-red);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Authority Pills & Logos */
.pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.pill {
    background: #FFF;
    border: 1px solid rgba(9, 14, 45, 0.1);
    color: var(--brand-navy);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.authorities-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
}
.authorities-logos img {
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-smooth);
}
.authorities-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive updates for About page */
@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid, .team-grid { grid-template-columns: 1fr; }
    .authorities-logos { grid-template-columns: repeat(2, 1fr); margin-top: 30px; }
}
@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   SERVICE PAGE SPECIFIC STYLES
   ========================================================================== */

/* Breadcrumbs */
.breadcrumb-bar {
    padding: 15px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(9, 14, 45, 0.05);
}
.breadcrumb-bar a { color: var(--brand-navy); font-weight: 500; }
.breadcrumb-bar a:hover { color: var(--brand-red); text-decoration: underline; }

/* AEO Block */
.aeo-block {
    font-size: 18px;
    color: var(--text-h2);
    background: #FFF;
    padding: 20px;
    border-left: 4px solid var(--brand-red);
    border-radius: 4px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

/* Wide Benefit Cards */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}
.wide-card {
    display: flex;
    align-items: center;
    background: #FFF;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    gap: 20px;
    transition: var(--transition-smooth);
}
.hover-enlarge:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(9, 14, 45, 0.1);
    border-left: 4px solid var(--brand-red);
}
.wide-card .icon {
    font-size: 32px;
    background: var(--bg-alt);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.wide-card .card-text h3 { margin-bottom: 5px; }
.wide-card .card-text p { margin-bottom: 8px; font-size: 14px; }
.result-line {
    display: inline-block;
    color: #0D8246; /* Trust green */
    font-size: 13px;
    font-weight: 600;
    background: rgba(13, 130, 70, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

/* Trust Badges */
.border-bottom { border-bottom: 1px solid rgba(9, 14, 45, 0.08); }
.badges-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}
.badge-item {
    font-weight: 600;
    color: var(--brand-navy);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

/* Features Grid */
.features-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}
.feature-item {
    display: flex;
    gap: 15px;
}
.feature-item .icon {
    color: var(--brand-red);
    font-weight: 700;
    font-size: 18px;
}
.feature-item h4 { margin-bottom: 4px; }
.feature-item p { font-size: 14px; margin-bottom: 0; }

/* Process Steps (Horizontal Row) */
.process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.step-box {
    background: #FFF;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--shadow-soft);
    text-align: left;
}
.step-num {
    color: var(--brand-red);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 20px;
}
.timeline-tag {
    display: inline-block;
    background: var(--brand-navy);
    color: #FFF;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 10px;
}

/* Reviews Block */
.stats-block-small { margin-top: 20px; }
.stats-block-small h3 { margin-bottom: 5px; }
.reviews-grid { display: grid; gap: 20px; }
.review-card {
    background: #FFF;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--brand-navy);
}
.review-card .quote { font-style: italic; margin: 15px 0; font-size: 16px; color: var(--text-h2); }
.review-card .author { margin-bottom: 5px; font-size: 14px; }
.review-card .source { font-size: 12px; color: var(--text-meta); margin-bottom: 0; }

/* Documents Checklist & Callout */
.doc-checklist {
    list-style: none;
    margin: 20px 0 30px;
}
.doc-checklist li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(9, 14, 45, 0.05);
    font-weight: 500;
}
.alert-amber {
    background-color: #FFF8E1;
    border-left: 4px solid #FFC107;
    padding: 20px;
    border-radius: 0 4px 4px 0;
}
.alert-amber h4 { color: #B38600; margin-bottom: 10px; }
.alert-amber ul { padding-left: 20px; margin-bottom: 0; font-size: 14px; }

/* Responsive Updates for Service Page */
@media (max-width: 992px) {
    .process-row { grid-template-columns: repeat(2, 1fr); }
    .features-list-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .process-row { grid-template-columns: 1fr; }
    .wide-card { flex-direction: column; text-align: center; }
    .badges-row { flex-direction: column; align-items: center; gap: 15px; }
}


/* ==========================================================================
   BLOG SPECIFIC STYLES
   ========================================================================== */

/* Blog Layout Grid (70/30) */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-pill {
    padding: 8px 16px;
    border: 1px solid var(--brand-navy);
    border-radius: 20px;
    color: var(--brand-navy);
    font-size: 14px;
    font-weight: 500;
}
.filter-pill.active, .filter-pill:hover {
    background: var(--brand-navy);
    color: #FFF;
}

/* Featured Post */
.featured-post {
    background: #FFF;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.featured-post .post-img { width: 100%; height: 350px; object-fit: cover; }
.post-content { padding: 30px; }
.category-tag {
    color: var(--brand-red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}
.post-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 15px; }
.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid rgba(9, 14, 45, 0.05);
    padding-top: 20px;
}

/* Standard Post Grid */
.post-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.standard-post {
    background: #FFF;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.standard-post img { width: 100%; height: 200px; object-fit: cover; }
.standard-post .post-content { padding: 20px; }
.standard-post h3 { font-size: 18px; margin-bottom: 10px; }
.read-more { color: var(--brand-navy); font-weight: 600; }

/* Author Mini */
.author-mini { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.author-mini img { width: 40px; height: 40px; border-radius: 50%; }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}
.page-link {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(9, 14, 45, 0.1);
    border-radius: 6px;
    color: var(--brand-navy);
    font-weight: 600;
}
.page-link.active, .page-link:hover { background: var(--brand-navy); color: #FFF; }
.page-link.prev, .page-link.next { width: auto; padding: 0 15px; }

/* Sidebar Widgets */
.widget {
    background: #FFF;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
}
.widget h3 { font-size: 18px; margin-bottom: 15px; border-bottom: 2px solid var(--brand-red); padding-bottom: 10px; display: inline-block; }
.search-widget { display: flex; gap: 10px; }
.search-widget input { flex: 1; padding: 10px; border: 1px solid #CCC; border-radius: 4px; }
.search-widget button { padding: 10px 15px; background: var(--brand-navy); color: #FFF; border: none; border-radius: 4px; cursor: pointer; }
.categories-widget ul { list-style: none; }
.categories-widget li { margin-bottom: 10px; border-bottom: 1px solid #EEE; padding-bottom: 10px; }
.categories-widget a { display: flex; justify-content: space-between; color: var(--text-body); }
.categories-widget a:hover { color: var(--brand-red); }
.bg-brand { background: var(--brand-navy); color: #FFF; }
.bg-brand h3, .bg-brand p { color: #FFF; border-color: #FFF; }
.tags-cloud a {
    display: inline-block; padding: 5px 10px; background: var(--bg-alt);
    border-radius: 4px; font-size: 13px; margin: 0 5px 5px 0; color: var(--brand-navy);
}

/* Sticky Sidebar */
.sticky-sidebar { position: sticky; top: 100px; }

/* Single Post Content */
.article-hero-img { width: 100%; height: 450px; object-fit: cover; border-radius: var(--border-radius); margin: 20px 0; }
.rich-text h2 { margin: 40px 0 20px; }
.rich-text p, .rich-text ul { margin-bottom: 20px; font-size: 17px; }
.rich-text ul { padding-left: 20px; }

/* Pro Tip Callout */
.pro-tip-box {
    background-color: #FFF8E1; border-left: 4px solid #FFC107;
    padding: 20px; border-radius: 0 4px 4px 0; margin: 30px 0;
}
.pro-tip-box h4 { color: #B38600; margin-bottom: 10px; }

/* TOC & Shares */
.toc-list { list-style: none; }
.toc-list li { margin-bottom: 10px; }
.share-buttons { display: flex; flex-direction: column; gap: 10px; }
.share-btn { padding: 10px; text-align: center; border-radius: 4px; color: #FFF; font-weight: 600; }
.share-btn.li { background: #0077b5; }
.share-btn.wa { background: #25D366; }
.share-btn.copy { background: var(--text-muted); }

/* Author Bio */
.author-bio-box {
    display: flex; gap: 20px; background: #FFF; padding: 30px;
    border-radius: var(--border-radius); box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--brand-navy);
}
.author-bio-box img { width: 80px; height: 80px; border-radius: 50%; }

/* Mobile Utilities */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 992px) {
    .blog-layout { grid-template-columns: 1fr; }
    .post-grid { grid-template-columns: 1fr; }
    .article-hero-img { height: 250px; }
    .desktop-only { display: none; }
    .mobile-only {
        display: block; background: var(--bg-alt); padding: 20px;
        border-radius: var(--border-radius); margin-bottom: 30px;
    }
}

/* ==========================================================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */

   .quick-actions {
    padding: 56px 0 40px;
}

.qc-header {
    text-align: center;
    margin-bottom: 28px;
}

.qc-header h2 {
    margin-top: 8px;
    font-size: 24px;
}

.qc-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.qc-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--brand-navy, #090E2D);
    border-radius: 16px;
    padding: 22px 20px;
    border: 1px solid transparent;
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.25s ease,
                border-color 0.25s ease;
}

.qc-card h3 {
    font-size: 15.5px;
    font-weight: 700;
    margin: 0 0 2px;
}

.qc-card p {
    font-size: 12.5px;
    margin: 0 0 10px;
    color: rgba(9, 14, 45, 0.6);
}

.qc-cta {
    font-size: 12.5px;
    font-weight: 600;
    margin-top: auto;
    transition: letter-spacing 0.2s ease;
}

.qc-card:hover .qc-cta {
    letter-spacing: 0.3px;
}

.qc-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.25s ease;
}

.qc-card:hover .qc-icon {
    transform: scale(1.08) rotate(-4deg);
}

.qc-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* WhatsApp — green */
.qc-card--whatsapp {
    background: #E9F9EF;
}
.qc-card--whatsapp .qc-icon {
    background: #25D366;
    color: #fff;
}
.qc-card--whatsapp .qc-cta {
    color: #128C4A;
}
.qc-card--whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
    transform: translateY(-4px);
}

/* Phone — navy/blue */
.qc-card--phone {
    background: #EAF0FB;
}
.qc-card--phone .qc-icon {
    background: var(--brand-navy, #1a2a6c);
    color: #fff;
}
.qc-card--phone .qc-cta {
    color: var(--brand-navy, #1a2a6c);
}
.qc-card--phone:hover {
    border-color: var(--brand-navy, #1a2a6c);
    box-shadow: 0 12px 28px rgba(26, 42, 108, 0.22);
    transform: translateY(-4px);
}

/* Email — purple */
.qc-card--email {
    background: #F2EBFB;
}
.qc-card--email .qc-icon {
    background: #7C3AED;
    color: #fff;
}
.qc-card--email .qc-cta {
    color: #6D28D9;
}
.qc-card--email:hover {
    border-color: #7C3AED;
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.22);
    transform: translateY(-4px);
}

/* Office — coral/amber */
.qc-card--office {
    background: #FDEEE7;
}
.qc-card--office .qc-icon {
    background: #D85A30;
    color: #fff;
}
.qc-card--office .qc-cta {
    color: #B0451F;
}
.qc-card--office:hover {
    border-color: #D85A30;
    box-shadow: 0 12px 28px rgba(216, 90, 48, 0.22);
    transform: translateY(-4px);
}

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

@media (max-width: 480px) {
    .qc-row {
        grid-template-columns: 1fr;
    }
}

   
/* Form Container */
.form-container {
    background: #FFF;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--brand-navy);
}
.form-container h2 { margin-bottom: 30px; }

/* Form Inputs */
.input-group { margin-bottom: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; color: var(--brand-navy); }
.required { color: var(--brand-red); }
input[type="text"], input[type="email"], input[type="tel"], textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}
input:focus, textarea:focus {
    outline: none;
    border-color: var(--brand-navy);
    box-shadow: 0 0 0 3px rgba(9, 14, 45, 0.1);
}

/* Tappable Pills (Radio Buttons) */
.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pill-radio input[type="radio"] { display: none; } /* Hide actual radio */
.pill-radio span {
    display: inline-block;
    padding: 10px 18px;
    background: var(--bg-alt);
    border: 1px solid transparent;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.pill-radio input[type="radio"]:checked + span {
    background: var(--brand-navy);
    color: #FFF;
    border-color: var(--brand-navy);
    box-shadow: 0 4px 10px rgba(9, 14, 45, 0.2);
}
.pill-radio span:hover { border-color: var(--brand-navy); }

/* Checkbox & Buttons */
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 25px; }
.checkbox-group input { margin-top: 5px; cursor: pointer; }
.checkbox-group label { font-weight: 400; font-size: 13px; color: var(--text-muted); cursor: pointer; }
.btn-full { width: 100%; font-size: 16px; padding: 15px; }
.helper-text { font-size: 13px; color: var(--text-muted); }

/* Form Success State */
.form-success-state {
    text-align: center;
    padding: 40px 20px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}
.form-success-state .icon { font-size: 48px; margin-bottom: 15px; }

/* Office Info Sidebar */
.info-card {
    background: #FFF;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}
.contact-details-list { list-style: none; margin-top: 20px; }
.contact-details-list li { margin-bottom: 15px; font-size: 15px; }
.wa-callout { padding: 25px; border-radius: var(--border-radius); text-align: center; }
.wa-btn { background: #FFF; border-color: #25D366; color: #25D366; width: 100%; }
.wa-btn:hover { background: #25D366; color: #FFF; border-color: #25D366; }

/* Responsive Contact Page */
@media (max-width: 992px) {
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .form-container, .info-card { padding: 25px 15px; }
}


/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

/* Hidden states */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

/* Active state triggered by JavaScript */
.reveal-active {
    opacity: 1;
    transform: translate(0, 0);
}


/* ==========================================================================
   DROPDOWN & MEGA MENU STYLES
   ========================================================================== */

.nav-links .dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.caret {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Base Dropdown Logic */
.mega-menu, .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFF;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(9, 14, 45, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(9, 14, 45, 0.05);
}

/* Hover triggers visibility */
.dropdown:hover .mega-menu, 
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .caret {
    transform: rotate(180deg);
}

/* --- 4-Column Mega Menu (Services) --- */
.mega-dropdown .mega-menu {
    left: -300px; /* Centers it relative to the nav */
    width: 900px;
    padding: 30px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Column Grid as requested */
    gap: 20px;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mega-item:hover {
    background: var(--bg-alt);
}

.mega-item .icon {
    font-size: 24px;
    background: rgba(216, 12, 20, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.mega-text strong {
    display: block;
    color: var(--brand-navy);
    font-size: 14px;
    margin-bottom: 4px;
}

.mega-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* --- Simple Dropdown (Blog List) --- */
.simple-dropdown .dropdown-menu {
    width: 300px;
    padding: 15px 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-body);
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--bg-alt);
    color: var(--brand-red);
}

.dropdown-divider {
    height: 1px;
    background: rgba(9, 14, 45, 0.05);
    margin: 10px 0;
}

.view-all-link {
    font-weight: 600;
    color: var(--brand-navy) !important;
}

/* Mobile override for dropdowns */
@media (max-width: 992px) {
    .mega-menu, .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none; /* Handled by JS toggle on mobile */
    }
    .mega-menu-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   HOMEPAGE — NEW SECTION STYLES
   ========================================================================== */

/* About snippet stats row */
.stats-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 25px 0 30px;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-item strong {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1;
}
.stat-item span {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Why Choose Us */
.why-choose .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

/* Zigzag rows */
.zigzag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.zigzag-row--reverse {
    direction: rtl;
}

.zigzag-row--reverse > * {
    direction: ltr;
}

.zigzag-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(9, 14, 45, 0.14);
    display: block;
    object-fit: cover;
}

.zigzag-content h3 {
    font-size: 20px;
    color: var(--brand-navy);
    margin-bottom: 20px;
}

.why-list-ul {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.why-list-ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(9, 14, 45, 0.07);
    font-weight: 500;
    color: var(--text-body);
    transition: color 0.2s;
}

.why-list-ul li:last-child {
    border-bottom: none;
}

/* Left column: reasons list */
.why-list h3 {
    font-size: 20px;
    color: var(--brand-navy);
    margin-bottom: 20px;
}
.why-list ul {
    list-style: none;
    margin-top: 0;
}
.why-list ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(9, 14, 45, 0.07);
    font-weight: 500;
    color: var(--text-body);
    transition: color 0.2s;
}
.why-list ul li:last-child {
    border-bottom: none;
}
.why-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--brand-navy);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}

/* Where We Operate subsection */
.where-we-operate {
    margin-top: 28px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(30,58,138,0.05) 0%, rgba(30,58,138,0.02) 100%);
    border-left: 3px solid var(--brand-navy);
    border-radius: 0 8px 8px 0;
}
.wwo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.wwo-icon {
    font-size: 20px;
}
.wwo-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-navy);
    margin: 0;
}
.where-we-operate > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.jurisdiction-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.jurisdiction-tags span {
    background: #fff;
    border: 1px solid rgba(30,58,138,0.2);
    color: var(--brand-navy);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}
.jurisdiction-tags span:hover {
    background: var(--brand-navy);
    color: #fff;
}

/* Right column: stat cards grid */
.why-stats-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.why-stat-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    transition: transform 0.25s, box-shadow 0.25s;
    border-top: 3px solid var(--brand-navy);
}
.why-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(9,14,45,0.12);
}
.why-stat-icon {
    font-size: 28px;
    margin-bottom: 4px;
}
.why-stat-card strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1;
}
.why-stat-card span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Reviews Section */
.review-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
    font-weight: 600;
    color: var(--brand-navy);
}
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}
.review-card {
    background: #FFF;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--brand-navy);
}
.review-card p {
    font-style: italic;
    font-size: 16px;
    color: var(--text-h2);
    margin-bottom: 15px;
}
.review-card cite {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    font-style: normal;
}

/* Footer social links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.social-links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}
.social-links a:hover { color: var(--brand-red); }

.business-hours {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 15px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-choose .why-grid { grid-template-columns: 1fr; }
    .zigzag-row,
    .zigzag-row--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 30px;
        margin-top: 40px;
    }
    .zigzag-row--reverse .zigzag-image { order: -1; }
    .why-stats-panel { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .stats-row { gap: 20px; }
}


/* ==========================================================================
   SERVICES MAIN PAGE — SECTION-SPECIFIC STYLES
   ========================================================================== */

/* Scoped wider container for the services page only */
.svc-hero .container,
.svc-why .container,
.svc-listing .container,
.svc-choose .container,
.svc-packages .container,
.svc-process .container,
.svc-trust .container,
.svc-reviews .container,
.svc-contact .container {
    width: 96%;
    max-width: 1480px;
    padding: 0 20px 0 28px;
}

/* ---- SECTION 1: HERO ---- */
.svc-hero {
    background: linear-gradient(135deg, var(--brand-navy) 0%, #131A3A 60%, #1a2550 100%);
    position: relative;
    overflow: hidden;
}
.svc-hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216,12,20,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.svc-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
}
.svc-hero-inner {
    max-width: 820px;
}
.svc-hero .tag { color: rgba(255,255,255,0.7); }
.svc-hero h1 {
    color: #fff;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 20px;
}
.svc-hero-lead {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    line-height: 1.7;
}
.svc-hero p { color: rgba(255,255,255,0.7); }
.svc-hero-tagline { color: #fff !important; font-size: 17px; }
.svc-hero .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}
.svc-hero .btn-outline:hover {
    background: #fff;
    color: var(--brand-navy);
    border-color: #fff;
}
.btn-wa {
    background: #25D366;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.btn-wa:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* ---- SECTION 2: WHY ONE CONSULTANCY ---- */
.svc-why-intro {
    max-width: 720px;
    margin: 16px auto 0;
    font-size: 17px;
    color: var(--text-h2);
    line-height: 1.7;
}
.svc-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.svc-why-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    box-shadow: var(--shadow-soft);
    border-bottom: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}
.svc-why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.svc-why-card:hover::before { transform: scaleX(1); }
.svc-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(9,14,45,0.12);
}
.svc-why-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(216,12,20,0.08), rgba(9,14,45,0.06));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.svc-why-icon svg { width: 26px; height: 26px; stroke: var(--brand-navy); }
.svc-why-card h3 { font-size: 17px; margin-bottom: 10px; }
.svc-why-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ---- SECTION 3: SERVICE CARDS ---- */
.svc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.svc-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(9,14,45,0.07);
    border: 1px solid rgba(9,14,45,0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}
.svc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(216,12,20,0.02), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(9,14,45,0.12);
    border-color: rgba(216,12,20,0.15);
}
.svc-card:hover::after { opacity: 1; }
.svc-card--full { grid-column: span 3; }
.svc-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}
.svc-card-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(216,12,20,0.1), rgba(9,14,45,0.08));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.svc-card-icon svg { width: 26px; height: 26px; stroke: var(--brand-red); }
.svc-card-header h3 { margin: 0; font-size: 18px; }
.svc-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.65; }
.svc-card-audience {
    background: var(--bg-alt);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
}
.svc-card-zones {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.svc-card-zones .pill {
    font-size: 11px;
    padding: 4px 10px;
    background: #fff;
    border: 1px solid rgba(9,14,45,0.12);
    color: var(--brand-navy);
    border-radius: 20px;
    font-weight: 500;
}
.svc-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.svc-card-list li {
    font-size: 13px;
    color: var(--text-body);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}
.svc-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-red);
    font-weight: 700;
    font-size: 12px;
}
.svc-card-timeline {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 8px 14px;
    border-radius: 6px;
    border-left: 3px solid var(--brand-red);
}
.svc-card .btn { align-self: flex-start; margin-top: auto; font-size: 13px; padding: 10px 20px; }

/* ---- SECTION 4: HOW TO CHOOSE ---- */
.svc-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.svc-choose-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid var(--brand-navy);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.svc-choose-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--brand-red);
    box-shadow: 0 16px 40px rgba(9,14,45,0.1);
}
.svc-choose-card--full { grid-column: span 3; }
.svc-choose-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-red), #90050A);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    align-self: flex-start;
}
.svc-choose-card h3 { font-size: 16px; color: var(--brand-navy); margin: 0; }
.svc-choose-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.svc-choose-card ul li {
    font-size: 13px;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}
.svc-choose-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-navy);
    font-size: 11px;
}
.svc-choose-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-red);
    align-self: flex-start;
    margin-top: auto;
    transition: gap 0.2s ease;
}
.svc-choose-link:hover { color: var(--brand-navy); }

/* ---- SECTION 5: PACKAGES ---- */
.svc-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
    align-items: stretch;
}
.svc-pkg-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(9,14,45,0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.svc-pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(9,14,45,0.12);
}
.svc-pkg-card--featured {
    border-color: var(--brand-red);
    background: linear-gradient(145deg, #fff 0%, #fff8f8 100%);
    transform: scale(1.03);
}
.svc-pkg-card--featured:hover {
    transform: scale(1.03) translateY(-6px);
}
.svc-pkg-badge {
    display: inline-block;
    background: var(--brand-navy);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 20px;
    align-self: flex-start;
}
.svc-pkg-card--featured .svc-pkg-badge {
    background: var(--brand-red);
}
.svc-pkg-card h3 { font-size: 22px; color: var(--brand-navy); margin: 0; }
.svc-pkg-for { font-size: 13px; color: var(--text-muted); margin: 0; }
.svc-pkg-includes {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--bg-alt);
    border-radius: 10px;
    padding: 16px 20px;
}
.svc-pkg-includes span {
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-navy);
}
.svc-pkg-includes span:nth-child(even) {
    color: var(--brand-red);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    padding: 2px 0;
}
.svc-pkg-card p { font-size: 14px; color: var(--text-muted); margin: 0; flex: 1; }
.svc-pkg-card .btn { align-self: stretch; text-align: center; }

/* ---- SECTION 6: PROCESS ---- */
.svc-process-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 56px;
    position: relative;
}
.svc-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.svc-step-num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), #90050A);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(216,12,20,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-step:hover .svc-step-num {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(216,12,20,0.45);
}
.svc-step-content h3 { font-size: 16px; margin-bottom: 10px; }
.svc-step-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.svc-step-connector {
    flex: 0 0 auto;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-navy));
    margin-top: 32px;
    position: relative;
}
.svc-step-connector::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--brand-navy);
    border-right: 2px solid var(--brand-navy);
    transform: rotate(45deg);
}

/* ---- SECTION 7: TRUST ---- */
.svc-trust-badges {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.svc-trust-badge {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border-bottom: 3px solid transparent;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.svc-trust-badge:hover {
    border-bottom-color: var(--brand-red);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(9,14,45,0.1);
}
.svc-trust-icon { font-size: 32px; line-height: 1; }
.svc-trust-badge strong { font-size: 14px; color: var(--brand-navy); line-height: 1.3; }
.svc-trust-badge span { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* ---- SECTION 8: REVIEWS ---- */
.svc-reviews-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}
.svc-reviews-left { padding-top: 10px; }
.svc-reviews-score {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0 28px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: var(--shadow-soft);
}
.svc-reviews-stars {
    font-size: 22px;
    color: #F59E0B;
    line-height: 1;
}
.svc-reviews-score strong { display: block; font-size: 16px; color: var(--brand-navy); }
.svc-reviews-score span { font-size: 13px; color: var(--text-muted); }
.svc-reviews-right {
    display: grid;
    gap: 20px;
}
.svc-reviews-right .review-card { border-top: 3px solid var(--brand-red); }

/* ---- SECTION 10: CONTACT ---- */
.svc-contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ==========================================================================
   SERVICES PAGE — RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
    .svc-why-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-trust-badges { grid-template-columns: repeat(3, 1fr); }
    .svc-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-card--full { grid-column: span 2; }
}
@media (max-width: 992px) {
    .svc-choose-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-choose-card--full { grid-column: span 2; }
    .svc-packages-grid { grid-template-columns: 1fr; }
    .svc-pkg-card--featured { transform: none; }
    .svc-pkg-card--featured:hover { transform: translateY(-6px); }
    .svc-process-row { flex-direction: column; gap: 32px; }
    .svc-step { align-items: flex-start; text-align: left; flex-direction: row; gap: 20px; padding: 0; }
    .svc-step-num { margin-bottom: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 18px; }
    .svc-step-connector { width: 2px; height: 40px; margin: 0 0 0 23px; }
    .svc-step-connector::after { right: -4px; top: auto; bottom: -5px; transform: rotate(135deg); }
    .svc-reviews-layout { grid-template-columns: 1fr; gap: 40px; }
    .svc-contact-layout { grid-template-columns: 1fr; }
    .svc-trust-badges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .svc-cards-grid { grid-template-columns: 1fr; }
    .svc-card--full { grid-column: span 1; }
    .svc-why-grid { grid-template-columns: 1fr; }
    .svc-choose-grid { grid-template-columns: 1fr; }
    .svc-choose-card--full { grid-column: span 1; }
    .svc-hero h1 { font-size: 26px; }
    .svc-hero .btn-group { flex-direction: column; gap: 12px; }
    .svc-hero .btn-group .btn { width: 100%; text-align: center; justify-content: center; }
    .svc-trust-badges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .svc-trust-badges { grid-template-columns: 1fr 1fr; gap: 12px; }
    .svc-trust-badge { padding: 20px 12px; }
}

/* ==========================================================================
   CONTACT HEADER — HERO OVERRIDE
   ========================================================================== */
.hero.contact-header {
    min-height: 420px;
}

.hero.contact-header .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 5%;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero.contact-header h1,
.hero.contact-header p,
.hero.contact-header .tag {
    color: #fff;
}

.hero.contact-header h1 {
    font-size: 38px;
    max-width: 560px;
}

.hero.contact-header p.subtitle {
    max-width: 480px;
    font-size: 16px;
    opacity: 0.88;
    margin-bottom: 0;
}

/* Mobile: stack centered */
@media (max-width: 768px) {
    .hero.contact-header {
        min-height: 320px;
    }

    .hero.contact-header .container {
        align-items: flex-start;
        padding-left: 0;
        text-align: left;
    }

    .hero.contact-header h1 {
        font-size: 26px;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero.contact-header .tag {
        text-align: left;
    }

    .hero.contact-header p.subtitle {
        text-align: left;
        font-size: 14px;
        max-width: 100%;
    }
}
