body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Top Header Bar Styling */
.top-header {
    background-color: #002244;
    color: #ffffff;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 2px solid #ff6600;
}
.top-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

/* Navigation Menu Styling */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}
/* --- Navbar Logo Media Configuration Layout --- */
.logo {
    display: flex;
    align-items: center;
}
.logo a {
    display: block;
    line-height: 0; /* Eradicates inline text baseline margins */
}
.nav-logo-img {
    height: 48px; /* Dictates fixed aesthetic height boundaries */
    width: auto;  /* Dynamic proportional scaling to prevent compression aspect warp */
    max-width: 220px; /* Safe ceiling limit boundary edge constraints */
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    image-rendering: -webkit-optimize-contrast; /* Sharp rendering profiles on retina displays */
}
.nav-logo-img:hover {
    transform: scale(1.02); /* Delicate layout interactive tracking highlight lift */
}

/* Mobile Responsive Menu Adjustments */
@media screen and (max-width: 768px) {
    .nav-logo-img {
        height: 38px; /* Tighter layout boundaries matching compact viewport mobile bars */
        max-width: 180px;
    }
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #003366;
    text-decoration: none;
}
.logo a span {
    color: #ff6600;
}
.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-links li {
    margin-left: 20px;
    position: relative;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}
.nav-links a:hover,
.nav-links a.active {
    color: #ff6600;
}
.arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Animated Dropdown Menu Styling (Desktop) */
.dropdown-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    padding: 10px 0;
    min-width: 200px;
    border-radius: 4px;
    border-top: 3px solid #ff6600;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                visibility 0.3s;
}
.dropdown-menu li {
    margin: 0;
    width: 100%;
}
.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}
.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #ff6600;
}

@media screen and (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .dropdown:hover .arrow {
        transform: rotate(180deg);
    }
}

/* Mobile Toggle Button Styling */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #003366;
    margin: 4px 0;
    border-radius: 2px;
}

/* Hero & Main Sections */
.hero-section {
    background-color: #003366;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}
main {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    text-align: center;
}
button#openModalBtn {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 20px;
    transition: background 0.3s ease;
}
button#openModalBtn:hover {
    background-color: #e05500;
}

/* Pop-up Modal Lead Form Layout Architecture */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Animation hidden configuration state */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.modal-container {
    background-color: #ffffff;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    box-sizing: border-box;
    
    /* Slide down animation entry profile */
    transform: translateY(-30px);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal-overlay.open .modal-container {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    line-height: 1;
}
.modal-close:hover {
    color: #333;
}
.modal-header {
    margin-bottom: 20px;
}
.modal-header h3 {
    margin: 0 0 8px 0;
    color: #003366;
    font-size: 22px;
}
.modal-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Modal Form Layout Setup */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #444;
}
.form-group input, 
.form-group select {
    padding: 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease;
}
.form-group input:focus, 
.form-group select:focus {
    border-color: #ff6600;
}
.form-row {
    display: flex;
    gap: 15px;
}
.form-row .form-group {
    flex: 1;
}
.submit-btn {
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 10px;
}
.submit-btn:hover {
    background-color: #e05500;
}

/* Lead Submission Inline Response */
.form-success-message {
    display: none;
    background-color: #e6f4ea;
    color: #137333;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #ceead6;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    position: fixed;
    margin: auto;
    align-items: center;
    width: 96%;
    bottom: 0;
}

/* Mobile Responsive Media Query */
@media screen and (max-width: 768px) {
    .top-header {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 65px;
        left: 0;
        box-shadow: 0 4px 5px rgba(0,0,0,0.1);
        padding: 15px 0;
        align-items: flex-start;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 0;
        width: 100%;
    }
    .nav-links a {
        padding: 12px 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .dropdown {
        width: 100%;
    }
    .dropdown-toggle {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        background-color: #f9f9f9;
        padding: 0;
        width: 100%;
        border-radius: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .dropdown-menu.open {
        display: block;
    }
    .dropdown.open .arrow {
        transform: rotate(180deg);
    }
    .dropdown-menu a {
        padding-left: 40px;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}










/* --- Hero Slider & Text Animation Engine --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 450px;
    overflow: hidden;
    background-color: #002244;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Crossfade animation configuration states */
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.hero-content {
    max-width: 850px;
    padding: 0 30px;
    text-align: center;
    color: #ffffff;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-content p {
    font-size: 20px;
    margin: 0 0 30px 0;
    font-weight: 300;
    line-height: 1.5;
}
.cta-btn {
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}
.cta-btn:hover {
    background-color: #e05500;
    transform: translateY(-2px);
}

/* Keyframe Text Entry Animation Logic */
.slide .animate-text-down {
    opacity: 0;
    transform: translateY(-40px);
    transition: transform 0.8s ease-out 0.3s, opacity 0.8s ease-out 0.3s;
}
.slide .animate-text-up {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.8s ease-out 0.5s, opacity 0.8s ease-out 0.5s;
}
.slide .cta-btn {
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.6s ease-out 0.7s, opacity 0.6s ease-out 0.7s, background-color 0.3s ease;
}

/* Active State Text Animation Executions */
.slide.active .animate-text-down {
    opacity: 1;
    transform: translateY(0);
}
.slide.active .animate-text-up {
    opacity: 1;
    transform: translateY(0);
}
.slide.active .cta-btn {
    opacity: 1;
    transform: scale(1);
}

/* Navigation Arrow Overlays */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease;
}
.slider-arrow:hover {
    background-color: #ff6600;
}
.prev-arrow { left: 25px; }
.next-arrow { right: 25px; }

/* Slider UI Adjustments on Compact Viewports */
@media screen and (max-width: 768px) {
    .hero-slider { height: 60vh; }
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; }
    .slider-arrow { width: 40px; height: 40px; font-size: 16px; }
    .prev-arrow { left: 10px; }
    .next-arrow { right: 10px; }
}









/* --- Professional About Us Layout Engine --- */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Left Column: Overlapping Image Stack Engine */
.about-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 40px;
}
.image-stack {
    position: relative;
    height: 480px;
    width: 100%;
}
.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 34, 68, 0.15);
    z-index: 2;
}
.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 6px solid #ffffff;
    z-index: 3;
}
.experience-badge {
    position: absolute;
    top: 40px;
    left: -30px;
    background: linear-gradient(135deg, #ff6600, #e05500);
    color: #ffffff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-width: 130px;
    z-index: 4;
}
.exp-years {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}
.exp-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    font-weight: 700;
}

/* Right Column: Corporate Typographic Alignment */
.about-content .sub-heading {
    color: #ff6600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}
.about-content h2 {
    color: #002244;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
}
.about-lead {
    font-size: 18px;
    color: #1a2a3a;
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 20px 0;
    border-left: 4px solid #ff6600;
    padding-left: 15px;
}
.about-text {
    font-size: 15px;
    color: #556677;
    line-height: 1.7;
    margin: 0 0 35px 0;
}

/* Data Metrics Grid Layout */
.about-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background-color: #f4f7fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 35px;
    border-bottom: 3px solid #003366;
}
.metric-card {
    display: flex;
    flex-direction: column;
}
.metric-number {
    font-size: 28px;
    font-weight: 800;
    color: #003366;
}
.metric-label {
    font-size: 13px;
    color: #556677;
    margin-top: 4px;
    font-weight: 600;
}

/* Professional Structural Value Pillars */
.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 45px;
}
.pillar-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.pillar-icon-box {
    background-color: #eaf0f6;
    color: #003366;
    width: 46px;
    height: 46px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}
.pillar-info h4 {
    color: #002244;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px 0;
}
.pillar-info p {
    color: #556677;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Footer Execution Call Row Elements */
.about-action-row {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}
.about-cta-btn {
    background-color: #003366;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.about-cta-btn:hover {
    background-color: #001122;
    transform: translateY(-2px);
}
.support-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}
.support-icon {
    font-size: 22px;
    color: #ff6600;
}
.support-details {
    display: flex;
    flex-direction: column;
}
.support-title {
    font-size: 12px;
    color: #8899aa;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.support-phone {
    font-size: 16px;
    font-weight: 700;
    color: #002244;
}

/* Responsive Adaptive Viewports Breakpoints */
@media screen and (max-width: 1200px) {
    .about-grid { gap: 40px; }
    .about-content h2 { font-size: 36px; }
}
@media screen and (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    .image-stack { height: 440px; }
    .about-img-main { height: 360px; }
    .about-img-secondary { height: 240px; }
}
@media screen and (max-width: 576px) {
    .about-section { padding: 60px 0; }
    .image-stack { height: 320px; }
    .about-img-main { height: 260px; }
    .about-img-secondary { height: 180px; border-width: 4px; }
    .experience-badge { left: -10px; top: 20px; padding: 15px; min-width: 100px; }
    .exp-years { font-size: 28px; }
    .about-content h2 { font-size: 28px; }
    .about-metrics-grid { grid-template-columns: 1fr; gap: 15px; text-align: center; }
    .about-action-row { gap: 20px; flex-direction: column; align-items: flex-start; }
    .about-cta-btn { width: 100%; text-align: center; }
}










/* --- Professional Services Block Design Architecture --- */
.services-section {
    padding: 120px 0;
    background-color: #f4f7fa;
}
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings & Title Geometry Alignment */
.services-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px auto;
}
.services-header .sub-heading {
    color: #ff6600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}
.services-header h2 {
    color: #002244;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
}
.header-divider {
    width: 60px;
    height: 3px;
    background-color: #ff6600;
    margin: 0 auto 20px auto;
}
.services-header p {
    color: #556677;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

/* Structural Corporate Services Layout Matrix */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 34, 68, 0.04);
    border: 1px solid #eaf0f6;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 34, 68, 0.1);
}

/* Media Framing Layout System */
.card-media-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #002244;
}
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%) contrast(105%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .card-img {
    transform: scale(1.05);
}
.card-overlay-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 34, 68, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Functional Body Card Configuration */
.card-body {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.pillar-icon {
    font-size: 26px;
    line-height: 1;
}
.meta-tag {
    font-size: 12px;
    font-weight: 700;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.card-body h3 {
    color: #002244;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 15px 0;
}
.card-body p {
    color: #556677;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

/* Technical Bullet List Configurations */
.card-bullet-features {
    list-style: none;
    margin: 0 0 35px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px dashed #eaf0f6;
    padding-top: 20px;
}
.card-bullet-features li {
    font-size: 14px;
    color: #1a2a3a;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-bullet-features li::before {
    content: "✓";
    color: #ff6600;
    font-weight: 800;
    font-size: 14px;
}

/* Bottom Action Row Structures */
.card-footer-action {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eaf0f6;
    padding-top: 25px;
}
.service-action-btn {
    background: none;
    border: none;
    color: #003366;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: color 0.2s ease;
}
.service-action-btn:hover {
    color: #ff6600;
}
.action-arrow {
    color: #003366;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.2s ease, color 0.2s ease;
}
.service-card:hover .action-arrow {
    transform: translateX(5px);
    color: #ff6600;
}

/* Responsive Structural Breakpoints */
@media screen and (max-width: 1200px) {
    .services-header h2 { font-size: 36px; }
    .card-body { padding: 30px; }
}
@media screen and (max-width: 992px) {
    .services-grid { gap: 30px; }
    .card-media-wrapper { height: 210px; }
    .card-body h3 { font-size: 22px; }
}
@media screen and (max-width: 768px) {
    .services-section { padding: 80px 0; }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .card-media-wrapper { height: 240px; }
}
@media screen and (max-width: 576px) {
    .services-section { padding: 60px 0; }
    .services-header h2 { font-size: 28px; }
    .services-header { margin-bottom: 45px; }
    .card-body { padding: 25px; }
    .card-body h3 { font-size: 20px; }
}
/* --- Entrance Animation Initial States --- */
.services-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Staggered Delay Engine Profiles for Cards */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.25s; }
.service-card:nth-child(3) { transition-delay: 0.1s; } /* Resets on mobile grids */
.service-card:nth-child(4) { transition-delay: 0.25s; }

/* Active States Triggered by Scroll JavaScript */
.services-header.reveal-active,
.service-card.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Additional Micro-Interaction for Checked Features */
.service-card .card-bullet-features li::before {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .card-bullet-features li::before {
    transform: scale(1.2);
}













/* --- FAQ Section Structural Layout Architecture --- */
.faq-section {
    padding: 120px 0;
    background-color: #ffffff;
}
.faq-container {
    max-width: 850px; /* Narrower layout profile for clean scannability */
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings Configuration Alignment */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}
.faq-header .sub-heading {
    color: #ff6600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}
.faq-header h2 {
    color: #002244;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
}
.faq-header .header-divider {
    width: 60px;
    height: 3px;
    background-color: #ff6600;
    margin: 0 auto 20px auto;
}
.faq-header p {
    color: #556677;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

/* Accordion Element Custom Blocks */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.accordion-item {
    background-color: #ffffff;
    border: 1px solid #eaf0f6;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 34, 68, 0.02);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.accordion-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 15px rgba(0, 34, 68, 0.04);
}

/* Interactive Accordion Click Trigger Elements */
.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    outline: none;
}
.faq-question {
    color: #002244;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.2s ease;
}
.accordion-trigger:hover .faq-question {
    color: #ff6600;
}

/* Dynamic CSS Plus/Minus Pseudo-Indicator Matrix */
.accordion-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.accordion-icon::before,
.accordion-icon::after {
    content: "";
    position: absolute;
    background-color: #003366;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.accordion-icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}
.accordion-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

/* Toggle transformations when active panel drops */
.accordion-item.active {
    border-color: #ff6600;
}
.accordion-item.active .faq-question {
    color: #ff6600;
}
.accordion-item.active .accordion-icon::before {
    background-color: #ff6600;
}
.accordion-item.active .accordion-icon::after {
    transform: rotate(90deg);
    background-color: #ff6600;
    opacity: 0; /* Collapse vertical line to form a minus symbol */
}

/* Smooth Height Max-Height Panel Transition Box Profiles */
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.panel-content {
    padding: 0 30px 25px 30px;
    color: #556677;
    font-size: 15px;
    line-height: 1.65;
    border-top: 1px solid #f8f9fa;
    padding-top: 15px;
}
.panel-content p {
    margin: 0 0 15px 0;
}
.panel-content p:last-child {
    margin-bottom: 0;
}

/* Internal Layout Lists inside panels */
.faq-internal-list {
    margin: 15px 0 0 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style-type: disc;
}
.faq-internal-list li {
    font-size: 14px;
    color: #556677;
    line-height: 1.5;
}


/* Responsive Structural Breakpoints */
@media screen and (max-width: 1200px) {
    .about-grid { 
        gap: 40px; 
    }
    .about-content h2 { 
        font-size: 36px; 
    }
    .card-body { 
        padding: 30px; 
    }
}

@media screen and (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    .image-stack { 
        height: 440px; 
    }
    .about-img-main { 
        height: 360px; 
    }
    .about-img-secondary { 
        height: 240px; 
    }
    .services-grid { 
        gap: 30px; 
    }
    .card-media-wrapper { 
        height: 210px; 
    }
    .card-body h3 { 
        font-size: 22px; 
    }
}

@media screen and (max-width: 768px) {
    .top-header { 
        display: none; 
    }
    .menu-toggle { 
        display: flex; 
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 65px;
        left: 0;
        box-shadow: 0 4px 5px rgba(0,0,0,0.1);
        padding: 15px 0;
        align-items: flex-start;
    }
    .nav-links.active { 
        display: flex; 
    }
    .nav-links li { 
        margin: 0; 
        width: 100%; 
    }
    .nav-links a { 
        padding: 12px 20px; 
        width: 100%; 
        box-sizing: border-box; 
    }
    .dropdown { 
        width: 100%; 
    }
    .dropdown-toggle { 
        display: flex !important; 
        justify-content: space-between; 
        align-items: center; 
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        background-color: #f9f9f9;
        padding: 0;
        width: 100%;
        border-radius: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .dropdown-menu.open { 
        display: block; 
    }
    .dropdown.open .arrow { 
        transform: rotate(180deg); 
    }
    .dropdown-menu a { 
        padding-left: 40px; 
    }
    .form-row { 
        flex-direction: column; 
        gap: 15px; 
    }
    .hero-slider { 
        height: 60vh; 
    }
    .hero-content h1 { 
        font-size: 32px; 
    }
    .hero-content p { 
        font-size: 16px; 
    }
    .slider-arrow { 
        width: 40px; 
        height: 40px; 
        font-size: 16px; 
    }
    .prev-arrow { 
        left: 10px; 
    }
    .next-arrow { 
        right: 10px; 
    }
    .services-section { 
        padding: 80px 0; 
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .card-media-wrapper { 
        height: 240px; 
    }
    .faq-section { 
        padding: 80px 0; 
    }
    .faq-header h2 { 
        font-size: 32px; 
    }
    .accordion-trigger { 
        padding: 20px 24px; 
    }
    .panel-content { 
        padding: 0 24px 20px 24px; 
    }
    .faq-question { 
        font-size: 15px; 
    }
}

@media screen and (max-width: 576px) {
    .about-section { 
        padding: 60px 0; 
    }
    .image-stack { 
        height: 320px; 
    }
    .about-img-main { 
        height: 260px; 
    }
    .about-img-secondary { 
        height: 180px; 
        border-width: 4px; 
    }
    .experience-badge { 
        left: -10px; 
        top: 20px; 
        padding: 15px; 
        min-width: 100px; 
    }
    .exp-years { 
        font-size: 28px; 
    }
    .about-content h2 { 
        font-size: 28px; 
    }
    .about-metrics-grid { 
        grid-template-columns: 1fr; 
        gap: 15px; 
        text-align: center; 
    }
    .about-action-row { 
        gap: 20px; 
        flex-direction: column; 
        align-items: flex-start; 
    }
    .about-cta-btn { 
        width: 100%; 
        text-align: center; 
    }
    .services-section { 
        padding: 60px 0; 
    }
    .services-header h2 { 
        font-size: 28px; 
    }
    .services-header { 
        margin-bottom: 45px; 
    }
    .card-body { 
        padding: 25px; 
    }
    .card-body h3 { 
        font-size: 20px; 
    }
    .faq-section { 
        padding: 60px 0; 
    }
    .faq-header h2 { 
        font-size: 26px; 
    }
    .faq-header { 
        margin-bottom: 40px; 
    }
}



















/* --- Professional Reviews Layout Engine --- */
.reviews-section {
    padding: 120px 0;
    background-color: #f4f7fa;
}
.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings Alignment */
.reviews-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}
.reviews-header .sub-heading {
    color: #ff6600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}
.reviews-header h2 {
    color: #002244;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
}
.reviews-header .header-divider {
    width: 60px;
    height: 3px;
    background-color: #ff6600;
    margin: 0 auto 20px auto;
}
.reviews-header p {
    color: #556677;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}







/* Review Component Details */
.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.client-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #eaf0f6;
    color: #003366;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}
.client-meta h4 {
    margin: 0;
    color: #002244;
    font-size: 15px;
    font-weight: 700;
}
.verified-badge {
    font-size: 11px;
    color: #137333;
    font-weight: 600;
    display: block;
    margin-top: 2px;
}
.rating-stars {
    color: #ff6600;
    font-size: 14px;
    letter-spacing: 1px;
}
.review-text {
    color: #556677;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

/* Footer Tag Meta Labels */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f4f7fa;
    padding-top: 15px;
    gap: 10px;
}
.route-tag {
    font-size: 12px;
    font-weight: 600;
    color: #003366;
}
.move-type-tag {
    font-size: 11px;
    font-weight: 700;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Staggered Entrance Animation Multipliers */
.review-card:nth-child(1) { transition: opacity 0.8s ease 0.1s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s; }
.review-card:nth-child(2) { transition: opacity 0.8s ease 0.2s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s; }
.review-card:nth-child(3) { transition: opacity 0.8s ease 0.3s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s; }
.review-card:nth-child(4) { transition: opacity 0.8s ease 0.4s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s; }
.review-card:nth-child(5) { transition: opacity 0.8s ease 0.1s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s; }
.review-card:nth-child(6) { transition: opacity 0.8s ease 0.2s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s; }
.review-card:nth-child(7) { transition: opacity 0.8s ease 0.3s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s; }
.review-card:nth-child(8) { transition: opacity 0.8s ease 0.4s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s; }

/* Responsive Adaptive Viewports Breakpoints */
@media screen and (max-width: 1200px) {
    .review-card:nth-child(4) { display: none; } /* Drop elements gracefully to maintain grid rows balance */
    .review-card:nth-child(8) { display: none; }
}
@media screen and (max-width: 992px) {
    .review-card:nth-child(4) { display: flex; } /* Restore layouts structure for balanced dual-columns matching */
    .review-card:nth-child(8) { display: flex; }
    .reviews-header h2 { font-size: 36px; }
}
@media screen and (max-width: 768px) {
    .reviews-section { padding: 80px 0; }
    .reviews-header h2 { font-size: 32px; }
}
@media screen and (max-width: 576px) {
    /* About Us Compact Adjustments */
    .about-section { 
        padding: 60px 0; 
    }
    .image-stack { 
        height: 320px; 
    }
    .about-img-main { 
        height: 260px; 
    }
    .about-img-secondary { 
        height: 180px; 
        border-width: 4px; 
    }
    .experience-badge { 
        left: -10px; 
        top: 20px; 
        padding: 15px; 
        min-width: 100px; 
    }
    .exp-years { 
        font-size: 28px; 
    }
    .about-content h2 { 
        font-size: 28px; 
    }
    .about-metrics-grid { 
        grid-template-columns: 1fr; 
        gap: 15px; 
        text-align: center; 
    }
    .about-action-row { 
        gap: 20px; 
        flex-direction: column; 
        align-items: flex-start; 
    }
    .about-cta-btn { 
        width: 100%; 
        text-align: center; 
    }

    /* Core Services Grid Mobile Adjustments */
    .services-section { 
        padding: 60px 0; 
    }
    .services-header h2 { 
        font-size: 26px; 
    }
    .services-header { 
        margin-bottom: 45px; 
    }
    .card-body { 
        padding: 25px; 
    }
    .card-body h3 { 
        font-size: 20px; 
    }

    /* Frequently Asked Questions Mobile Adjustments */
    .faq-section { 
        padding: 60px 0; 
    }
    .faq-header h2 { 
        font-size: 26px; 
    }
    .faq-header { 
        margin-bottom: 40px; 
    }

    /* Client Reviews Grid Mobile Adjustments */
    .reviews-section {
        padding: 60px 0;
    }
    .reviews-header h2 {
        font-size: 26px;
    }
    .reviews-header {
        margin-bottom: 40px;
    }
    .card-top-row {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Pop-up Lead Form Modal Mobile Geometry */
    .modal-container {
        padding: 20px;
        width: 95%;
    }
    .modal-header h3 {
        font-size: 18px;
    }
}


/* --- Professional Reviews Sliding Architecture --- */
.reviews-section {
    padding: 120px 0;
    background-color: #f4f7fa;
    overflow: hidden; /* Isolates layout tracking boundaries */
}
.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings Alignment */
.reviews-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}
.reviews-header .sub-heading {
    color: #ff6600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}
.reviews-header h2 {
    color: #002244;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
}
.reviews-header .header-divider {
    width: 60px;
    height: 3px;
    background-color: #ff6600;
    margin: 0 auto 20px auto;
}
.reviews-header p {
    color: #556677;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

/* Horizontal Viewport Window Track Configuration */
.reviews-carousel-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
    padding: 20px 0;
}
.reviews-carousel-viewport:active {
    cursor: grabbing;
}

/* Linear Infinite Motion Sliding Track Wrapper */
.reviews-slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
    /* Hardware acceleration layer to guarantee zero frame drops */
    transform: translate3d(0, 0, 0); 
}

/* Micro-Engineered Testimonial Card Profiles */
.review-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 34, 68, 0.03);
    border: 1px solid #eaf0f6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 380px; /* Locked explicit card width dimensions */
    flex-shrink: 0; /* Prevents compression distortion inside the track flex line */
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 34, 68, 0.08);
}

/* Inner Profile Layout Alignment Specs */
.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.client-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #eaf0f6;
    color: #003366;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}
.client-meta h4 {
    margin: 0;
    color: #002244;
    font-size: 15px;
    font-weight: 700;
}
.verified-badge {
    font-size: 11px;
    color: #137333;
    font-weight: 600;
    display: block;
    margin-top: 2px;
}
.rating-stars {
    color: #ff6600;
    font-size: 14px;
    letter-spacing: 1px;
}
.review-text {
    color: #556677;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 25px 0;
}
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f4f7fa;
    padding-top: 15px;
    gap: 10px;
}
.route-tag {
    font-size: 12px;
    font-weight: 600;
    color: #003366;
}
.move-type-tag {
    font-size: 11px;
    font-weight: 700;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Adaptive Viewports Breakpoints */
@media screen and (max-width: 768px) {
    .reviews-section { padding: 80px 0; }
    .reviews-header h2 { font-size: 32px; }
    .review-card { width: 320px; padding: 25px; }
}
@media screen and (max-width: 576px) {
    .reviews-section { padding: 60px 0; }
    .reviews-header h2 { font-size: 26px; }
    .reviews-header { margin-bottom: 40px; }
    .card-top-row { flex-direction: column; gap: 10px; align-items: flex-start; }
    .review-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
}











/* ==========================================================================
   PROFESSIONAL CONTACT & GOOGLE MAPS BLOCK ARCHITECTURE
   ========================================================================== */

.contact-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Header Typography Configuration --- */
.contact-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px auto;
}

.contact-header .sub-heading {
    color: #ff6600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}

.contact-header h2 {
    color: #002244;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
}

.contact-header .header-divider {
    width: 60px;
    height: 3px;
    background-color: #ff6600;
    margin: 0 auto 20px auto;
}

.contact-header p {
    color: #556677;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

/* --- Contact Dual Column Layout Grid Framework --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch; /* Forces equal height container panels side by side */
}

/* Left Panel Desk Details Layout */
.contact-info-panel {
    background-color: #f4f7fa;
    padding: 45px;
    border-radius: 8px;
    border: 1px solid #eaf0f6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-card-wrapper h3 {
    color: #002244;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 12px 0;
}

.panel-intro-text {
    color: #556677;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

/* Individual Data Row Profiles */
.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-detail-item:last-of-type {
    margin-bottom: 0;
}

.detail-icon {
    font-size: 20px;
    background-color: #ffffff;
    color: #003366;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.04);
    border: 1px solid #eaf0f6;
}

.detail-text h4 {
    margin: 0 0 4px 0;
    color: #002244;
    font-size: 16px;
    font-weight: 700;
}

.detail-text p {
    margin: 0;
    color: #556677;
    font-size: 14px;
    line-height: 1.5;
}

.contact-panel-btn {
    background-color: #003366;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.15);
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 40px;
    width: max-content;
}

.contact-panel-btn:hover {
    background-color: #001122;
    transform: translateY(-2px);
}

/* Right Panel Sandbox Mapping Element CSS */
.contact-map-panel {
    width: 100%;
    min-height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 34, 68, 0.04);
    border: 1px solid #eaf0f6;
    position: relative;
    background-color: #e5e3df; /* Map canvas baseline placeholder hue */
}

.map-iframe-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.map-iframe-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   RESPONSIVE ADAPTIVE CODES BREAKPOINTS 
   ========================================================================== */

@media screen and (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack layout options sequentially on tablets */
        gap: 40px;
    }
    .contact-info-panel {
        padding: 35px;
    }
    .contact-map-panel {
        min-height: 400px;
        position: relative;
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    .contact-header h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }
    .contact-header h2 {
        font-size: 26px;
    }
    .contact-header {
        margin-bottom: 45px;
    }
    .contact-info-panel {
        padding: 25px;
    }
    .info-card-wrapper h3 {
        font-size: 20px;
    }
    .contact-panel-btn {
        width: 100%;
        text-align: center;
    }
    .contact-map-panel {
        min-height: 300px;
        height: 300px;
    }
}
















/* ==========================================================================
   PROFESSIONAL FOOTER LAYOUT COMPONENT
   ========================================================================== */

.main-footer {
    background-color: #001f3f; /* Deep corporate navy profile */
    color: #ffffff;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Top Footer Module Grid Systems --- */
.footer-top {
    padding: 80px 0 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 25px 0;
    position: relative;
    padding-bottom: 10px;
}

/* Accent anchor design profile beneath headings */
.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: #ff6600;
}

/* --- Brand Matrix Layout Column 1 --- */
.brand-col {
    display: flex;
    flex-direction: column;
}

.footer-logo a {
    font-size: 26px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.footer-logo a span {
    color: #ff6600;
}

.brand-desc {
    color: #a3b8cc;
    font-size: 14px;
    line-height: 1.6;
    margin: 20px 0 25px 0;
}

.compliance-badges {
    display: flex;
    gap: 10px;
}

.badge-tag {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* --- List Links Mechanics Column 2 & 3 --- */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #a3b8cc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff6600;
    transform: translateX(4px);
}

/* --- Corporate Contact Helpdesk Column 4 --- */
.footer-contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 16px;
    color: #ff6600;
    line-height: 1;
    margin-top: 2px;
}

.contact-text {
    color: #a3b8cc;
    font-size: 14px;
    line-height: 1.5;
}

.contact-text strong {
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
}

/* --- Bottom Footer Module Meta Profiles --- */
.footer-bottom {
    padding: 25px 0;
    background-color: #001730; /* Slightly darker shade offset */
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright-text {
    color: #71899f;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.footer-legal-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #71899f;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #ff6600;
}

/* ==========================================================================
   RESPONSIVE ADAPTIVE BREAKPOINTS
   ========================================================================== */

@media screen and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .footer-top {
        padding: 60px 0 40px 0;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal-links {
        justify-content: center;
        gap: 15px 20px;
    }
}

@media screen and (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-col h3 {
        margin-bottom: 20px;
    }
    
    .brand-desc {
        margin: 15px 0 20px 0;
    }
}











/* --- Bottom Footer Module Meta Profiles --- */
.footer-bottom {
    padding: 25px 0;
    width: 94%;
    margin: auto;
    align-items: center;
    background-color: #001730; /* Slightly darker shade offset */
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright-text {
    color: #71899f;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.footer-legal-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #71899f;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #ff6600;
}

@media screen and (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-legal-links {
        justify-content: center;
        gap: 15px 20px;
    }
}










/* ==========================================================================
   STICKY MOBILE QUICK ACTION BAR (COMMISTRATION PROFILE)
   ========================================================================== */

/* Completely hidden on desktop viewports by default */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.12);
    z-index: 2500; /* Layers higher than modal overlays and standard footers */
    grid-template-columns: repeat(3, 1fr);
}

.mobile-action-bar .action-btn {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-weight: 700;
    transition: background-color 0.2s ease;
}

/* Individual Platform Visual Color Branding Profiles */
.mobile-action-bar .whatsapp-btn {
    background-color: #25D366; /* Official WhatsApp Green branding */
}
.mobile-action-bar .whatsapp-btn:hover {
    background-color: #1ebd57;
}

.mobile-action-bar .sms-btn {
    background-color: #ff6600; /* Lamba Corporate Accent Orange branding */
}
.mobile-action-bar .sms-btn:hover {
    background-color: #e05500;
}

.mobile-action-bar .call-btn {
    background-color: #003366; /* Lamba Corporate Primary Deep Navy branding */
}
.mobile-action-bar .call-btn:hover {
    background-color: #002244;
}

.mobile-action-bar .action-icon {
    font-size: 18px;
    line-height: 1;
}

.mobile-action-bar .action-label {
    font-size: 12px;
    letter-spacing: 0.2px;
}

/* --- Responsive Viewport Activation Media Trigger --- */
@media screen and (max-width: 768px) {
    .mobile-action-bar {
        display: grid; /* Grid container activates specifically for mobile viewports */
    }
    
    /* Adds bottom spacing to body to prevent the sticky bar from clipping footer layout details */
    body {
        padding-bottom: 60px; 
    }
    
    /* Adjusts the pop-up modal overlay tracking to avoid overlapping the quick communication tabs */
    .modal-container {
        margin-bottom: 60px;
    }
}










/* ==========================================================================
   INDIVIDUAL SERVICE PILLARS LAYOUT ENGINE
   ========================================================================== */

.service-pillar-section {
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

/* Background alternation to create clean section separation */
.standard-bg {
    background-color: #ffffff;
}
.alternate-bg {
    background-color: #f4f7fa;
}

.pillar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pillar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Flex profile override to create an alternating checkerboard look on desktop viewports */
.reverse-layout {
    grid-template-columns: 1fr 1fr;
}

/* --- Left Column: Media Presentation Layouts --- */
.pillar-media-box {
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.pillar-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 34, 68, 0.08);
}

.pillar-floating-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    background-color: #ffffff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.06);
    border: 1px solid #eaf0f6;
}

/* Adjust floating icon layout position on reverse grids */
.reverse-layout .pillar-floating-icon {
    left: auto;
    right: -20px;
}

/* --- Right Column: Text & Content Layers --- */
.pillar-text-box {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, opacity 0.8s ease 0.15s;
}

.pillar-sub {
    color: #ff6600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pillar-text-box h2 {
    color: #002244;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.pillar-accent-line {
    width: 45px;
    height: 3px;
    background-color: #ff6600;
    margin-bottom: 25px;
}

.pillar-desc {
    color: #556677;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 30px 0;
    text-align: justify;
}

/* Technical Specification Tag Layouts */
.pillar-meta-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.p-tag {
    background-color: rgba(0, 51, 102, 0.04);
    border: 1px solid rgba(0, 51, 102, 0.06);
    color: #003366;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
}

/* Interactive CTA Trigger Configuration */
.pillar-cta-btn {
    background-color: #003366;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    width: max-content;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.12);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.pillar-cta-btn:hover {
    background-color: #ff6600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.2);
}

/* --- Scroll Entrance Animation Engine Framework --- */
.service-pillar-section.reveal-active .pillar-media-box,
.service-pillar-section.reveal-active .pillar-text-box {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE ADAPTIVE BREAKPOINTS
   ========================================================================== */

@media screen and (max-width: 992px) {
    .pillar-grid, .reverse-layout {
        grid-template-columns: 1fr; /* Force linear stack flow on tablets */
        gap: 50px;
    }
    /* Enforces that media elements always display above narrative blocks on mobile screens */
    .reverse-layout .pillar-text-box {
        grid-row: 2;
    }
    .reverse-layout .pillar-media-box {
        grid-row: 1;
    }
    .pillar-text-box h2 {
        font-size: 30px;
    }
    .pillar-img {
        height: 320px;
    }
}

@media screen and (max-width: 768px) {
    .service-pillar-section {
        padding: 80px 0;
    }
}

@media screen and (max-width: 576px) {
    .service-pillar-section {
        padding: 60px 0;
    }
    .pillar-text-box h2 {
        font-size: 24px;
    }
    .pillar-floating-icon, .reverse-layout .pillar-floating-icon {
        left: 15px;
        right: auto;
        top: -15px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    .pillar-desc {
        font-size: 14px;
        line-height: 1.6;
    }
    .pillar-cta-btn {
        width: 100%;
        text-align: center;
    }
}











/* ==========================================================================
   CORPORATE CONTACT PAGE ARCHITECTURE & FORM MATRIX TYPOGRAPHY
   ========================================================================== */

.corporate-contact-section {
    padding: 100px 0;
    background-color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.contact-hub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hub-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: stretch; /* Forces equal baseline structural height match balance */
}

/* --- Left Column: Operations Desk Details CSS --- */
.contact-panel-details {
    display: flex;
    flex-direction: column;
}

.hub-sub-heading {
    color: #ff6600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}

.contact-panel-details h2 {
    color: #002244;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.hub-accent-line {
    width: 50px;
    height: 3px;
    background-color: #ff6600;
    margin-bottom: 30px;
}

.hub-lead-text {
    font-size: 16px;
    color: #556677;
    line-height: 1.65;
    margin: 0 0 45px 0;
}

/* Data Rows Structural Elements */
.hub-info-rows {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hub-row-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hub-icon-frame {
    font-size: 20px;
    background-color: #f4f7fa;
    color: #003366;
    width: 46px;
    height: 46px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid #eaf0f6;
}

.hub-row-content h4 {
    margin: 0 0 6px 0;
    color: #002244;
    font-size: 17px;
    font-weight: 700;
}

.hub-row-content p {
    margin: 0;
    color: #556677;
    font-size: 15px;
    line-height: 1.5;
}

.hub-row-content strong {
    color: #1a2a3a;
}

/* --- Right Column: High-Conversion Lead Capture Form CSS --- */
.contact-panel-form {
    background-color: #f4f7fa;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eaf0f6;
    box-shadow: 0 4px 20px rgba(0, 34, 68, 0.02);
    position: relative; /* Anchor box boundary tracking configuration */
    overflow: hidden;
}

.form-card-header {
    margin-bottom: 30px;
}

.form-card-header h3 {
    margin: 0 0 8px 0;
    color: #002244;
    font-size: 22px;
    font-weight: 800;
}

.form-card-header p {
    margin: 0;
    color: #556677;
    font-size: 14px;
    line-height: 1.5;
}

/* Form Input Configurations */
.hub-interactive-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hub-form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hub-form-group label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a2a3a;
}

.hub-form-group input, 
.hub-form-group select,
.hub-form-group textarea {
    padding: 12px;
    font-size: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background-color: #ffffff;
    box-sizing: border-box;
    outline: none;
    font-family: Arial, sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hub-form-group input:focus, 
.hub-form-group select:focus,
.hub-form-group textarea:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
}

.hub-form-row {
    display: flex;
    gap: 20px;
}

.hub-form-row .hub-form-group {
    flex: 1;
}

.hub-submit-btn {
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.hub-submit-btn:hover {
    background-color: #e05500;
    transform: translateY(-1px);
}

/* Async Inline Overlay Container States */
.hub-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 10;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
}

.success-message-box {
    text-align: center;
    max-width: 350px;
}

.success-check-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.success-message-box h3 {
    color: #137333;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 10px 0;
}

.success-message-box p {
    color: #556677;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* --- Full Width Maps Module Structure --- */
.corporate-map-section {
    width: 100%;
    height: 500px;
    background-color: #e5e3df;
    line-height: 0; /* Clears iframe base row offsets margins */
}

.corporate-map-section iframe {
    display: block;
}

/* ==========================================================================
   RESPONSIVE ADAPTIVE BREAKPOINTS
   ========================================================================== */

@media screen and (max-width: 1024px) {
    .contact-hub-grid {
        gap: 40px;
    }
    .contact-panel-details h2 {
        font-size: 36px;
    }
}

@media screen and (max-width: 992px) {
    .contact-hub-grid {
        grid-template-columns: 1fr; /* Reset dual horizontal axis grids into linear sequence block */
        gap: 50px;
    }
    .contact-panel-form {
        padding: 35px;
    }
    .corporate-map-section {
        height: 400px;
    }
    .corporate-map-section iframe {
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .corporate-contact-section {
        padding: 80px 0;
    }
}

@media screen and (max-width: 576px) {
    .corporate-contact-section {
        padding: 60px 0;
    }
    .contact-panel-details h2 {
        font-size: 28px;
    }
    .hub-lead-text {
        margin-bottom: 35px;
        font-size: 15px;
    }
    .contact-panel-form {
        padding: 25px;
    }
    .hub-form-row {
        flex-direction: column;
        gap: 20px;
    }
    .hub-submit-btn {
        width: 100%;
    }
    .corporate-map-section {
        height: 320px;
    }
    .corporate-map-section iframe {
        height: 320px;
    }
}








/* ==========================================================================
   Baddi REGIONAL OPERATIONAL COVERAGE AREA BLOCK ARCHITECTURE
   ========================================================================== */

.coverage-section {
    padding: 120px 0;
    background-color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.coverage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Title and Header Alignment --- */
.coverage-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.coverage-header .sub-heading {
    color: #ff6600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}

.coverage-header h2 {
    color: #002244;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
}

.coverage-header .header-divider {
    width: 60px;
    height: 3px;
    background-color: #ff6600;
    margin: 0 auto 20px auto;
}

.coverage-header p {
    color: #556677;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

/* --- Core Regional Quad-Grid Layout System --- */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.coverage-card {
    background-color: #f4f7fa;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #eaf0f6;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.coverage-card.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.coverage-card:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
    border-color: #ff6600;
    box-shadow: 0 15px 35px rgba(0, 34, 68, 0.06);
}

/* --- Internal Card Component Element Styling --- */
.card-region-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    border-bottom: 2px solid #eaf0f6;
    padding-bottom: 15px;
    transition: border-color 0.3s ease;
}

.coverage-card:hover .card-region-banner {
    border-color: rgba(255, 102, 0, 0.15);
}

.region-icon {
    font-size: 20px;
    line-height: 1;
}

.card-region-banner h3 {
    margin: 0;
    color: #002244;
    font-size: 18px;
    font-weight: 800;
}

.region-meta-desc {
    color: #556677;
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

/* Structured Bullet Matrix Links */
.location-bullet-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px dashed #cbd5e1;
    padding-top: 15px;
    margin-top: auto; /* Attaches bullet set squarely to container base boundaries */
}

.location-bullet-list li {
    font-size: 14px;
    color: #1a2a3a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-bullet-list li::before {
    content: "•";
    color: #ff6600;
    font-weight: 800;
    font-size: 16px;
    line-height: 1;
}

/* Staggered Element Entry Transition Delays */
.coverage-card:nth-child(1) { transition: opacity 0.8s ease 0.05s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.05s, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.coverage-card:nth-child(2) { transition: opacity 0.8s ease 0.15s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.coverage-card:nth-child(3) { transition: opacity 0.8s ease 0.25s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.coverage-card:nth-child(4) { transition: opacity 0.8s ease 0.35s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }

/* --- Summary Footnote Module Layout --- */
.coverage-footer-note {
    margin-top: 50px;
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 20px 30px;
    border-left: 4px solid #003366;
    text-align: left;
}

.footnote-text {
    margin: 0;
    color: #556677;
    font-size: 14.5px;
    line-height: 1.6;
}

.footnote-text strong {
    color: #002244;
}

.cta-link {
    color: #ff6600;
    text-decoration: underline;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    margin-left: 4px;
    transition: color 0.2s ease;
}

.cta-link:hover {
    color: #003366;
}

/* ==========================================================================
   RESPONSIVE ADAPTIVE BREAKPOINTS
   ========================================================================== */

@media screen and (max-width: 1200px) {
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .coverage-section {
        padding: 80px 0;
    }
    .coverage-header h2 {
        font-size: 32px;
    }
    .coverage-footer-note {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    .coverage-section {
        padding: 60px 0;
    }
    .coverage-header h2 {
        font-size: 26px;
    }
    .coverage-header {
        margin-bottom: 40px;
    }
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .coverage-card {
        padding: 25px;
    }
}












/* ==========================================================================
   LEGAL GENERAL DOCUMENTATION STYLING FRAMEWORK (TERMS & PRIVACY)
   ========================================================================== */

.legal-document-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.legal-container {
    max-width: 800px; /* Narrow configuration optimized for text scannability */
    margin: 0 auto;
    padding: 0 20px;
}

.legal-wrapper {
    display: flex;
    flex-direction: column;
}

.legal-meta-info {
    border-bottom: 1px solid #cbd5e1;
    padding-bottom: 25px;
    margin-bottom: 40px;
}

.legal-meta-info p {
    font-size: 14px;
    color: #8899aa;
    margin: 0 0 10px 0;
}

.legal-intro {
    font-size: 16px;
    color: #1a2a3a !important;
    line-height: 1.65;
    font-weight: 500;
    margin-top: 15px !important;
}

.legal-content-block {
    margin-bottom: 40px;
}

.legal-content-block h2 {
    color: #002244;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: -0.3px;
}

.legal-content-block p {
    color: #556677;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 15px 0;
    text-align: justify;
}

.legal-bullet-points {
    list-style: none;
    margin: 15px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-bullet-points li {
    font-size: 14.5px;
    color: #556677;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.legal-bullet-points li::before {
    content: "▪";
    color: #ff6600;
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 16px;
}

.legal-bullet-points strong {
    color: #002244;
}

/* Call Out Action Box */
.legal-action-box {
    background-color: #f4f7fa;
    border: 1px solid #eaf0f6;
    border-left: 4px solid #ff6600;
    padding: 35px;
    border-radius: 4px;
    margin-top: 20px;
}

.legal-action-box h3 {
    margin: 0 0 10px 0;
    color: #002244;
    font-size: 20px;
    font-weight: 700;
}

.legal-action-box p {
    color: #556677;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.legal-cta-btn {
    display: inline-block;
    background-color: #003366;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.legal-cta-btn:hover {
    background-color: #ff6600;
}

/* --- Responsive Media Adjustments --- */
@media screen and (max-width: 768px) {
    .legal-document-section {
        padding: 80px 0;
    }
    .legal-content-block h2 {
        font-size: 20px;
    }
    .legal-action-box {
        padding: 25px;
    }
}

@media screen and (max-width: 576px) {
    .legal-document-section {
        padding: 60px 0;
    }
    .legal-content-block h2 {
        font-size: 18px;
    }
    .legal-content-block p {
        font-size: 14px;
        line-height: 1.6;
    }
    .legal-cta-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}
