/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0C387D;       /* Exact dark blue from original site */
    --primary-dark: #29166F;        /* Deeper purple-navy (top bar, footer) */
    --primary-medium: #005BAC;      /* Medium blue (quote form) */
    --secondary-color: #DD0705;     /* Exact red from original site */
    --text-color: #2E2A2A;          /* Dark text from original */
    --text-light: #595353;          /* Light text */
    --light-bg: #F3F3F3;            /* Light gray background */
    --services-bg: #0960AC;         /* Services section blue */
    --white: #ffffff;
    --font-family: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

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

h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sub-heading {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Top Bar */
.top-bar {
    background-color: #010080; /* Exact color from screenshot */
    height: 48px;
    font-size: 12px;
    color: var(--white);
    display: none;
    align-items: center;
}

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

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

.contact-info span {
    margin-right: 18px !important;
}

.phone-number {
    width: auto;
    height: 24px;
    font-size: 16px;
    padding: 0px 0px 0px 5px;
    display: inline-flex;
    align-items: center;
}

.email-address {
    width: auto;
    height: 24px;
    font-size: 16px;
    padding: 0px 0px 0px 5px;
    display: inline-flex;
    align-items: center;
}

.contact-info i { margin-right: 5px; }

.social-icons a {
    display: inline-flex;
    align-items: center;
    margin-left: 0px;
    color: var(--white);
    padding: 0 8px;
    border-radius: 50%;
    transition: background-color 0.2s ease, color 0.2s ease;
    height: 32px;
    box-sizing: border-box;
    text-decoration: none;
}

a.facebook {
    width: auto !important;
    color: #FFFFFF;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

a.instagram {
    width: auto !important;
    color: #FFFFFF;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.social-icons a:hover {
    background-color: #ff0000 !important;
    color: #ffffff !important;
}

i.icon.icon-facebook {
    margin-right: 8px !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
}

i.fab.fa-instagram {
    margin-right: 8px !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
}

/* Header */
.site-header {
    background-color: #FFFFFF;
    padding: 11px;
    height: 107.28px;
    color: #333333;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin-left: 110px;
}
.logo img { 
    max-height: 80px; 
    width: auto;
}

@media(max-width: 991px) {
    .logo { margin-left: 0; }
    .logo img { max-height: 60px; }
}
/* Navigation */
.main-nav { display: none; }
@media(min-width: 992px) { .main-nav { display: block; } }

.nav-links {
    width: auto;
    height: 85.28px;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links > li > a {
    font-weight: 600;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
    color: #000000;
    padding: 6px 16px;
    border-radius: 0;
    transition: 0.3s;
}

.nav-links > li > a.active,
.nav-links > li > a:hover {
    background-color: #e31818;
    color: var(--white);
}

/* Call Button */
.btn-call {
    background-color: #e31818;
    color: var(--white);
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 16px;
    margin-right: 30px !important;
}

@media(max-width: 767px) {
    .btn-call {
        margin-right: 0 !important;
        padding: 6px 12px;
        font-size: 14px;
    }
}

.btn-call:hover {
    background-color: var(--primary-color);
}

.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

@media(min-width: 992px) { .mobile-menu-toggle { display: none; } }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background-color: var(--white);
    z-index: 1000;
    padding: 30px 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    overflow-y: auto;
}
.mobile-nav-menu.active { right: 0; }
.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}
.mobile-nav-links { margin-top: 40px; }
.mobile-nav-links li { border-bottom: 1px solid #eee; }
.mobile-nav-links > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-weight: 500;
    color: #333;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    padding-bottom: 80px; /* Space for overlapping boxes */
}

.slider-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.15); /* Zoomed in by 15% */
    z-index: -2;
}

@keyframes slideInRight {
    0% { transform: translateX(100%); }
    100% { transform: translateX(0); }
}

.slide.active {
    opacity: 1;
    z-index: 2;
    animation: slideInRight 0.5s ease-in-out forwards;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(12, 56, 125, 0.7); /* Deep blue overlay */
    z-index: -1;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--secondary-color);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1,
.hero-content p,
.btn-outline {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide.active .hero-content h1,
.slide.active .hero-content p,
.slide.active .btn-outline {
    opacity: 1;
    transform: translateY(0);
}

.slide.active .hero-content h1,
.slide.active .hero-content p,
.slide.active .btn-outline {
    transition-delay: 0.5s;
}

.hero-content h1 {
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 20px;
}

@media(max-width: 767px) {
    .hero-content h1 {
        font-size: 28px;
        word-wrap: break-word;
    }
    .hero-content p {
        font-size: 14px !important;
    }
}

@media(min-width: 768px) { .hero-content h1 { font-size: 45px; } }

.hero-content p {
    font-size: 17px;
    font-family: "Roboto Slab", sans-serif;
    color: #FFFFFF;
    margin: 0px 0px 30px;
    line-height: 1.8;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 6px 16px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transition-delay: 0s !important;
}

/* Features Overlapping */
.features-overlapping {
    position: relative;
    z-index: 10;
    margin-top: -80px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 10px 30px;
}

@media(min-width: 768px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-box {
    padding: 0 15px;
    text-align: left;
}

.feature-icon {
    width: 40px;
    margin-bottom: 8px;
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
    white-space: normal;
}

.feature-box p {
    font-size: 14px;
    color: #777;
    font-weight: 400;
    line-height: 1.4;
}

/* About Section */
.about-section {
    padding: 80px 0;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media(min-width: 992px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-images {
    position: relative;
    width: 100%;
}

.img-main, .img-small-1, .img-small-2 {
    opacity: 0; 
}

.about-section.animate .img-main {
    animation: fadeInUpCustom 0.8s ease-out forwards;
}

.about-section.animate .img-small-1 {
    animation: fadeInLeftCustom 0.8s ease-out 0.3s forwards;
}

.about-section.animate .img-small-2 {
    animation: fadeInRightCustom 0.8s ease-out 0.3s forwards;
}

.img-main img {
    width: 80%;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: block;
}

.img-small-1 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 45%;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 3;
    overflow: hidden;
}

.img-small-1 img { 
    width: 100%; 
    display: block; 
    border-radius: 8px;
}

.img-small-2 {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 26%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 3;
    overflow: hidden;
}

.img-small-2 img { 
    width: 100%; 
    display: block; 
    border-radius: 4px;
}

@keyframes fadeInUpCustom {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRightCustom {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeftCustom {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.highlight-box {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 25px;
    color: #555;
}

.quote-box {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-color);
}

.quote-icon {
    font-size: 30px;
    color: var(--secondary-color);
}

.quote-text {
    font-size: 16px;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary-blue, .btn-primary-red {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--white);
}

.btn-primary-blue { background-color: var(--primary-color); }
.btn-primary-red { background-color: var(--secondary-color); }

.btn-primary-blue:hover { background-color: var(--secondary-color); }
.btn-primary-red:hover { background-color: var(--primary-color); }

/* Request Quote Section */
.quote-section {
    background-color: var(--light-bg);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media(min-width: 992px) {
    .quote-grid { grid-template-columns: 1fr 1fr; }
}

.quote-form-container {
    background-color: var(--primary-medium); /* Exact medium blue from original */
    padding: 60px 40px;
    color: var(--white);
}

.quote-form-container h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media(min-width: 768px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: var(--white);
    border-radius: 4px;
    font-family: inherit;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-submit:hover { background-color: var(--primary-color); }

.quote-text-container {
    padding: 60px 40px;
}

.quote-text-container h2 {
    color: black;
}

.solution-points {
    margin-top: 30px;
}

.point {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    opacity: 0;
}

.point:nth-child(1) {
    animation: fadeInUpCustom 0.8s ease-out 0.2s forwards;
}

.point:nth-child(2) {
    animation: fadeInUpCustom 0.8s ease-out 0.4s forwards;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: var(--primary-medium); /* Medium blue for solution icons */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 18px;
    color: black;
    margin-bottom: 5px;
}

.point-text p {
    font-size: 14px;
    color: #666;
}

/* Countries Section */
.countries-section {
    padding: 60px 0;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
    align-items: center;
}

@media(min-width: 576px) {
    .countries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(min-width: 992px) {
    .countries-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

.country-pill {
    background-color: #e9ecef;
    color: #333;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.country-pill:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #0960ac;
    position: relative;
}

.services-section::before {
    display: none;
}

.services-section .container { position: relative; z-index: 2; }

.services-grid-8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media(min-width: 576px) { .services-grid-8 { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 992px) { .services-grid-8 { grid-template-columns: repeat(4, 1fr); } }

.srv-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.srv-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.srv-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.srv-content h4 {
    font-size: 16px;
    color: #000000;
    margin-bottom: 10px;
}

.srv-content p {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 15px;
    min-height: 50px;
    transition: color 0.3s;
}

.srv-card:hover .srv-content p,
.srv-card:hover .srv-content h4 {
    color: #000;
}

.btn-read-more {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid var(--secondary-color);
    padding: 5px 15px;
    margin-top: auto;
    align-self: center;
    border-radius: 4px;
}

.btn-read-more:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Booking Steps Section */
.booking-section {
    padding: 80px 0;
    background-color: var(--white);
}

.booking-section h2 {
    color: #000;
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

@media(min-width: 768px) {
    .steps-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.step {
    flex: 1;
    text-align: center;
}

.step-icon {
    margin-bottom: 20px;
}

.step-icon img {
    width: 55px;
}

.step h4 {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
}

.step p {
    font-size: 12px;
    color: #000;
}

.step-arrow {
    display: none;
    color: var(--secondary-color);
    font-size: 24px;
    margin-top: 16px;
}

@media(min-width: 768px) {
    .step-arrow { display: block; }
}

/* Footer */
.site-footer {
    background-color: #054BBB; /* Updated to requested blue color */
    color: var(--white);
    padding: 60px 0 0;
}

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

@media(min-width: 768px) {
    .footer-inner { grid-template-columns: repeat(4, 1fr); }
}

.footer-widget h3 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    border-left: 3px solid #ff0000 !important;
    padding-left: 12px !important;
    margin-bottom: 20px !important;
    line-height: 1 !important;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #ccc;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.footer-widget ul li a:hover { color: var(--secondary-color); }

.contact-widget ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 13px;
    color: #ccc;
}

.contact-widget ul li i {
    color: var(--white);
    margin-top: 4px;
}

.footer-bottom {
    background-color: #010080; /* Exact color from screenshot */
    padding: 20px 0;
    text-align: left;
    font-size: 13px;
    color: #ffffff;
}

/* Floating Action Buttons */
.float-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
}

.whatsapp-btn {
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
}
.call-btn {
    bottom: 80px;
    right: 20px;
    background-color: #25d366;
}

.float-btn:hover { color: #fff; transform: scale(1.1); }

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

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f4f4f4;
    width: 260px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 15px 0;
    list-style: none;
    text-align: left;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown:hover > a {
    background-color: #e31818;
    color: white !important;
}

.dropdown-menu li {
    display: block;
    padding: 0;
    margin: 0;
    border-bottom: none;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    color: #000 !important;
    padding: 16px 20px !important;
    text-decoration: none;
    display: block;
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    font-weight: 400;
    transition: 0.3s;
    background-color: transparent !important;
}

.dropdown-menu li a:hover {
    color: white !important;
    background-color: #010080 !important;
    padding-left: 25px !important; /* tiny slide effect */
}

/* --- Courier Page Specific Styles --- */
.page-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 115px 0;
    text-align: center;
    color: white;
}
.page-banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(9, 84, 149, 0.75);
    z-index: 1;
}
.page-banner-content {
    position: relative;
    z-index: 2;
}
.page-banner-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.page-breadcrumb {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-breadcrumb a {
    color: white;
    text-decoration: none;
}
.page-breadcrumb a:hover {
    color: var(--secondary-color);
}

.service-details-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}
.service-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media(min-width: 992px) {
    .service-details-grid {
        grid-template-columns: 2.4fr 1fr;
    }
}

.service-carousel-wrapper {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
}
.service-carousel-track {
    display: flex;
    gap: 15px;
    /* Javascript will handle the transforms */
}
.service-carousel-item {
    flex: 0 0 calc(33.333% - 10px);
    scroll-snap-align: start;
}
@media (max-width: 768px) {
    .service-carousel-item {
        flex: 0 0 calc(50% - 7.5px);
    }
}
@media (max-width: 480px) {
    .service-carousel-item {
        flex: 0 0 100%;
    }
}
.service-carousel-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 0;
}
.carousel-btn {
    position: absolute;
    top: calc(50% - 25px);
    transform: translateY(-50%);
    background: transparent;
    color: white;
    border: none;
    width: 30px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.carousel-btn:hover {
    background: transparent;
    color: #ddd;
}
.carousel-btn.prev-btn { left: 0; }
.carousel-btn.next-btn { right: 0; }
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}
.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}
.carousel-dots .dot.active, .carousel-dots .dot:hover {
    background: #000;
}

.service-bullet-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.service-bullet-points li {
    font-size: 15px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 15px;
}
.service-bullet-points li strong {
    color: #111;
}

.service-quote-box {
    background-color: transparent;
    border: 1px solid #eee;
    border-left: 4px solid var(--secondary-color);
    padding: 25px;
    display: flex;
    align-items: flex-start;
    margin-top: 30px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #eaeaea;
    margin-bottom: 30px;
}
.widget-header {
    background-color: #005BAC;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-list li {
    border-bottom: 1px solid #eaeaea;
}
.service-list li:last-child {
    border-bottom: none;
}
.service-list li a {
    display: block;
    padding: 8px 15px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}
.service-list li a:hover, .service-list li a.active {
    background-color: #f5f5f5;
    color: var(--primary-medium);
}

.sidebar-contact-form {
    padding: 20px;
}
.sidebar-contact-form input, .sidebar-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d5c8c8;
    background: #fff;
    border-radius: 3px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}
.sidebar-contact-form input::placeholder, .sidebar-contact-form textarea::placeholder {
    color: #999;
}
.btn-submit-red {
    background-color: #E3000F;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border-radius: 3px;
}
.btn-submit-red:hover {
    background-color: #c0000a;
}

/* Blue Diamond Divider */
.diamond-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 15px auto 30px;
    width: 240px;
}

.divider-line {
    flex: 1;
    height: 2.5px;
    background-color: #0d46a0;
}

.divider-diamond {
    width: 12px;
    height: 12px;
    background-color: #0d46a0;
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* Step Progress Indicator */
.step-progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    width: 100%;
}

.dot-line {
    flex: 1;
    border-top: 1.5px dotted #a5a5a5;
    height: 0;
}

.progress-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e31818;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin: 0 10px;
    flex-shrink: 0;
}

/* =========================================
   RESPONSIVE LAYOUT FIXES
   ========================================= */

@media (max-width: 767px) {
    /* Grids & Columns */
    .features-grid, 
    .footer-inner, 
    .quote-grid, 
    .about-grid,
    .service-details-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Footer */
    .footer-bottom p {
        transform: none !important;
        text-align: left;
        padding: 0 15px;
        line-height: 1.5;
    }
    .site-footer {
        padding: 40px 0 0;
    }
    
    /* Header & Topbar */
    .site-header {
        height: auto !important;
    }
    .header-action .btn-call {
        margin-right: 15px !important;
        padding: 6px 12px;
        font-size: 14px;
    }
    .logo {
        margin-left: 0 !important;
    }
    .logo img {
        max-height: 50px !important;
    }
    
    /* Typography & Spacing */
    .hero-content h1, 
    .page-banner-content h1 {
        font-size: 28px !important;
    }
    .hero-content p {
        font-size: 14px !important;
    }
    .about-section, .quote-section, .services-section, .booking-section {
        padding: 50px 0;
    }
    
    /* Overlapping About Images Fix */
    .about-images {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .img-main img {
        width: 100%;
    }
    .img-small-1, .img-small-2 {
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 80% !important;
        margin-top: -30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .img-small-2 {
        margin-top: -20px;
        width: 60% !important;
    }
    
    /* Avoid text overflow on small screens */
    .country-pill {
        white-space: normal !important;
        padding: 8px 10px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* Tablet specific adjustments */
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .footer-inner {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .footer-bottom p {
        transform: none !important;
        text-align: center;
    }
    
    /* Overlapping About Images Tablet Fix */
    .img-small-1 { left: -10px !important; }
    .img-small-2 { right: -10px !important; }
}
