/* =======================================================
   PART 1: GLOBAL VARIABLES & BASE RESETS
   ======================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #0056b3;     /* Logistics Royal Blue */
    --secondary-color: #ffc107;   /* Safety Accent Gold */
    --dark-color: #2d3748;        /* Charcoal Text Primary */
    --light-color: #f7fafc;       /* Muted Background Gray */
    --white: #ffffff;             /* Pure White Layers */
}

body {
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-section {
    padding: 90px 0;
}

.sub-title {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 34px;
    color: #0f2137;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #718096;
    font-size: 16px;
}










/* =======================================================
   PART 2: BASE DESKTOP HEADER & MENU
   ======================================================= */
#main-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Info Contact Banner Row */
.top-bar {
    background: #0f2137; 
    color: #e2e8f0;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-info span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-info i {
    color: var(--secondary-color);
}

.top-social a {
    color: #cbd5e0;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.top-social a:hover {
    color: var(--secondary-color);
}

/* Primary Horizontal Navigation Row */
.nav-bar {
    padding: 12px 0;
    background: var(--white);
}

.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-accent {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-color);
    letter-spacing: 2px;
}

/* Menu Text Links Setup */
nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover, 
nav ul li a.active {
    color: var(--primary-color);
    background: rgba(0, 86, 179, 0.05);
}

/* High Conversion Call Pill Button */
.btn-nav-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0056b3, #004085);
    color: var(--white);
    padding: 8px 20px 8px 8px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
    transition: transform 0.3s ease;
}

.btn-nav-call:hover {
    transform: translateY(-2px);
}

.icon-circle {
    background: var(--secondary-color);
    color: #0f2137;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.cta-text {
    display: flex;
    flex-direction: column;
}

.cta-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.cta-number {
    font-size: 16px;
    font-weight: 700;
}

/* Mobile Icon Framework Bases (Hidden by default on Desktop layout) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: 0.3s ease;
}


.logo a img {
  height: 50px;       /* Adjust this value to fit your header size */
  width: auto;        /* Keeps the image aspect ratio perfect */
  display: block;     /* Removes unwanted white space below the image */
}
.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo a img {
  height: 45px;       /* Change height as needed */
  width: auto;
}





/* Position the parent relative to align the dropdown */
.dropdown {
  position: relative;
}

/* Hide the dropdown menu by default */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;             /* Places it directly below the nav item */
  left: 0;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  list-style: none;
  padding: 10px 0;
  border-radius: 4px;
}

/* Style the links inside the dropdown */
.dropdown-content li a {
  color: #333333;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: background 0.3s ease;
}

/* Change background color on hover */
.dropdown-content li a:hover {
  background-color: #f5f5f5;
  color: #000000;         /* Adjust to your accent color if preferred */
}

/* Show the menu smoothly when hovering over the parent item */
.dropdown:hover .dropdown-content {
  display: block;
}



/* =======================================================
   PART 3: MAIN PAGE CORE CONTENT SECTIONS
   ======================================================= */

/* --- PAGE 1: REVISED CAROUSEL HERO WITH ACTIVE TEXT ANIMATION LOOPS --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f2137; /* Dark foundational fallback color */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    transition: opacity 1.2s ease-in-out;
}

/* Base slide-specific content alignment structure */
.slide-content-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-right: 450px; /* Reserves layout space on the right side for the floating form block */
}

.hero-content {
    max-width: 650px;
}

.hero-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--white) !important;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #e2e8f0 !important;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.btn-primary { 
    background: var(--primary-color); 
    color: var(--white); 
}
.btn-primary:hover { 
    background: #004085; 
}

.btn-secondary { 
    background: var(--secondary-color); 
    color: #0f2137; 
}
.btn-secondary:hover { 
    background: #e0a800; 
}

/* Lead Collection Form Wrapper Settings */
.form-overlay-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: flex-end; /* Pin form strictly over to the right layer coordinate */
    pointer-events: none; /* Allows clicks to bypass empty container space blocks */
    width: 100%;
}

.hero-form {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    flex: 0 1 400px;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: auto; /* Re-enables form input fields selection clicks */
}

.hero-form h3 {
    margin-bottom: 20px;
    text-align: center;
    color: #0f2137;
}

.hero-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    outline: none;
}

.hero-form input:focus { 
    border-color: var(--primary-color); 
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.btn-submit:hover {
    background: #004085;
}

/* Typography Animation States Controls */
.hero-slider .slide .animate-text {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Replay entrance sequence animations precisely when the active class rule is applied */
.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slider .slide.active .animate-text {
    opacity: 1;
    transform: translateY(0);
}

/* Sequential element staggering delays */
.hero-slider .slide.active .animate-text:nth-child(1) { transition-delay: 0.3s; }
.hero-slider .slide.active .p-delay { transition-delay: 0.5s; }
.hero-slider .slide.active .btn-delay { transition-delay: 0.7s; }

/* Flat form visual block fade element introduction rules */
.animate-form-fade {
    opacity: 0;
    animation: formFadeReveal 1s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes formFadeReveal {
    to { opacity: 1; }
}






/* =======================================================
   REVISED HIGH-CONVERSION PROFESSIONAL ABOUT SECTION
   ======================================================= */
.about {
    background-color: var(--white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column Metric Grid Matrix */
.about-stats-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.matrix-card {
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #edf2f7;
}

.matrix-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.matrix-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.matrix-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
    color: #0f2137;
}

.matrix-label {
    font-size: 13px;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Individual Matrix Card Theme Variants */
.matrix-card.primary-card {
    background-color: rgba(0, 86, 179, 0.04);
    border-color: rgba(0, 86, 179, 0.1);
}
.matrix-card.primary-card .matrix-icon,
.matrix-card.primary-card .matrix-number {
    color: var(--primary-color);
}

.matrix-card.accent-card {
    background-color: rgba(255, 193, 7, 0.05);
    border-color: rgba(255, 193, 7, 0.15);
}
.matrix-card.accent-card .matrix-icon,
.matrix-card.accent-card .matrix-number {
    color: #d39e00;
}

.matrix-card.dark-card {
    background-color: #0f2137;
    border-color: #0f2137;
}
.matrix-card.dark-card .matrix-icon,
.matrix-card.dark-card .matrix-number,
.matrix-card.dark-card .matrix-label {
    color: var(--white);
}

/* Right Column Corporate Content Layout */
.about-text-content h2 {
    font-size: 36px;
    color: #0f2137;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-description {
    font-size: 15px;
    color: #718096;
    margin-bottom: 30px;
}

/* Value Proposition Structural Row Listings */
.professional-feature-list {
    list-style: none;
    margin-bottom: 35px;
}

.professional-feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.feature-icon-wrapper {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    font-size: 15px;
    line-content: 1.6;
    color: #4a5568;
}

.feature-text strong {
    color: #0f2137;
}

.about-cta-footer .btn-primary i {
    margin-left: 8px;
    font-size: 13px;
    transition: transform 0.2s ease;
}

.about-cta-footer .btn-primary:hover i {
    transform: translateX(4px);
}

/* Responsive Device Matrix Flattening Rules */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 480px) {
    .about-stats-matrix {
        grid-template-columns: 1fr; /* Drop metrics into a vertical tower list on single-tier screen rows */
    }
}








/* --- PAGE 3: SERVICES SECTION --- */
.services { 
    background-color: var(--light-color); 
}

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
}

.service-card { 
    background: var(--white); 
    padding: 40px 30px; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.02); 
    border: 1px solid #edf2f7; 
    text-align: center; 
    transition: transform 0.3s ease; 
}

.service-card:hover { 
    transform: translateY(-5px); 
}

.service-card .icon { 
    font-size: 42px; 
    color: var(--primary-color); 
    margin-bottom: 20px; 
}

.service-card h3 { 
    margin-bottom: 12px; 
    color: #0f2137; 
}

.service-card p { 
    color: #4a5568; 
    font-size: 15px; 
}

/* --- PAGE 4: CONTACT US SECTION --- */
.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
}

.contact-info h3 { 
    font-size: 24px; 
    margin-bottom: 20px; 
    color: #0f2137; 
}

.info-item { 
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 25px; 
}

.info-item i { 
    font-size: 20px; 
    color: var(--primary-color); 
    margin-right: 15px; 
    margin-top: 4px; 
}

.info-item p { 
    font-size: 15px; 
}

.info-item a { 
    color: var(--primary-color); 
    text-decoration: none; 
    font-weight: 600; 
}

.map-placeholder {
    background: #e2e8f0;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    color: #718096;
    border: 2px dashed #cbd5e0;
}
.map-placeholder i { 
    font-size: 45px; 
    margin-bottom: 15px; 
    color: #a0aec0; 
}

/* --- SITE FOOTER --- */
footer {
    background: #0f2137;
    color: #cbd5e0;
    text-align: center;
    padding: 25px 0;
    font-size: 14px;
    border-top: 3px solid var(--secondary-color);
}

/* --- SECTION RESPONSIVENESS OVERRIDES --- */
@media (max-width: 992px) {
    .slide-content-wrapper {
        padding-right: 0; /* Reset spacing gaps on tablet configurations */
        margin-bottom: 40px;
    }
    .form-overlay-container {
        justify-content: center;
    }
    .hero {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .hero-content h2 { font-size: 32px; }
    .hero-content p { font-size: 15px; }
    .hero-form { padding: 25px; }
}











/* =======================================================
   PART 4: UNIFIED SCROLL DOWN COMPACT NAVIGATION STYLES
   ======================================================= */
#main-header.compact-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2500;
    background: #0f2137 !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
}

/* Clear clutter strips from sticky bar frame */
#main-header.compact-sticky .top-bar,
#main-header.compact-sticky .header-cta {
    display: none !important;
}

#main-header.compact-sticky .nav-bar {
    background: transparent !important;
    padding: 12px 0;
}

/* Force standard link tabs to collapse into vertical drawer setup across all device screens */
#main-header.compact-sticky nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0f2137;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 0;
}

#main-header.compact-sticky nav ul li {
    width: 100%;
    text-align: center;
}

#main-header.compact-sticky nav ul li a {
    display: block;
    padding: 14px;
    color: var(--white);
    border-radius: 0;
}

#main-header.compact-sticky nav ul li a:hover,
#main-header.compact-sticky nav ul li a.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--secondary-color);
}

/* Activate reveal mechanics when menu class triggers */
#main-header.compact-sticky nav ul.active {
    display: flex !important;
}

/* Turn on burger visibility status inside sticky bar */
#main-header.compact-sticky .menu-toggle {
    display: flex !important;
    z-index: 2600;
}

#main-header.compact-sticky .logo-accent { color: var(--secondary-color); font-size: 22px; }
#main-header.compact-sticky .logo-text { color: var(--white); font-size: 10px; }
#main-header.compact-sticky .menu-toggle .bar { background-color: var(--white) !important; }










/* =======================================================
   PART 5: RESPONSIVE VIEWPORT BREAKPOINTS
   ======================================================= */
@media (max-width: 992px) {
    .top-info span:last-child, .header-cta { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-stats-box { flex-direction: row; }
    .stat-card { flex: 1; }
}

@media (max-width: 768px) {
    .top-bar, .header-cta { display: none; }
    .menu-toggle { display: flex; }
    
    /* Native Mobile Dropdown menu positions */
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 15px 0;
        border-top: 1px solid #eee;
        gap: 0;
    }
    
    nav ul.active { display: flex; }
    nav ul li { width: 100%; text-align: center; }
    nav ul li a { display: block; padding: 14px; border-radius: 0; }
    
    .contact-grid { grid-template-columns: 1fr; }
    .page-section { padding: 60px 0; }
    .hero-content h2 { font-size: 32px; }

    /* Animated CSS transformation converting the mobile burger bar lines into a close 'X' */
    .menu-toggle.open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.open .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}






/* =======================================================
   TESTIMONIALS SLIDER SECTION STYLES
   ======================================================= */
.testimonials {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 10px;
}

.testimonial-track {
    position: relative;
    min-height: 280px; /* Reserves uniform container spaces for text heights */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Individual Card Setup and Fading States Animation Layout */
.testimonial-card {
    position: absolute;
    top: 0;
    width: 100%;
    background: var(--light-color);
    border: 1px solid #edf2f7;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    text-align: center;
    opacity: 0;
    transform: scale(0.95);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

/* Triggered class visualization loop rule */
.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    z-index: 5;
    pointer-events: auto;
    position: relative; /* Restores spacing logic calculations over outer container footprints */
}

.quote-icon-top {
    font-size: 32px;
    color: var(--primary-color);
    opacity: 0.15;
    margin-bottom: 15px;
}

.rating-stars {
    margin-bottom: 20px;
}

.rating-stars i {
    color: var(--secondary-color);
    font-size: 16px;
    margin: 0 2px;
}

.review-text {
    font-size: 17px;
    font-style: italic;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Author Details Grid Layout Substructures */
.client-meta-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.client-avatar-avatar i {
    font-size: 45px;
    color: #a0aec0;
}

.client-details-block h4 {
    font-size: 16px;
    color: #0f2137;
    margin-bottom: 2px;
}

.client-location-tag {
    font-size: 13px;
    color: #718096;
    font-weight: 600;
}

/* Tracking Indicator Dots Components Setup */
.testimonial-navigation-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-navigation-dots .dot {
    width: 12px;
    height: 12px;
    background-color: #cbd5e0;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonial-navigation-dots .dot:hover,
.testimonial-navigation-dots .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.15);
}

/* Adaptability breakpoint definitions for compact viewports */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }
    .review-text {
        font-size: 15px;
    }
    .testimonial-track {
        min-height: 340px; /* Extends tracking container window boundary spaces for wrapping rows text lines */
    }
}








/* =======================================================
   OUR CLIENTS MARQUEE LOOP SECTION STYLES
   ======================================================= */
.clients {
    background-color: var(--light-color); /* Subtle contrast shift */
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
    padding: 70px 0;
}

.clients-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 50px;
    animation: infiniteMarqueeScroll 25s linear infinite;
}

/* Pause scroll behavior on mouse hover so users can view clients clearly */
.clients-marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 18px 30px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    min-width: 220px;
    justify-content: center;
}

.marquee-item i {
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.8;
}

.marquee-item span {
    font-size: 15px;
    font-weight: 700;
    color: #4a5568;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Infinite sliding scroll keyframe structure */
@keyframes infiniteMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 25px)); /* Halfway point compensation */
    }
}

/* Small screen adaptability rules */
@media (max-width: 768px) {
    .clients {
        padding: 50px 0;
    }
    .marquee-track {
        gap: 30px;
    }
    .marquee-item {
        padding: 14px 22px;
        min-width: 180px;
    }
    .marquee-item span {
        font-size: 14px;
    }
}








/* =======================================================
   LIVE MAP INTERFACE & FLOATING QUICK CTAS STYLES
   ======================================================= */

/* Professional Fluid Map Configuration */
.google-map-iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Floating Navigation Interaction Layers */
.floating-cta-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; /* Forces layer stacking cleanly over carousel layers */
}

.widget-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 50px;
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.widget-pill i {
    font-size: 20px;
}

/* Color Grading Themes */
.whatsapp-pill {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.phone-pill {
    background: linear-gradient(135deg, #0056b3, #003366);
}

/* Pulsing micro-movement hover states */
.widget-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Adaptive Sticky Phone Dock Rule Overrides */
@media (max-width: 768px) {
    /* Transform individual pills into a unified split bar locked across mobile screen bottoms */
    .floating-cta-widget {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        flex-direction: row;
        gap: 0;
        padding: 0;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    }

    .widget-pill {
        flex: 1;
        border-radius: 0;
        padding: 16px 10px;
        box-shadow: none;
        font-size: 14px;
    }

    .widget-pill:hover {
        transform: none; /* Turn off tracking animations on touch screens */
    }
    
    /* Create visual safety margin clearance for body content above mobile footer bar */
    body {
        padding-bottom: 60px;
    }
}







/* =======================================================
   DEDICATED ABOUT-US HTML CONTENT STYLES 
   ======================================================= */

/* --- SECTION 1: INNER BANNER --- */
.about-hero-banner {
    position: relative;
    padding: 110px 0 80px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.banner-content-box h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.banner-content-box p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 25px auto;
    color: #e2e8f0;
}

.breadcrumb-trail {
    font-size: 14px;
    font-weight: 600;
}

.breadcrumb-trail a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-trail a:hover {
    color: var(--white);
}

.breadcrumb-trail i {
    margin: 0 8px;
    color: #cbd5e0;
}

.breadcrumb-trail span {
    color: #cbd5e0;
}

/* --- SECTION 2: HISTORY & MISSION GRID --- */
.history-mission-block {
    background-color: var(--white);
}

.history-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: flex-start;
}

.history-text-pane h2 {
    font-size: 36px;
    color: #0f2137;
    line-height: 1.25;
    margin-bottom: 20px;
}

.history-text-pane p {
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 15px;
}

.history-text-pane .lead-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

.vision-mission-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vision-card, .mission-card {
    background-color: var(--light-color);
    border: 1px solid #edf2f7;
    padding: 35px;
    border-radius: 8px;
    position: relative;
}

.card-icon-wrapper {
    background-color: rgba(0, 86, 179, 0.08);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.vision-card h3, .mission-card h3 {
    font-size: 20px;
    color: #0f2137;
    margin-bottom: 10px;
}

.vision-card p, .mission-card p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
}

/* --- SECTION 3: EXCELLENCE VALUES GRID --- */
.core-values-grid-section {
    background-color: var(--light-color);
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.values-flex-matrix {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-item-card {
    background-color: var(--white);
    border: 1px solid #edf2f7;
    padding: 40px 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.value-index {
    font-size: 44px;
    font-weight: 800;
    color: rgba(0, 86, 179, 0.08);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.value-item-card h3 {
    font-size: 20px;
    color: #0f2137;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.value-item-card p {
    font-size: 15px;
    color: #4a5568;
}

/* --- SECTION 4: ASSURANCE CONTAINER PANEL --- */
.corporate-assurance-banner {
    background-color: var(--white);
}

.assurance-inner-container {
    background-color: #0f2137;
    border-radius: 12px;
    padding: 50px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    border-bottom: 4px solid var(--secondary-color);
}

.sub-title.dark-version {
    color: var(--secondary-color);
}

.assurance-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.assurance-content p {
    color: #cbd5e0;
    font-size: 15px;
    margin-bottom: 30px;
}

.badges-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-pill-item {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
}

.badge-pill-item i {
    color: var(--secondary-color);
}

.assurance-cta-box {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
}

.assurance-cta-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.assurance-cta-box p {
    font-size: 14px;
    color: #cbd5e0;
    margin-bottom: 25px;
}

.assurance-cta-box .btn-secondary {
    width: 100%;
    text-align: center;
}

.assurance-cta-box .btn-secondary i {
    margin-left: 6px;
    font-size: 12px;
}

/* --- ADAPTIVE BREAKPOINTS --- */
@media (max-width: 992px) {
    .history-grid-layout, .assurance-inner-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .banner-content-box h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .about-hero-banner {
        padding: 80px 0 60px 0;
    }
    .banner-content-box p {
        font-size: 15px;
    }
    .assurance-inner-container {
        padding: 30px 20px;
    }
    .assurance-cta-box {
        padding: 25px 15px;
    }
}



/* =======================================================
   PREMIUM GRAPHIC INTERCONNECTED TIMELINE PROTOCOL
   ======================================================= */
.protocol-timeline-section {
    background-color: var(--white);
    position: relative;
    padding: 100px 0;
}

/* Master Timeline Structural Grid Framing */
.timeline-visual-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Central Horizontal Connector Line across Desktop views */
.central-progress-bar {
    position: absolute;
    top: 35px; /* Aligns precisely over the mathematical centers of tracking circles */
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color) 30%, #cbd5e0 70%);
    z-index: 1;
    border-radius: 50px;
}

/* Individual Stage Card Node Configurations */
.timeline-node-card {
    position: relative;
    z-index: 5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Dynamic Interactive Central Circle Counter Indicators */
.node-marker-circle {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border: 4px solid #cbd5e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.step-digit {
    font-size: 20px;
    font-weight: 800;
    color: #718096;
    font-family: monospace;
}

/* Polished Content Display Panels */
.node-content-pane {
    background-color: var(--light-color);
    border: 1px solid #edf2f7;
    border-bottom: 4px solid #cbd5e0;
    padding: 35px 25px;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.node-icon-header {
    font-size: 32px;
    color: #a0aec0;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.node-content-pane h4 {
    font-size: 18px;
    color: #0f2137;
    margin-bottom: 12px;
    font-weight: 700;
}

.node-content-pane p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Ensures text rows align neatly across asymmetrical block scales */
}

/* Category Label Badges */
.node-badge {
    align-self: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #cbd5e0;
    color: #4a5568;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* --- FLUID HOVER MICRO-ANIMATION INTERACTIONS --- */
.timeline-node-card:hover .node-marker-circle {
    border-color: var(--primary-color);
    transform: scale(1.1);
    background-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 86, 179, 0.4);
}

.timeline-node-card:hover .step-digit {
    color: var(--white);
}

.timeline-node-card:hover .node-content-pane {
    background-color: var(--white);
    border-color: #e2e8f0;
    border-bottom-color: var(--secondary-color); /* Changes baseline accent to Safety Gold on focus */
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 33, 55, 0.08);
}

.timeline-node-card:hover .node-icon-header {
    color: var(--primary-color);
}

.timeline-node-card:hover .node-badge {
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
}

/* =======================================================
   RESPONSIVE TIMELINE RE-ARCHITECTURE FOR MOBILE MOBILE DOCKS
   ======================================================= */
@media (max-width: 992px) {
    /* Collapse horizontal timeline vector paths into a rigid vertical pipeline track */
    .timeline-visual-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .central-progress-bar {
        left: 35px; /* Shifts tracker line to center precisely behind single-row mobile circle icons */
        top: 0;
        bottom: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color) 40%, #cbd5e0 90%);
    }

    .timeline-node-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 25px;
    }

    .node-marker-circle {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .node-content-pane {
        align-items: flex-start;
        padding: 30px;
    }

    .node-badge {
        align-self: flex-start;
    }
}




/* =======================================================
   DEDICATED SERVICES PORTFOLIO & PRICING TABLE STYLES
   ======================================================= */

.comprehensive-services-section {
    background-color: var(--white);
}

/* Service Rows Alternating Layout System */
.detailed-service-row {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #edf2f7;
}

.detailed-service-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detailed-service-row.alternate-layout {
    flex-direction: row-reverse;
}

.service-description-block {
    flex: 1.2;
}

.service-features-list-box {
    flex: 0.8;
    background-color: var(--light-color);
    border: 1px solid #edf2f7;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.service-tag-badge {
    background-color: rgba(0, 86, 179, 0.06);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

.service-description-block h3 {
    font-size: 28px;
    color: #0f2137;
    margin-bottom: 15px;
}

.service-lead-text {
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 15px;
}

.service-description-block p {
    font-size: 15px;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-specs-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    background-color: var(--light-color);
    padding: 15px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 6px 6px 0;
}

.spec-indicator {
    font-size: 14px;
    color: #4a5568;
}

.spec-indicator i {
    color: var(--primary-color);
    margin-right: 6px;
    width: 16px;
}

.service-features-list-box h4 {
    font-size: 18px;
    color: #0f2137;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.bullet-checklist {
    list-style: none;
}

.bullet-checklist li {
    font-size: 14.5px;
    color: #4a5568;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bullet-checklist li i {
    color: #28a745;
    font-size: 16px;
}

/* --- SECTION 3: TRANSPARENT FINANCIAL TARIFF TABLE --- */
.pricing-table-section {
    background-color: var(--light-color);
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.table-scroll-container {
    width: 100%;
    overflow-x: auto; /* Enables horizontal drag scrolling on mobile viewports */
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid #edf2f7;
}

.corporate-rate-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 650px;
}

.corporate-rate-table th {
    background-color: #0f2137;
    color: var(--white);
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
}

.corporate-rate-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #edf2f7;
    font-size: 14.5px;
    color: #4a5568;
}

.corporate-rate-table tr:last-child td {
    border-bottom: none;
}

.corporate-rate-table tr:nth-child(even) {
    background-color: #fcfdfd;
}

.corporate-rate-table td strong {
    color: #0f2137;
}

.table-footnote-tag {
    font-size: 13px;
    color: #718096;
    margin-top: 15px;
    font-style: italic;
}

/* --- INTERACTIVE ACTION FORM DIALOG DIALOG LAYER --- */
.quote-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 33, 55, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.quote-modal-backdrop.reveal-modal {
    opacity: 1;
    pointer-events: auto;
}

.modal-dialog-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 450px;
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
}

.quote-modal-backdrop.reveal-modal .modal-dialog-box {
    transform: translateY(0);
}

.modal-close-trigger {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #a0aec0;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close-trigger:hover {
    color: var(--dark-color);
}

.modal-body-content h3 {
    font-size: 24px;
    color: #0f2137;
    margin-bottom: 5px;
    text-align: center;
}

.modal-body-content p {
    font-size: 14px;
    color: #718096;
    margin-bottom: 25px;
    text-align: center;
}

.modal-body-content input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    outline: none;
}

.modal-body-content input:focus {
    border-color: var(--primary-color);
}

/* --- VIEWPORT BREAKPOINTS ADAPTABILITY --- */
@media (max-width: 992px) {
    .detailed-service-row, .detailed-service-row.alternate-layout {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }
    .service-features-list-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .detailed-service-row {
        margin-bottom: 50px;
        padding-bottom: 50px;
    }
    .service-description-block h3 {
        font-size: 22px;
    }
    .modal-dialog-box {
        padding: 30px 20px;
        width: 90%;
    }
}




/* =======================================================
   DEDICATED CONTACT-US INTERFACE PAGE STYLES
   ======================================================= */

.contact-page-main {
    background-color: var(--white);
}

.contact-split-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Communication Card Stacks Layouts */
.contact-pane-lead-text {
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.detailed-info-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.info-strip-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--light-color);
    border: 1px solid #edf2f7;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

.strip-icon-box {
    background-color: var(--primary-color);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    flex-shrink: 0;
}

.strip-text-box h4 {
    font-size: 17px;
    color: #0f2137;
    margin-bottom: 5px;
}

.strip-text-box p {
    font-size: 14.5px;
    color: #718096;
    line-height: 1.5;
}

.strip-text-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.operational-hours-summary-panel {
    border-left: 4px solid var(--secondary-color);
    background-color: rgba(255, 193, 7, 0.04);
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.operational-hours-summary-panel h5 {
    font-size: 15px;
    color: #0f2137;
    margin-bottom: 6px;
    font-weight: 700;
}

.operational-hours-summary-panel p {
    font-size: 13.5px;
    color: #4a5568;
    line-height: 1.6;
}

/* Right Side Multi-Row Corporate Inquiry Intake Block */
.contact-form-pane {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    border-radius: 8px;
}

.form-pane-heading-box {
    margin-bottom: 30px;
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 15px;
}

.form-pane-heading-box h3 {
    font-size: 24px;
    color: #0f2137;
    margin-bottom: 5px;
}

.form-pane-heading-box p {
    font-size: 14px;
    color: #718096;
}

.form-double-row-inputs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-double-row-inputs .input-field-group {
    flex: 1;
    min-width: 200px;
}

.input-field-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.input-field-group label {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f2137;
    margin-bottom: 8px;
}

.input-field-group input,
.input-field-group select,
.input-field-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    outline: none;
    font-size: 14.5px;
    color: var(--dark-color);
    transition: border-color 0.2s;
    background-color: var(--white);
}

.input-field-group input:focus,
.input-field-group select:focus,
.input-field-group textarea:focus {
    border-color: var(--primary-color);
}

.contact-page-submit-btn {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.contact-page-submit-btn i {
    font-size: 13px;
}

/* --- SECTION 3: FULL WIDTH LANDSCAPE MAP FRAME --- */
.live-map-section-frame {
    width: 100%;
    background-color: var(--light-color);
    line-height: 0; /* Clears baseline inline element spacing gap issues */
}

.container-fluid-map {
    width: 100%;
}

.contact-page-google-map-iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-top: 1px solid #edf2f7;
}

/* --- CONTACT SUBSECTION VIEWPORTS RESPONSIVENESS OVERRIDES --- */
@media (max-width: 992px) {
    .contact-split-grid-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-form-pane {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .contact-page-google-map-iframe {
        height: 320px;
    }
}












/* =======================================================
   DEDICATED THANKS-PAGE COMPONENT SUCCESS STYLES
   ======================================================= */

.thanks-page-body {
    background-color: var(--light-color); /* Matches light branding background layer tones */
}

.thanks-content-section-wrapper {
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Master Visual Success Display Card Card */
.thanks-success-card {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 40px rgba(15, 33, 55, 0.06);
    padding: 60px 40px;
    border-radius: 12px;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    border-top: 5px solid var(--primary-color); /* Logistics Royal Blue top border crown accent */
}

/* Hardware Accelerated Pulsing Success Circle Rings */
.success-ring-animation {
    width: 90px;
    height: 90px;
    background-color: rgba(40, 167, 69, 0.1); /* Subtle safe transparent leaf green */
    color: #28a745;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    margin: 0 auto 30px auto;
    animation: successPulseTransform 2s infinite ease-in-out;
}

.thanks-success-card h2 {
    font-size: 32px;
    color: #0f2137;
    margin-bottom: 15px;
    line-height: 1.25;
}

.thanks-divider-line {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color); /* Golden Safety underline line indicator */
    display: block;
    margin: 0 auto 25px auto;
    border-radius: 50px;
}

.thanks-lead-text {
    font-size: 17px;
    font-weight: 600;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-sub-text {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Automated Redirector Notification Panel Layout */
.timer-countdown-panel {
    background-color: var(--light-color);
    border: 1px solid #edf2f7;
    padding: 12px 25px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 35px;
}

.timer-countdown-panel p {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary-color);
}

.timer-countdown-panel i {
    margin-right: 6px;
}

/* Manual Navigation Shortcut Blocks Layout row */
.thanks-action-button-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 35px;
}

.thanks-action-button-row .btn {
    margin-right: 0; /* Clear baseline structural overrides formatting gaps */
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.thanks-action-button-row .btn i {
    font-size: 14px;
}

/* Urgent Communication Hotline Footer */
.thanks-urgent-footer-note p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
}

.thanks-urgent-footer-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.thanks-urgent-footer-note a i {
    color: #25d366;
    margin-right: 2px;
}

/* Keyframe definition for circle success scaling pulse behavior */
@keyframes successPulseTransform {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Responsive Adaptive Device Downscaling Rules */
@media (max-width: 768px) {
    .thanks-content-section-wrapper {
        padding: 40px 0;
    }
    .thanks-success-card {
        padding: 40px 20px;
    }
    .thanks-success-card h2 {
        font-size: 24px;
    }
    .thanks-lead-text {
        font-size: 15px;
    }
    .thanks-action-button-row .btn {
        width: 100%;
        justify-content: center;
    }
}







/* =======================================================
   DEDICATED ERROR-PAGE COMPONENT STYLES
   ======================================================= */

/* Master Visual Failure Card */
.error-failed-card {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 40px rgba(15, 33, 55, 0.06);
    padding: 60px 40px;
    border-radius: 12px;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    border-top: 5px solid #dc3545; /* Critical Failure Warning Red top border crown accent */
}

/* Hardware Accelerated Pulsing Failure Warning Rings */
.error-ring-animation {
    width: 90px;
    height: 90px;
    background-color: rgba(220, 53, 69, 0.1); /* Subtle warning red background tint */
    color: #dc3545;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    margin: 0 auto 30px auto;
    animation: errorPulseTransform 2s infinite ease-in-out;
}

.error-failed-card h2 {
    font-size: 32px;
    color: #0f2137;
    margin-bottom: 15px;
    line-height: 1.25;
}

.error-divider-line {
    width: 60px;
    height: 3px;
    background-color: #dc3545; /* Critical warning accent line */
    display: block;
    margin: 0 auto 25px auto;
    border-radius: 50px;
}

.error-lead-text {
    font-size: 17px;
    font-weight: 600;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.error-sub-text {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 35px;
    text-align: justify;
}

/* Recovery Alternate Fast Contact Grid Area */
.error-recovery-options-box {
    text-align: left;
    background-color: var(--light-color);
    border: 1px solid #edf2f7;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 35px;
}

.error-recovery-options-box h3 {
    font-size: 16px;
    color: #0f2137;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.recovery-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.recovery-link-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-decoration: none;
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.recovery-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.recovery-link-card i {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.recovery-link-card .fa-phone-square { color: var(--primary-color); }
.recovery-link-card .fa-whatsapp { color: #25d366; }

.recovery-link-card h4 {
    font-size: 15px;
    color: #0f2137;
    margin-bottom: 5px;
    font-weight: 700;
}

.recovery-link-card p {
    font-size: 13px;
    color: #718096;
    line-height: 1.5;
}

/* Keyframe definition for circle error warning scaling pulse behavior */
@keyframes errorPulseTransform {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* Responsive Adaptive Device Downscaling Rules Override */
@media (max-width: 768px) {
    .error-failed-card { padding: 40px 20px; }
    .error-failed-card h2 { font-size: 24px; }
    .error-lead-text { font-size: 15px; }
    .error-recovery-options-box { padding: 20px 15px; }
    .recovery-links-grid { grid-template-columns: 1fr; gap: 15px; }
    .recovery-link-card { padding: 15px; }
}
