:root {
    --primary: #0A1628;
    --primary-light: #1A2D50;
    --accent: #b01212;
    --accent-hover: #d31515;
    --gold: #d4af37;
    --secondary: #14213d;
    --text-light: #ffffff;
    --text-dim: #94a3b8;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glass: rgba(10, 22, 40, 0.9);
    --whatsapp-green: #25D366;
    --call-red: #8B0000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo h1,
.nav-item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Top Bar */
.top-bar {
    background: #050a0e;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dim);
}

.contact-info a:hover {
    color: var(--text-light);
}

.call-now-btn {
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
}

.divider {
    color: rgba(255, 255, 255, 0.2);
}

.language-selector {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-dim);
    padding: 3px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 11px;
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
}


/* Why Carriers Call Us Section */
.why-carriers {
    padding: 40px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.why-carriers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(196, 30, 58, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.why-header {
    margin-bottom: 30px;
}

.why-header .sub-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.why-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card {
    background: var(--primary);
    padding: 40px 32px;
    transition: background 0.3s ease;
    border: none;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.why-icon {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.why-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

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

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .why-card {
        padding: 15px 12px !important;
    }

    .why-card:last-child {
        grid-column: span 1 !important;
    }

    .why-card h4 {
        font-size: 0.55rem !important;
        letter-spacing: 0.05em !important;
        margin-bottom: 8px !important;
    }

    .why-card p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
    }

    .why-icon {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }
}

/* Our Approach Section - Dark Premium */
.our-approach {
    padding: 140px 0;
    background: #08101b;
    /* Slightly darker than primary for contrast */
    position: relative;
    overflow: hidden;
}

.our-approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    pointer-events: none;
}

.approach-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.approach-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 20px;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
    z-index: 3;
    position: relative;
}

.process-step:hover .step-number {
    background: var(--gold);
    color: #0A1628;
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.process-step h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    height: 40px;
    /* Ensures alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.7;
    max-width: 200px;
    margin: 0 auto;
}


@media (max-width: 1100px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step h4 {
        height: auto;
    }
}

@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .step-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }

    .process-step h4 {
        font-size: 0.8rem !important;
        margin-bottom: 10px !important;
    }

    .process-step p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
    }

    .approach-header h2 {
        font-size: 1.6rem !important;
    }
}

/* Header Fixed Wrapper */
.header-fixed {
    position: sticky;
    top: 0;
    z-index: 2000;
    width: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

/* Main Header */
.main-header {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo-container {
    flex-shrink: 0;
}

.logo h1 {
    font-size: 22px;
    color: var(--text-light);
    letter-spacing: -0.5px;
    line-height: 1.1;
    font-weight: 800;
}

.logo-tagline {
    display: block;
    font-size: 9px;
    letter-spacing: 1.2px;
    color: var(--gold);
    font-weight: 700;
    margin-top: 5px;
    text-transform: uppercase;
    opacity: 0.9;
}

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

.mobile-menu-extra {
    display: none;
}

.nav-item {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15px 0;
    text-transform: uppercase;
}

.nav-item:hover {
    color: var(--text-light);
}

.nav-item i {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-item i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #111d29;
    min-width: 250px;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 25px;
    font-size: 13px;
    color: var(--text-dim);
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 12px 20px 12px 30px;
}

.dropdown-header {
    display: block;
    padding: 15px 20px 5px;
    font-size: 10px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 5px;
    opacity: 0.8;
}

.dropdown-header:not(:first-child) {
    margin-top: 10px;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.action-btn {
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.action-btn.call {
    background: var(--call-red);
    color: white;
}

.action-btn.call:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.action-btn.urgent {
    background: var(--whatsapp-green);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.action-btn.urgent:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: heroZoom 6s infinite alternate ease-in-out;
    background-attachment: scroll;
}

/* Homepage Background Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroZoom 6s infinite alternate ease-in-out, heroFade 18s infinite;
}

.hero-slide:nth-child(1) {
    animation-delay: 0s, 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 0s, 6s;
}

.hero-slide:nth-child(3) {
    animation-delay: 0s, 12s;
}

@keyframes heroFade {

    0%,
    100% {
        opacity: 0;
    }

    5%,
    33.33% {
        opacity: 1;
    }

    38.33% {
        opacity: 0;
    }
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-main {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-main.lang-fade {
    opacity: 0;
    transform: translateX(-20px);
}

.hero-branding {
    margin-bottom: 25px;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.brand-name {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    line-height: 1;
}

.brand-tag {
    display: block;
    font-size: 14px;
    color: var(--text-dim);
    margin-top: 5px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    max-width: 700px;
}

.hero-title span {
    color: #b01010;
    display: block;
}

.hero-description {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 45px;
    max-width: 600px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
}

.hero-btns-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.hero-btn.call-now {
    background: var(--call-red);
    color: white;
}

.hero-btn.whatsapp {
    background: var(--whatsapp-green);
    color: white;
}

.hero-btn.start-file {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dim);
}

/* Hero Sidebar Box */
.hero-sidebar {
    height: 100%;
}

.handle-box {
    background: rgba(10, 17, 24, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.box-title {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 223, 0, 0.2);
    padding-bottom: 10px;
}

.handle-item {
    margin-bottom: 25px;
}

.handle-item h4 {
    font-size: 15px;
    color: white;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.handle-item h4::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 1px;
}

.handle-item p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.4;
    padding-left: 16px;
}

.box-contact {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.box-contact p {
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--gold);
}

.box-contact i {
    width: 20px;
}

/* Regulatory Coverage */
.regulatory-coverage {
    padding: 60px 0;
    background: #0A1628;
    position: relative;
    overflow: hidden;
}

.regulatory-coverage::before {
    content: 'REGULATORY';
    position: absolute;
    top: calc(50% + var(--scroll-offset, 0px));
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.012);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: top 0.1s ease-out;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.coverage-card {
    background: #111d2d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 4px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.coverage-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: #1A2D50;
}

.coverage-card .province-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 25px;
}

.coverage-card h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    min-height: 2.4em;
    display: flex;
    align-items: flex-end;
}

.coverage-list {
    list-style: none;
    padding: 0;
}

.coverage-list li {
    font-size: 11px;
    color: var(--text-dim);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.coverage-card:hover .coverage-list li {
    color: rgba(255, 255, 255, 0.8);
}

.coverage-list li::before {
    content: '\f105';
    /* FontAwesome Chevron */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: 10px;
    transition: transform 0.3s ease;
}

.coverage-card:hover .coverage-list li::before {
    transform: translateX(3px);
}

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

.view-details {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 30px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.coverage-card:hover .view-details {
    opacity: 1;
    gap: 15px;
}

.view-details i {
    font-size: 14px;
}

/* What We Handle - Light Theme */
.what-we-handle {
    padding: 60px 0;
    background: #ffffff;
    color: #333;
    position: relative;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.services-header.centered {
    justify-content: center;
    text-align: center;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0a1118;
    margin-top: 15px;
    letter-spacing: -1px;
}

.services-header h2 span {
    color: var(--gold);
    font-family: serif;
    font-style: italic;
    font-weight: 400;
}

.btn-outline-dark {
    padding: 14px 30px;
    border: 2px solid #0a1118;
    color: #0a1118;
    font-weight: 800;
    font-size: 13px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: 1px;
}

.btn-outline-dark:hover {
    background: #0a1118;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.service-detail-card {
    padding: 45px 35px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.service-detail-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 0 0 0 8px;
}

.service-detail-card:hover {
    z-index: 2;
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.service-detail-card:hover::after {
    width: 60px;
}

.card-meta {
    margin-bottom: 25px;
}


.service-tag {
    font-size: 9px;
    font-weight: 900;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid #eee;
    color: #888;
}

.service-tag.urgent {
    background: #b01010;
    color: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(176, 16, 16, 0.2);
}

.service-tag.ongoing {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.service-tag.expert {
    background: #0a1118;
    color: #fff;
    border: none;
}

.service-tag.lang-tag {
    background: #f5f5f5;
    color: #1a1a1a;
    border: none;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 30px;
    color: #0a1118;
    transition: all 0.4s ease;
}

.service-detail-card:hover .service-icon {
    color: var(--gold);
    transform: translateY(-5px);
}

.service-detail-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0a1118;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.service-detail-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-link {
    font-size: 13px;
    font-weight: 800;
    color: #0a1118;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--gold);
}

/* Urgent Matter Contact Card */
.urgent-matter-contact {
    background: #0a1118 !important;
    color: #fff;
    justify-content: center;
    text-align: center;
}

.urgent-matter-contact h3 {
    color: #fff;
    font-size: 28px;
}

.urgent-matter-contact p {
    color: rgba(255, 255, 255, 0.6);
}

.urgent-arrow-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 25px;
    transition: transform 0.5s ease;
}

.urgent-matter-contact:hover .urgent-arrow-icon {
    transform: rotate(45deg);
}

.urgent-phone-link {
    margin-top: 10px;
}

.urgent-phone-link a {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

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

@media (max-width: 768px) {
    .services-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-detail-card {
        padding: 20px 15px;
    }

    .service-detail-card h3 {
        font-size: 14px;
    }

    .service-detail-card p {
        font-size: 12px;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

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

@media (max-width: 768px) {
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .coverage-card {
        padding: 20px 15px !important;
    }

    .coverage-card .province-icon {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }

    .coverage-card h3 {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
        min-height: auto !important;
    }

    .coverage-list li {
        font-size: 10px !important;
        margin-bottom: 8px !important;
    }

    .view-details {
        font-size: 10px !important;
        margin-top: 15px !important;
    }
}

/* Hero Ken Burns Effect */
/* Critical Intervention Section - Enhanced Premium Theme */
.urgent-alerts {
    padding: 60px 0;
    background: #7a0000;
    /* Fallback */
    background: radial-gradient(circle at center, #8b0000 0%, #4a0000 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Parallax Watermark */
.urgent-alerts::after {
    content: 'CRITICAL';
    position: absolute;
    bottom: -50px;
    right: -20px;
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    transform: translateY(var(--alert-scroll-offset, 0));
    white-space: nowrap;
}

.urgent-alerts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.45) 1.2px, transparent 1.2px);
    background-size: 5px 5px; /* Denser pattern */
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

/* Moving Texture Overlay */
.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.alerts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.alert-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.alert-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.alert-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--gold);
    font-size: 22px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--gold);
    animation: alert-pulse-gold 2.5s infinite;
    opacity: 0;
}

@keyframes alert-pulse-gold {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.alert-card h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

.alert-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.alerts-header-main {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.alerts-header-main h2 {
    color: #fff;
    font-size: 3.5rem; /* Larger */
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    line-height: 1;
}

.alerts-header-main h2 span {
    color: var(--gold);
    font-family: 'Playfair Display', serif; /* More premium serif */
    font-style: italic;
    font-weight: 400;
    margin-left: 10px;
}

.alerts-header-main p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

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

@media (max-width: 768px) {
    .alerts-grid {
        grid-template-columns: 1fr;
    }

    .alerts-header-main h2 {
        font-size: 30px;
    }
}

/* Emergency Banner - High Urgency Theme */
.emergency-banner {
    background: linear-gradient(90deg, #8b0000 0%, #b01212 50%, #d31515 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.emergency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.3) 1px, transparent 1.5px);
    background-size: 6px 6px;
    opacity: 0.4;
    pointer-events: none;
}

.emergency-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.emergency-text {
    display: flex;
    align-items: center;
    gap: 35px;
    max-width: 800px;
}

.emergency-text i {
    font-size: 60px;
    color: #fff;
    animation: flash-emergency 1.5s infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

@keyframes flash-emergency {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.emergency-info h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.emergency-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.emergency-btn {
    background: #fff;
    color: #b01212;
    padding: 20px 40px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.emergency-btn:hover {
    background: #fff;
    color: #b01212;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Logo Ticker Styles */
.logo-ticker {
    margin-top: 60px;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 22px 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.logo-ticker-track {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite;
    gap: 120px;
    align-items: center;
}

.logo-ticker-track img {
    height: 48px; /* Slightly smaller for cleaner look in the bar */
    width: auto;
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

.logo-ticker-track img:hover {
    opacity: 1;
    filter: brightness(0) invert(1) grayscale(0);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Stats */
.stats {
    padding: 100px 0;
    background: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 50px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--text-dim);
}

/* Footer */
.main-footer {
    background: #050a0e;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #fff;
}

.footer-info span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-info p {
    color: var(--text-dim);
    margin: 15px 0;
    font-size: 13px;
    line-height: 1.6;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: #0A1628;
    transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-dim);
    font-size: 13px;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-dim);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-dim);
}

.estro-link {
    color: inherit;
    font-weight: 600;
    transition: color 0.3s ease;
}

.estro-link:hover {
    color: var(--gold);
}

/* Mobile Responsive */
@media (max-width: 1100px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-main {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-btns-group {
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #0a1628;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 80px 30px;
        gap: 10px;
        transition: all 0.5s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 999;
        overflow-y: auto;
        display: flex;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-item {
        font-size: 14px;
        font-weight: 600;
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
        letter-spacing: 1.5px;
    }

    .nav-item i {
        margin-left: 10px;
    }

    .dropdown {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
        border: none;
        padding: 10px 0;
        margin-top: 5px;
        border-radius: 8px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 10px 15px;
        font-size: 13px;
        color: var(--text-dim);
        text-align: center;
        white-space: normal;
    }

    /* Mobile Menu Extras */
    .mobile-menu-extra {
        margin-top: 20px;
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-lang-selector {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
    }

    .mobile-lang-selector .lang-btn {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        padding: 8px 4px;
        border-radius: 4px;
        font-size: 10px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .mobile-lang-selector .lang-btn.active {
        background: var(--gold);
        color: #0a1118;
        border-color: var(--gold);
    }

    .mobile-contact-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: white;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        padding: 12px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mobile-contact-item i {
        color: #FFFFFF;
        font-size: 16px;
    }

    .mobile-contact-item.call {
        background: var(--call-red);
    }

    .mobile-contact-item.whatsapp {
        background: var(--whatsapp-green);
    }

    .mobile-contact-item:hover {
        filter: brightness(1.1);
    }

    .dropdown-header {
        padding: 20px 30px 5px;
        background: rgba(255, 255, 255, 0.02);
    }

    .alerts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .alerts-header-main h2 {
        font-size: 38px;
    }

    .alerts-header-main p {
        font-size: 16px;
    }

    .alert-card {
        padding: 40px 30px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-actions .action-btn.call {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .logo h1 {
        font-size: 18px;
    }

    .header-actions .action-btn {
        padding: 8px 15px;
        font-size: 11px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 15px;
        padding-left: 15px;
    }

    .hero-btns-group {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .hero-btn {
        padding: 10px 5px;
        font-size: 9px;
        letter-spacing: 0.3px;
        justify-content: center;
        width: auto;
        gap: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-btn i {
        font-size: 11px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .emergency-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .emergency-text {
        flex-direction: column;
        gap: 20px;
    }

    .emergency-info h3 {
        font-size: 24px;
    }

    .emergency-info p {
        font-size: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
        padding: 0 10px;
    }

    .footer-info h3 {
        font-size: 18px;
    }

    .footer-info span {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .footer-info p {
        font-size: 11px;
        margin: 12px auto;
        max-width: 100%;
        line-height: 1.5;
    }

    .social-links {
        justify-content: center;
        gap: 8px;
    }

    .social-links a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer-links ul li {
        margin-bottom: 6px;
    }

    .footer-links ul li a {
        font-size: 11px;
    }

    .footer-contact p {
        justify-content: center;
        text-align: left;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
        font-size: 11px;
        margin-bottom: 8px;
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 10px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    .footer-contact i {
        font-size: 11px;
        margin-top: 2px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 100%;
    }

    .hero-title {
        font-size: 34px;
    }

    .brand-name {
        font-size: 26px;
    }

    .hero-wrapper {
        gap: 30px;
    }

    /* Mobile Footer Order Fix */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 20px;
    }


    .info-item-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Contact Page Styles (Global) */
#contact {
    scroll-margin-top: 100px;
}

.contact-hero {
    position: relative;
    padding: 220px 0 120px;
    background: var(--primary);
    overflow: hidden;
    text-align: center;
}

.contact-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 1;
    animation: heroZoom 6s infinite alternate ease-in-out;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95), rgba(212, 175, 55, 0.15));
    z-index: 2;
}

.contact-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.contact-hero h1 span {
    color: var(--gold);
}

.contact-hero p {
    color: var(--text-dim);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-container {
    padding: 100px 0;
    background: #0a1628;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.info-item-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(181, 150, 92, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 10px;
}

.info-text h4 {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.info-text p,
.info-text a {
    color: white;
    font-size: 16px;
    font-weight: 600;
    display: block;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.contact-header {
    margin-bottom: 25px;
}

.contact-header h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    color: var(--text-dim);
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    width: 100%;
    background: var(--gold);
    color: #0a1118;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.submit-btn:hover {
    background: #e5c05b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(181, 150, 92, 0.2);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-info-column {
        text-align: center;
        gap: 15px;
    }

    .info-item-card {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 10px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .info-text h4 {
        font-size: 10px;
    }

    .info-text p,
    .info-text a {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 40px;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-hero p {
        font-size: 0.85rem;
        padding: 0 15px;
    }

    .contact-container {
        padding: 30px 0;
    }

    .contact-header {
        margin-bottom: 20px;
    }

    .contact-header h2 {
        font-size: 1.3rem;
    }

    .contact-header p {
        font-size: 0.75rem;
    }

    .contact-form-wrapper {
        border-radius: 12px;
        padding: 20px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 13px;
    }
}

/* About Page Styles */
.about-hero {
    position: relative;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 65vh;
}

.about-hero-content {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-hero .badge {
    display: inline-block;
    margin-bottom: 28px;
    font-size: 12px;
    padding: 7px 20px;
    background: var(--accent);
    color: white;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 3px;
}

.about-hero h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
    margin-bottom: 28px;
    font-weight: 900;
    color: white;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.about-hero h1 span {
    color: var(--gold);
    display: block;
    font-weight: 900;
}

.about-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Section Colors & Tones */
.about-section {
    padding: 60px 0;
    position: relative;
}

.section-light-gradient {
    background: #ffffff;
    color: var(--primary);
}

.section-light-gradient .section-title {
    color: var(--primary);
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 25px;
}

.section-dark {
    background: #08101b;
    color: white;
    background-size: cover;
    background-position: center;
}

.section-textured {
    background: #f8f9fa;
    background-image: radial-gradient(#d1d1d1 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    color: #1a1a1a;
}

.section-pillars {
    background: #050a12;
    color: white;
}

/* Firm Intro */
.firm-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.firm-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

.pull-quote {
    background: white;
    padding: 40px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 0 20px 20px 0;
    position: relative;
}

.pull-quote i {
    font-size: 40px;
    color: rgba(176, 18, 18, 0.1);
    position: absolute;
    top: 20px;
    left: 20px;
}

.pull-quote p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bg-dark);
    line-height: 1.35;
    font-style: italic;
    margin: 0;
}

/* Road Timeline Styling */
.road-map-section {
    position: relative;
    overflow: hidden;
}

.road-timeline {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
    padding: 20px 0;
}

.road-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
    border-radius: 10px;
    overflow: hidden;
}

.road-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    animation: roadDrive 3s infinite linear;
}

@keyframes roadDrive {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 40px;
    margin-bottom: 60px;
}

.timeline-item.left {
    left: 0;
    padding-right: 80px;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    top: 40px;
    width: 60px;
    height: 60px;
    background: #1a2a44;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    z-index: 5;
    transition: var(--transition);
    font-size: 14px;
}

.timeline-item.left .timeline-marker {
    right: -30px;
}

.timeline-item.right .timeline-marker {
    left: -30px;
}

.timeline-marker.circle-active {
    background: var(--accent);
    border-color: white;
    box-shadow: 0 0 20px rgba(176, 18, 18, 0.5);
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(176, 18, 18, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(176, 18, 18, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(176, 18, 18, 0);
    }
}

.road-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 20px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.road-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.active-card {
    background: rgba(176, 18, 18, 0.1);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 20px;
}

.timeline-item.left .card-icon {
    margin-left: auto;
}

.road-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--gold);
}

.road-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.history-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.history-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    opacity: 0.5;
}

.history-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.history-card h3 {
    color: var(--accent);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 800;
}

.history-card p {
    color: var(--text-dim);
    line-height: 1.7;
}

.principal-section {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.principal-bio {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.principal-bio h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 15px;
}

.principal-bio p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
}

.section-title-alt {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-title-accented {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
}

/* Regulatory Grid */
.instruments-container {
    margin-top: 40px !important;
}

.reg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.reg-item {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.reg-item i {
    color: var(--accent);
    font-size: 16px;
}

.reg-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

/* Pillar V2 */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pillar-card-v2 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pillar-card-v2:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-15px);
    border-color: var(--accent);
}

.pillar-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.pillar-icon {
    font-size: 44px;
    color: var(--accent);
    margin-bottom: 25px;
}

.pillar-card-v2 h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.pillar-card-v2 p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.sidebar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.sidebar-card {
    background: rgba(181, 150, 92, 0.05);
    border: 1px dashed var(--gold);
    padding: 40px;
    border-radius: 20px;
}

.sidebar-card h5 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Jurisdiction Card */
.juris-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.juris-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.juris-tags span {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(181, 150, 92, 0.2);
    transition: var(--transition);
}

.juris-tags span:hover {
    background: var(--accent);
    color: white;
    border-color: white;
}

.jurisdiction-list {
    list-style: none;
}

.jurisdiction-list li {
    margin-bottom: 12px;
    color: var(--text-dim);
    font-size: 14px;
}

.scope-note {
    font-size: 20px;
    line-height: 1.6;
    color: white;
    font-weight: 700;
    background: rgba(181, 150, 92, 0.1);
    border: 1px solid rgba(181, 150, 92, 0.3);
    padding: 30px 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
    display: block;
}

.scope-note i {
    color: var(--gold);
    font-size: 24px;
    margin-right: 15px;
    vertical-align: middle;
}

.scope-note span {
    display: inline-block;
    vertical-align: middle;
}

/* Responsive About */
@media (max-width: 992px) {
    .firm-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .road-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left .timeline-marker,
    .timeline-item.right .timeline-marker {
        left: -10px;
    }

    .timeline-item.left .card-icon {
        margin-left: 0;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .reg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0 30px;
        min-height: auto;
        background-attachment: scroll;
    }

    .about-hero-content {
        padding: 0 10px;
    }

    .about-hero h1 {
        font-size: 1.4rem;
    }

    .about-hero p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .about-section {
        padding: 25px 0 !important;
    }

    .firm-text p {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .pull-quote {
        padding: 20px 10px !important;
    }

    .pull-quote p {
        font-size: 0.9rem !important;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px;
        margin-top: 20px !important;
    }

    .pillar-card-v2 {
        padding: 12px 8px;
        border-radius: 10px;
    }

    .pillar-icon {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .pillar-card-v2 h4 {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .pillar-card-v2 p {
        font-size: 0.65rem;
        line-height: 1.25;
    }

    .section-title-alt {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
    }

    .reg-grid {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
        margin-top: 15px !important;
    }

    .reg-item {
        font-size: 0.7rem;
        padding: 6px;
    }

    .principal-bio h2 {
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
    }

    .bio-container p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    .road-card h3 {
        font-size: 1rem;
    }

    .road-card p {
        font-size: 0.75rem;
    }

    .juris-card {
        padding: 20px 15px;
    }

    .juris-tags span {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .scope-note {
        font-size: 0.8rem;
        padding: 15px;
        margin-top: 20px;
    }
}

/* Service Page Styles */
.service-hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--primary);
    overflow: hidden;
}

.service-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    animation: heroZoom 6s infinite alternate ease-in-out;
}

.service-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95), rgba(176, 18, 18, 0.2));
    z-index: 2;
}

.service-hero-wrapper {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.breadcrumb {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb i {
    font-size: 10px;
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}

.urgent-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(176, 18, 18, 0.3);
}

.service-hero-main h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    line-height: 1.25;
    margin-bottom: 25px;
    font-weight: 800;
    max-width: 800px;
}

.service-hero-main p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-btns-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-btns-group .action-btn {
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
}

.hero-btns-group .action-btn.urgent {
    background: #8b0c0c;
    border: 1px solid #8b0c0c;
}

.hero-btns-group .action-btn.outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.hero-btns-group .action-btn.outline:hover {
    background: white;
    color: var(--primary);
}

.hero-juris-ribbon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ribbon-divider {
    color: rgba(255, 255, 255, 0.2);
}

.urgent-tag-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #8b0c0c;
    color: white;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.subtitle-line {
    width: 25px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.service-details-section {
    padding: 60px 0;
    background: #fdfcf9;
    /* Slightly off-white for premium feel */
    color: var(--primary);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    padding-bottom: 120px; /* Extra space to prevent overlap with Incident Widget */
}

.content-block h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.block-title {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.block-title.centered {
    display: block;
    text-align: center;
}

.trigger-list {
    list-style: none;
    display: grid;
    gap: 15px;
}

.trigger-list li {
    background: white;
    padding: 18px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.trigger-list li i {
    font-size: 18px;
    color: var(--accent);
    width: 24px;
    text-align: center;
}

.trigger-list li span {
    font-size: 14.5px;
    font-weight: 500;
    color: #444;
}

.trigger-list li:hover {
    transform: translateX(5px);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.process-steps-v2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.p-step {
    display: flex;
    gap: 30px;
    background: white;
    padding: 35px;
    border-radius: 20px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.p-num {
    font-size: 42px;
    font-weight: 900;
    color: rgba(176, 18, 18, 0.1);
    line-height: 1;
}

.p-info h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.p-info p {
    font-size: 15px;
    margin: 0;
    color: #555;
}

.dark-compile-box {
    background: linear-gradient(135deg, #0d1c2e 0%, #0a1628 100%);
    padding: 32px 36px;
    border-radius: 12px;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.dark-compile-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.dark-compile-box h3 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-align: left;
    margin-bottom: 20px;
    color: var(--gold);
    text-transform: uppercase;
}

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

.compile-list {
    display: contents;
}

.compile-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.01em;
    line-height: 1.35;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    cursor: default;
}

.compile-list li:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    color: white;
}

.compile-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #eef0f2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.urgent-card {
    background: #0d1c2e !important;
    color: white !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.urgent-card .card-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold) !important;
    margin-bottom: 16px;
}

.urgent-card h3 {
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    color: white !important;
    text-transform: uppercase;
}

.urgent-card p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 20px;
    line-height: 1.62;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 15px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.sidebar-btn i {
    font-size: 13px;
}

.sidebar-btn.red {
    background: var(--call-red);
    color: white !important;
}

.sidebar-btn.red:hover {
    background: #A01830;
    transform: translateY(-2px);
}

.sidebar-btn.green {
    background: var(--whatsapp-green);
    color: white !important;
}

.sidebar-btn.green:hover {
    background: #1eaf54;
    transform: translateY(-2px);
}

.sidebar-btn.gold {
    background: var(--gold);
    color: #0d1c2e !important;
}

.sidebar-btn.gold:hover {
    background: #c5a037;
    transform: translateY(-2px);
}

.sidebar-btn.outline {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold) !important;
}

.sidebar-btn.outline:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.sidebar-btn:last-child {
    margin-bottom: 0;
}

.side-contact-list {
    list-style: none;
    margin-top: 25px;
}

.side-contact-list li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    font-size: 15px;
    font-weight: 600;
}

.side-contact-list i {
    color: var(--accent);
    margin-top: 3px;
}

.after-hours-note {
    background: rgba(176, 18, 18, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    margin-top: 20px;
    font-size: 13px;
    font-style: italic;
    color: #b01212;
}

/* Accordion */
.accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(0, 0, 0, 0.01);
}

.accordion-body {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.accordion-item.active .accordion-body {
    padding: 0 30px 30px;
    max-height: 500px;
}

/* Service Page Components (Global) */
.scope-note-v2 {
    font-size: 14px;
    line-height: 1.8;
    color: var(--primary);
    font-weight: 500;
    background: rgba(181, 150, 92, 0.06);
    border: 1px solid rgba(181, 150, 92, 0.3);
    border-left: 4px solid var(--gold);
    padding: 25px 30px;
    border-radius: 12px;
    margin: 80px auto 0;
    text-align: left;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 4px 15px rgba(181, 150, 92, 0.05);
}

.scope-note-v2 i {
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 4px;
}

.scope-note-v2 strong {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Provincial Coverage Grid V2 */
.coverage-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    align-items: stretch;
}

.cov-item-v2 {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #eef0f2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.cov-item-v2:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.cov-item-v2 .cov-icon {
    font-size: 16px;
    color: var(--primary);
    min-width: 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f0f3f7;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cov-item-v2:hover .cov-icon {
    background: var(--primary);
    color: var(--gold);
}

.cov-info h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.cov-info p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Reconstruction Page Styles */
.reconstruction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.recon-item {
    padding: 30px;
    border: 1px solid #eef0f2;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.recon-item:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.recon-item-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.recon-item h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 800;
}

.recon-item p {
    font-size: 14.5px;
    color: #555;
    margin: 0;
    line-height: 1.7;
}

.recon-number-list {
    margin-top: 50px;
}

.recon-number-item {
    display: flex;
    margin-bottom: 35px;
    gap: 25px;
}

.recon-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.recon-number-content h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 800;
}

.recon-number-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.cvor-standard-box {
    border-left: 4px solid var(--gold);
    background: #f8f9fa;
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.cvor-standard-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.cvor-standard-box p {
    font-size: 15px;
    color: #444;
    margin: 0;
    line-height: 1.7;
    font-weight: 500;
}

.research-box {
    background: #0d1c2e;
    padding: 35px;
    border-radius: 16px;
    margin-top: 40px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.research-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 35px;
}

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

.research-stat h3 {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 900;
}

.research-stat p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* Sidebar Extras */
.mini-card {
    background: white;
    border: 1px solid #eef0f2;
    padding: 28px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.mini-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.2);
}

.mini-card h4 {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.mini-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
    opacity: 0.3;
}

.mini-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mini-card-list li {
    font-size: 14px;
    color: #444;
    margin-bottom: 14px;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
    line-height: 1.4;
}

.mini-card-list li:last-child {
    margin-bottom: 0;
}

.mini-card-list.diamonds li::before {
    content: '◆';
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
}

.mini-card.danger {
    background: #fff8f8;
    border: 1px solid rgba(176, 18, 18, 0.1);
}

.mini-card.danger h4 {
    color: var(--accent);
}

.mini-card.danger h4::after {
    background: var(--accent);
}

.mini-card-list.checks li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
}

/* Responsive Service (Media Queries) */
@media (max-width: 1100px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .header-fixed {
        position: sticky;
        top: 0;
    }

    .top-bar {
        display: none;
    }

    .service-hero {
        padding: 50px 0 30px;
    }

    .hero-juris-ribbon {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 25px;
    }

    .service-hero-main h1 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .service-hero-main p {
        font-size: 0.8rem;
        margin-bottom: 25px;
    }

    .service-details-section {
        padding: 30px 0 !important;
    }

    .content-block h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .content-block p {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .block-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .trigger-list {
        gap: 8px;
    }

    .trigger-list li {
        padding: 10px 15px;
        gap: 10px;
    }

    .trigger-list li i {
        font-size: 14px;
    }

    .trigger-list li span {
        font-size: 0.75rem;
    }

    .p-step {
        padding: 15px;
        gap: 15px;
    }

    .p-num {
        font-size: 24px;
    }

    .p-info h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .p-info p {
        font-size: 0.75rem;
    }

    .sidebar-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .urgent-card h3 {
        font-size: 11px;
    }

    .urgent-card p {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .side-contact-list li {
        font-size: 0.8rem;
        gap: 10px;
        margin-bottom: 10px;
    }

    .navbar {
        padding: 5px 0;
    }

    .logo h1 {
        font-size: 18px;
    }

    .logo-tagline {
        font-size: 7px;
        letter-spacing: 0.8px;
    }

    .compile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .dark-compile-box {
        padding: 24px 20px;
    }

    /* Hero button row optimized: 1 full width + 2 half width */
    .hero-btns-group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }

    .hero-btns-group .action-btn:first-child,
    .hero-btns-group .hero-btn:first-child {
        grid-column: span 2;
        padding: 14px 10px;
    }

    .hero-btns-group .action-btn,
    .hero-btns-group .hero-btn {
        padding: 12px 6px;
        font-size: 10px;
        letter-spacing: 0.3px;
        text-align: center;
        width: 100%;
    }

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

/* Specific Component Mobile Overrides */
@media (max-width: 992px) {
    .coverage-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .scope-note-v2 {
        margin-top: 60px;
        padding: 20px 24px;
        font-size: 13px;
        gap: 14px;
    }

    .coverage-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cov-item-v2 {
        padding: 16px;
        gap: 14px;
    }

    .reconstruction-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .recon-item {
        padding: 20px;
    }

    .research-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .research-box {
        padding: 25px;
    }

    .mini-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .coverage-grid-v2 {
        grid-template-columns: 1fr !important;
    }
}
/* Incident Widget */
.incident-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #e60000 0%, #b30000 100%);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(179, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    white-space: nowrap;
}

.incident-widget i {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.incident-widget:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 0, 0, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #ff1a1a 0%, #cc0000 100%);
}

.incident-widget:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .incident-widget {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 12px;
        gap: 8px;
    }
    .incident-widget i {
        font-size: 15px;
    }
}
