/* ========================================
   BlueOlifant Website - Main Stylesheet
   Mobile-First Responsive Design
   ======================================== */

/* ========================================
   1. ROOT VARIABLES & RESETS
   ======================================== */
   :root {
    --primary-color: #28C7DF;
    --secondary-color: #031E3C;
    --text-dark: #666666;
    --text-gray: #979494;
    --text-light: #FFFFFF;
    --border-color: #CCCCCC;
    --bg-light: #F4F4F4;
    --font-primary: 'Quicksand', sans-serif;
    --font-secondary: 'Josefin Sans', sans-serif;
}

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

/* html {
    overflow-x: hidden;
    width: 100%;
}

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

/* ========================================
   2. BASE TYPOGRAPHY
   ======================================== */
body {
    font-size: 15px;
    font-family: var(--font-primary);
    background: var(--text-light);
    color: var(--text-dark);
    line-height: 1.9;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    text-align: inherit;
    line-height: 1.2em;
}

h1 { font-size: 2.3em; text-transform: uppercase; }
h2 { font-size: 1.9em; line-height: 1.3em; }
h3 { font-size: 1.6em; line-height: 1.4em; }
h4 { font-size: 1.3em; line-height: 1.5em; }

p {
    font-size: inherit;
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 0.5em;
}

a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover { color: var(--primary-color); }

/* ========================================
   3. BUTTONS
   ======================================== */
button, .button {
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 16px 45px 15px;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

button:hover, .button:hover {
    background: var(--text-light);
    color: #222222;
    border-color: var(--primary-color);
}

/* ========================================
   4. QUICK INQUIRY FLOATING FORM
   ======================================== */
.floating-form-container {
    background: white;
    display: inline-block;
    left: 0;
    border-radius: 10px;
    z-index: 99999;
    padding: 0;
    text-align: center;
    top: 27%;
    width: 275px;
    height: auto;
    position: fixed;
    box-shadow: 0 1px 10px var(--primary-color);
    transition: all 0.25s ease-in-out;
}

.floating-form-container-hide {
    transform: translateX(-280px);
}

#hidebox-custom {
    right: -40px;
    top: 34%;
    width: 40px;
    height: 120px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 0 10px 10px 0;
    background-color: var(--primary-color);
    z-index: 2;
    line-height: 1.7;
    color: white;
    display: inline-block;
    padding: 8px 15px;
    position: absolute;
    overflow: hidden;
    transition: all 0.4s ease-in;
}

#hidebox-custom:hover:before {
    animation: effect_dylan 0.8s ease-out;
}

@keyframes effect_dylan {
    50% { transform: scale(1.5, 1.5); opacity: 0; }
    99% { transform: scale(0.001, 0.001); opacity: 0; }
    100% { transform: scale(0.001, 0.001); opacity: 1; }
}

.quick-inquiry-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 13px;
    margin-top: 15px;
    margin-left: 0;
}

.floating-form-wrapper {
    padding: 20px;
}

.form-container .form-input {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 12px;
    font-family: var(--font-primary);
}

.form-container textarea {
    min-height: 65px;
    resize: vertical;
}

.form-container .btn-submit {
    background: var(--primary-color);
    color: white;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    border: 1px solid var(--primary-color);
    width: 100%;
}

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

.thank-you-text {
    color: black;
    padding: 50px 20px;
    text-align: center;
}

/* ========================================
   5. HEADER
   ======================================== */
header {
    background-color: var(--secondary-color);
    color: var(--text-light);
    margin-bottom: 0;
    padding: 15px 0;
    width: 100%;
}

/* Header container */
header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Desktop header row */
header .desktop.row {
    display: flex;
    align-items: center;
    margin: 0 -15px;
}

/* Header columns */
header .col-lg-4,
header .col-lg-8 {
    padding: 0 15px;
}

/* Logo container */
header .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

/* Header links container */
/* header .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    text-align: right;
} */

/* Header links */
.header-links {
    /* display: inline-flex; */
    align-items: center;
    gap: 20px;
}

.home-page header {
    background-color: transparent;
    /* position: absolute; */
    top: 0;
    width: 100%;
    z-index: 99;
}

.home-page .sticky header  {
    background-color: var(--secondary-color);
}

#logo {
    max-width: 200px;
    height: auto;
}

.phone, .email {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.phone {
    padding: 0 10px 0 0;
    letter-spacing: 3px;
}

.phone:before {
    /* content: '📞'; */
    color: var(--primary-color);
    padding-right: 5px;
    vertical-align: middle;
    font-size: 19px;
}

.email {
    line-height: 28px;
    padding: 8px 30px 6px;
    display: inline-block;
    margin-right: 16px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.email:hover {
    border: 1px solid var(--text-light);
    background: var(--text-light);
    color: var(--text-dark);
}

/* Navigation */
.top-bar-section {
    width: 100%;
    line-height: 30px;
    float: left;
    color: var(--text-light);
    margin-top: 20px;
    border-top: 1px solid #283f59;
    padding-top: 15px;
}

.top-bar-section .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
}

.top-bar-section .menu > li {
    position: relative;
    padding: 0 20px;
}

.top-bar-section .menu > li > a {
    color: var(--text-light);
    font-size: 16px;
    padding: 0 0 10px;
    line-height: 25px;
    text-transform: uppercase;
    background: transparent;
    font-weight: 500;
    letter-spacing: 2px;
    display: block;
}

.top-bar-section .menu > li.active > a {
    border-bottom: 2px solid var(--primary-color);
}

.top-bar-section .menu > li > a:hover {
    color: var(--text-light);
}

/* Dropdown Menu */
.top-bar-section .menu > li.has-dropdown {
    position: relative;
}

.top-bar-section .menu > li.has-dropdown > a:after {
    content: '▼';
    font-size: 10px;
    margin-left: 8px;
    color: var(--primary-color);
}

.top-bar-section .menu > li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--text-light);
    z-index: 99999;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 250px;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.top-bar-section .menu > li.has-dropdown:hover ul {
    display: block;
}

.top-bar-section .menu > li ul li a {
    background: var(--text-light);
    color: #2B2B2B;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 20px;
    line-height: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.top-bar-section .menu > li ul li a:hover {
    background: var(--bg-light);
    color: #2B2B2B;
}

/* Sticky Header */
.sticky {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
    padding: 0 !important;
    margin-top: 0 !important;
    background-color: var(--secondary-color) !important;
    border-bottom: none !important;
}

.sticky .top-bar-section {
    margin-top: 0 !important;
    border-top: 0 !important;
    padding-top: 10px !important;
    /* padding-bottom: 10px !important; */
    background: var(--secondary-color);
}

.sticky .desktop.row,
.sticky .header-links {
    display: none !important;
}

/* ========================================
   6. HERO SLIDER
   ======================================== */
#slider {
    position: relative;
}

.bxslider {
    margin-bottom: 0;
    list-style: none;
    padding: 0;
}

.banner-service {
    position: relative;
    /* overflow: hidden; */
}
.banner-container {
    position: relative;
}
.banner-image {
    width: 100%;
}

.banner-figure {
    position: relative;
    margin: 0;
}

.banner-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-figcaption {
    position: absolute;
    top: 50%;
    left: 95%;
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: white;
    transform: translate(-50%, -50%);
}

/* .banner-description {
    width: 47%;
    text-align: right;
} */

.banner-title {
    color: var(--text-light);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 35px;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 10px;
}

.banner-sub-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: none;
    line-height: 1.5 !important;
    margin-bottom: 30px;
}

.banner-content-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        color: white;
    }
    
    .banner-description {
        /* background-color: rgba(0, 0, 0, 0.5); */
        padding: 2rem;
        border-radius: 4px;
    }
    
    .banner-main-services, 
    .banner-main-sub-services {
        color: white;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

.blue {
    color: var(--primary-color);
}

/* Static hero banner (non-slider) */
.hero-banner {
    position: relative;
    background: #031E3C;
    overflow: hidden;
}

.hero-banner--image {
    background: url('../images/2358007_1600x0.jpg') no-repeat center/cover;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 30, 60, 0.95) 0%, rgba(3, 30, 60, 0.65) 55%, rgba(3, 30, 60, 0.25) 100%);
    pointer-events: none;
}

.hero-banner__content {
    position: relative;
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.hero-banner-figure img {
    width: 100%;
    height: auto;
}

.hero-banner-title {
    /* font-size: clamp(2rem, 3vw, 2.75rem); */
    color: var(--text-light);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 35px;
    letter-spacing: 0px;
    line-height: 1;
    margin-bottom: 10px;
}

.hero-banner-text {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-banner .button {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

/* BxSlider Pager */
#slider-pager {
    position: absolute;
    bottom: 15px;
    width: 100%;
    z-index: 9999;
    text-align: center;
}

.bx-pager {
    padding: 0;
    z-index: 9999;
    width: 100%;
}

.bx-pager-item {
    display: inline;
}

a.bx-pager-link {
    font-size: 0;
    display: inline-block;
    border-radius: 100%;
    margin-right: 10px;
    text-decoration: none;
    width: 13px;
    height: 13px;
    padding: 0;
    background: var(--text-light);
    border: 2px solid var(--text-light);
}

a.bx-pager-link.active {
    background: #EF4F45;
    border: 2px solid var(--text-light);
}

/* ========================================
   7. HOMEPAGE SECTIONS
   ======================================== */

/* Call Us Section 1 */
.call-us {
    background-image: url('../images/bg_02.jpg');
    padding: 10px 0 400px;
    background-repeat: no-repeat;
    background-size: contain;
    text-align: center;
    color: var(--text-light);
}

.call-us-text {
    text-align: left;
    top: 130px;
    color: var(--text-dark);
    position: relative;
}

/* SEO Text Styling */
.seo-text {
    font-family: 'Quicksand', sans-serif;
    font-size: inherit;
    line-height: 1.6;
    color: #333333;
    margin: 15px 0 25px;
    font-weight: 400;
    max-width: 800px;
}

.seo-text a.cta-link {
    color: #28C7DF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.seo-text a.cta-link:hover {
    color: #1E9CB5;
    text-decoration: underline;
}

/* Call Us Section 2 - Services */
.call-us-2 {
    text-align: left;
    color: var(--text-dark);
    
    
    position: relative;
    padding: 50px 0;
}

.call-us-text-2 .description {
    top: 77px;
    background-image: url('../images/img1_05.png');
    background-repeat: no-repeat;
    background-size: contain;
    top: 30px;
    position: relative;
}

/* Call Us Section 3 - About */
.call-us-3 {
    background-image: url('../images/bg_09.jpg');
    padding: 10px 0 220px;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--text-light);
}

.call-us-text-3 {
    top: 155px;
    position: relative;
}

/* Service Cards Section */
.buy-sell-1 {
    padding: 200px 0 65px;
    background: var(--bg-light);
    margin-top: -175px;
}

.buy-sell-1 .description .button {
    font-size: 13px;
    padding: 16px 45px 15px;
    background: var(--bg-light);
    color: #222222;
    border: 1px solid var(--primary-color);
}

.buy-sell-1 .description .button:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--bg-light);
}

/* Icon Swap on Hover */
.swap-on-hover {
    position: relative;
    margin: 0 auto;
    min-height: 148px;
}

.swap-on-hover img {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    transition: opacity 0.5s linear;
}

.swap-on-hover .swap-on-hover__front-image {
    z-index: 9999;
    border-radius: 109px;
    cursor: pointer;
}

.swap-on-hover a:hover > .swap-on-hover__front-image {
    opacity: 0;
}

.swap-on-hover__back-image {
    opacity: 0;
}

.swap-on-hover a:hover > .swap-on-hover__back-image {
    opacity: 1;
}

/* CTA Section */
.buy-sell {
    padding: 100px 0 60px;
}

.buy-sell .buy-sell-content.li-1 {
    border-right: 2px solid var(--primary-color);
    padding-bottom: 0;
}

/* ========================================
   8. TYPOGRAPHY UTILITIES
   ======================================== */
.main-heading,
.section-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2 !important;
    text-transform: capitalize;
    letter-spacing: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.main-sub-heading,
.section-sub-title {
    font-size: 20px;
    text-transform: none;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: #595757 !important;
    padding-bottom: 10px;
    padding-top: 10px;
}

.heading-h2 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: #595757 !important;
    padding-bottom: 0;
    padding-top: 10px;
}

.gray-color {
    color: var(--text-gray);
}

.blue-text {
    color: var(--primary-color) !important;
}

.cta-link,
.cta-link:hover,
.cta-link:active,
.cta-link:focus {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.border-line-bottom {
    border-top: 1px solid var(--primary-color);
    width: 40%;
    margin: 15px 0 -10px;
}

.banner-br-service {
    border-top: 1px solid var(--primary-color);
    width: 30%;
    margin: 15px 0 -10px;
}

.ser-height {
    min-height: 140px;
}

.desk-pt-services {
    padding-top: 70px;
}

.home-about-textposi {
    position: relative;
}

/* ========================================
   9. FOOTER
   ======================================== */
footer {
    color: var(--text-light);
    background: var(--secondary-color);
    padding: 0;
}

footer a {
    color: var(--text-light);
}

footer a:hover {
    color: var(--text-light);
    opacity: 0.8;
}

.follow-us-footer {
    padding: 18px 0;
    border-bottom: 0;
}

.newsletter .subscribe {
    text-transform: uppercase;
    font-size: 1em;
    background: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--primary-color);
    line-height: 19px;
    padding: 10px 40px 6px;
    cursor: pointer;
    font-weight: 700;
    border-radius: 30px;
    display: inline-block;
}

.newsletter .subscribe:hover {
    opacity: 0.8;
}

.social-media-icons {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .social-media {
    width: auto;
    margin-top: 3px;
    float: right;
}

.social-media-icons li {
    display: inline-block;
    line-height: 17px;
}

.social-media-icons li a {
    font-size: 28px;
    color: var(--primary-color);
    padding: 0 0 0 12px;
}

.social-media-icons li:first-child a {
    padding: 0;
}

.social-media-icons li a:hover {
    opacity: 0.8;
}

.copyright {
    text-align: center;
}

.powered {
    text-align: right;
    text-transform: none;
}

/* ========================================
   10. MOBILE SIDEBAR (Hidden by default)
   ======================================== */
#sidebar {
    display: none;
    position: fixed;
    left: -100%;
    top: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: var(--text-light);
    z-index: 999999;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.3);
}

#sidebar.active {
    left: 0;
}

#sideMainNav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-bar li {
    border-bottom: 1px solid var(--border-color);
    display: block;
    line-height: 44px;
    width: 100%;
}

.nav-bar li a {
    display: block;
    color: var(--text-dark);
    font-size: 16px;
    padding: 0 18px;
    text-transform: uppercase;
}

.nav-bar li a:hover {
    color: var(--primary-color);
}

.nav-bar li.has-dropdown ul {
    display: none;
    padding-left: 20px;
}

.nav-bar li.has-dropdown.active ul {
    display: block;
}

/* ========================================
   11. UTILITY CLASSES
   ======================================== */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

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

.text-end {
    text-align: right !important;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

/* ========================================
   11. ABOUT US PAGE STYLES
   ======================================== */

/* About page body class */
.about-page #main {
    background: #fff;
}

/* Content page type wrapper */
.content-page-type-wrapper {
    background: #fff;
}

/* Inner page banner */
.inner-page .banner {
    margin-top: 0;
    margin-bottom: 30px;
}

.inner-page .banner-figure {
    position: relative;
}

.inner-page .banner-figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to right, rgba(3, 30, 60, 0.85) 0%, rgba(3, 30, 60, 0.4) 50%, rgba(3, 30, 60, 0) 100%); */
    z-index: 1;
}

.inner-page .banner-figcaption-service {
    z-index: 2;
}

.inner-page {
    min-height: 400px;
}

/* Banner figcaption for service/about pages */
.banner-figcaption-service {
    position: absolute;
    transform: none;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    text-align: left !important;
    padding: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
}

.banner-figcaption-service .row {
    width: 100%;
}

.banner-figcaption-service .banner-description {
    width: 50%;
    max-width: 700px;
    text-align: left;
    padding-left: 200px;
    background-color: transparent;
}

.banner-main-service {
    color: var(--text-light);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 35px;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 10px;
}

.banner-main-sub-service {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: none;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Content sections */
.ps-top-padding {
    padding-top: 40px;
}

.main-body-content-page-type {
    /* padding: 40px 0; */
    line-height: 1.9;
}

.main-body-content-page-type p {
    font-size: inherit;
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 1.5em;
    color: var(--text-dark);
}

.main-body-content-page-type h4 {
    color: var(--primary-color);
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: 700;
}

.section-h4 {
    font-size: 20px;
    text-transform: none;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: #595757 !important;
    padding-bottom: 0;
    padding-top: 10px;
    margin-bottom: 0;
}

/* ========================================
   11. Service PAGE STYLES
   ======================================== */

/* service page body class */
.about-page #main {
    background: #fff;
}

/* Content page type wrapper */
.content-page-type-wrapper {
    background: #fff;
}

/* Inner page banner */
.inner-page-service .banner {
    margin-top: 0;
    margin-bottom: 30px;
}

.inner-page-service .banner-figure {
    position: relative;
}

.inner-page-service .banner-figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to right, rgba(3, 30, 60, 0.85) 0%, rgba(3, 30, 60, 0.4) 50%, rgba(3, 30, 60, 0) 100%); */
    z-index: 1;
}

.inner-page-service .banner-figcaption-services {
    z-index: 2;
}

.inner-page-service {
    min-height: 400px;
}

/* Banner figcaption for service/about pages */
.banner-figcaption-services {
    position: absolute;
    transform: none;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    text-align: left !important;
    padding: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
}

.banner-figcaption-services .row {
    width: 100%;
}

.banner-figcaption-services .banner-description {
    width: 50%;
    max-width: 700px;
    text-align: left;
    /* padding-left: 200px; */
    background-color: transparent;
}

.banner-main-services {
    color: var(--text-light);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 35px;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 10px;
}

.banner-main-sub-services {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: none;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Content sections */
.ps-top-padding {
    padding-top: 40px;
}

.ps-bottom-padding {
    padding-bottom: 40px;
}

.main-body-content-page-type {
    /* padding: 40px 0; */
    line-height: 1.9;
}

.main-body-content-page-type p {
    font-size: inherit;
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 1.5em;
    color: var(--text-dark);
}

.main-body-content-page-type h4 {
    color: var(--primary-color);
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: 700;
}

.section-h4-services {
    font-size: 20px;
    text-transform: none;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: #595757 !important;
    padding-bottom: 0;
    padding-top: 10px;
    margin-bottom: 0;
}

.service-bottom-text {
    background: #f4f4f4;
    text-align: center;
    width: 100%;
    padding: 80px 0 45px;
}

/* Accordion (Containers page) */
.accordion-split {
    display: grid;
    gap: 24px;
}

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

.accordion-split .accordion-item {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(3, 30, 60, 0.08);
    background: var(--bg-light);
}

.accordion-split .accordion-button {
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 22px 24px;
    border: none;
    box-shadow: none;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.accordion-split .accordion-button:focus {
    box-shadow: none;
}

.accordion-split .accordion-button.collapsed {
    background: var(--secondary-color);
    color: var(--text-light);
}

.accordion-split .accordion-button::after {
    content: '\2212';
    font-size: 26px;
    transform: none;
    width: auto;
    height: auto;
    line-height: 1;
    color: var(--text-light);
    background: none;
}

.accordion-split .accordion-button.collapsed::after {
    content: '+';
}

.accordion-split .accordion-body {
    padding: 24px;
    background: #f5f1f1;
    color: var(--text-dark);
    min-height: 140px;
    display: flex;
    align-items: center;
}

/* ========================================
   12. CONTACT PAGE
   ======================================== */

.contact-page {
    background: var(--bg-light);
}

.contact-page .heading-h3 {
    font-size: 26px;
    font-weight: 700;
    color: #595757 !important;
    margin-bottom: 20px;
}

.contact-intro-text {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.contact-details {
    padding-top: 30px;
}

.contact-icon-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 35px 45px rgba(3, 30, 60, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.contact-icon-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 60px rgba(3, 30, 60, 0.12);
}

.contact-icon-box .contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    margin-bottom: 24px;
    border-radius: 50%;
    border-right: 5px dashed #666666;
    border-bottom: 5px solid #666666;
    color: var(--secondary-color);
}

.contact-icon-box .contact-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-icon-box .contact-body p {
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-card-link {
    font-weight: 700;
    color: var(--secondary-color);
}

.contact-card-link:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 25px 45px rgba(3, 30, 60, 0.08);
    border: 1px solid rgba(3, 30, 60, 0.1);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form .form-control {
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(3, 30, 60, 0.15);
    box-shadow: none;
}

.contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(2, 116, 190, 0.15);
}

.contact-form .required {
    /* color: var(--secondary-color); */
    margin-left: 4px;
}

.contact-form .invalid-feedback {
    font-size: 13px;
}

.contact-form .button {
    margin-top: 10px;
    min-width: 160px;
}

.contact-form .iti {
    width: 100%;
}

.contact-form .iti input {
    width: 100%;
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(3, 30, 60, 0.15);
    box-shadow: none;
}

.contact-form .iti input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(2, 116, 190, 0.15);
}

.contact-form .iti--separate-dial-code .iti__selected-dial-code {
    font-weight: 600;
}


@media (max-width: 767.98px) {
    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .contact-page .heading-h3 {
        font-size: 22px;
    }
}

/* ========================================
   12. BLOG PAGE
   ======================================== */

.banner-title-blog {
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 35px;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 10px;
}

/* Footer content */
.footer-content-page-type {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

.content-footer h3.seo-text {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.9;
}

.content-footer p {
    margin-top: 1em;
    margin-bottom: 1em;
}

.blog-content h3 {
    font-weight: 600;
}

.blog-title {
    margin-top: 25px;
    margin-bottom: 11px;
    padding: 0;
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
    color: #444444;
    text-transform: capitalize;
    letter-spacing: 0;
    font-family: 'Quicksand', sans-serif;
}



/* ========================================
   12. RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablets and below (max-width: 1024px) */
@media only screen and (max-width: 1024px) {
    .desk-pt-services {
        padding-top: 50px;
    }
    
    .call-us-text-2 .description {
        top: 50px;
    }
    
    .ser-height {
        min-height: 167px;
    }
    
    .call-us-3 {
        background-size: contain;
        padding-bottom: 63px;
    }
    
    #slider .banner-figcaption {
        top: 54%;
    }
    
    .newsletter .subscribe {
        font-size: 14px;
        padding: 10px 28px 6px;
        margin-left: 20px;
    }
    
    .call-us-text-3 {
        top: 45px;
    }
    
    .buy-sell-1 {
        margin-top: -172px;
    }
    
    .call-us {
        padding: 10px 0 138px;
    }
    
    .call-us-text {
        top: 40px;
    }
}

/* Mobile and below (max-width: 940px) */
@media only screen and (max-width: 940px) {
    .desktop {
        display: none !important;
    }
    
    .mobile {
        display: block !important;
    }
    
    /* Mobile Header */
    header {
        padding: 16px 0 8px;
        border-bottom: 1px solid #32475e;
        position: relative !important;
        background: var(--secondary-color) !important;
    }
    
    .home-page header {
        position: relative;
        background: var(--secondary-color);
        padding: 16px 0 8px;
    }
    
    .phone-holder {
        border-top: 1px solid #32475e;
        text-align: center;
        padding: 10px;
    }
    
    header .phone {
        padding: 3px 0 5px 0;
        font-size: 20px;
        display: inline-block;
    }
    
    header .mobile-email {
        border-top: 1px solid #32475e;
    }
    
    header .email {
        padding: 8px 30px 5px;
        font-size: 15px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .fi-list {
        color: var(--primary-color);
        font-size: 44px;
    }
    
    /* Banner */
    #slider .banner-figcaption {
        position: relative;
        width: 100%;
        text-align: center;
        transform: none;
        background-color: var(--secondary-color);
        padding: 40px 0 50px;
        left: 0;
        top: 0;
    }
    
    .banner-description {
        text-align: center;
        padding: 1rem 0;
    }

    .banner-content-container {
        position: static;
        transform: none;
        height: auto;
        padding: 2rem 15px;
        background-color: var(--secondary-color);
    }

    .top-bar-section {
        display: none;
    }
    
    .banner-main-services {
        color: white;
        /* font-size: 28px; */
        margin-bottom: 15px;
        padding-top: 0;
        /* color: #333; or your preferred text color */
    }
    
    .banner-main-sub-services {
        /* color: #666; or your preferred text color */
         color: rgba(255, 255, 255, 0.9);
        /* font-size: 16px; */
        margin-bottom: 0;
    }


    .banner-service {
        overflow: visible;
    }
    /* Ensure the image takes full width */
    .banner-image {
        width: 100%;
    }
    
    /* Sections */
    .call-us {
        background-image: url('../images/MOBILE_02.jpg');
        padding: 10px 0 600px;
        background-size: cover;
        background-position: top;
    }
    
    .call-us-text {
        text-align: center;
        top: 115px;
    }
    
    .main-heading,
    .section-title {
        font-size: 40px;
    }
    
    .call-us-image-2 {
        padding-top: 50px;
    }
    
    .call-us-text-2 .description {
        top: 100px;
        text-align: center;
        margin-bottom: 160px;
    }
    
    .banner-br-service {
        width: 20%;
        margin: 10px auto;
        margin-bottom: -6px;
    }
    
    .buy-sell-1 {
        margin-top: -601px;
        padding: 235px 0 50px;
    }
    
    .border-line-bottom {
        width: 15%;
        margin: 10px auto;
        margin-bottom: -6px;
    }
    
    .heading-h2 {
        padding-top: 25px;
    }
    
    .buy-sell-1 .description {
        padding-top: 30px;
    }
    
    .buy-sell-1 .description .button {
        background: transparent;
        color: #222222;
    }
    
    .call-us-3 {
        background-image: url('../images/CONTEMPORARY-THEME-MOBILESDfvd_05.jpg');
        height: 1038px;
        background-size: cover;
        background-position: center;
    }
    
    .call-us-text-3 {
        top: 700px;
    }
    
    .buy-sell .buy-sell-content.li-1 {
        border-right: none !important;
    }
    
    .ser-height {
        min-height: auto;
    }
    
    .home-about-textposi {
        position: relative;
        bottom: 200px;
    }
    
    /* Footer */
    footer .social-media {
        border-bottom: 1px solid #555555;
        padding-top: 6px;
        padding-bottom: 5px;
        float: none;
        text-align: center;
    }
    
    .social-media-icons li a {
        font-size: 70px;
        padding: 0 15px;
    }
    
    .newsletter-mobile {
        padding-top: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #555555;
    }
    
    .address-holder {
        padding-top: 10px;
        padding-bottom: 10px;
        display: none;
    }
    
    .powered {
        padding: 20px 0;
        text-align: center;
    }
}

/* Small mobile (max-width: 480px) */
@media only screen and (max-width: 480px) {
    .home-about-textposi {
        bottom: -50px;
    }
    
    .call-us-3 {
        height: 650px;
        background-size: contain;
    }
    
    .call-us {
        background-size: cover;
        padding: 10px 0 505px;
        background-image: url('../images/480.jpg');
    }
    
    .call-us-text-3 {
        top: 195px;
    }
}

/* Extra small mobile (max-width: 375px) */
@media only screen and (max-width: 375px) {
    .call-us {
        background-size: auto;
        padding: 10px 0 200px;
    }
    
    .call-us-text p {
        margin-bottom: 0;
        line-height: 1.6;
    }
    
    .main-heading,
    .section-title {
        font-size: 30px;
    }
}