/* --- General Setup & Variables --- */
:root {
    --primary-blue: #005a9c;
    --primary-orange: #f58220;
    --white: #ffffff;
    --dark-text: #333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.coloured_heading{
    color:#f58220;
}
.btn.btn-primary {
	width: fit-content;
	padding: 10px 20px;
	background: #f58220;
	color: #fff;
}




/* Basic reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }
    a {
        text-decoration: none;
        color: inherit;
    }

    

    /* ===== Top Bar ===== */
    .top-bar {
        background: #005a9c;
        color: #fff;
        font-size: 14px;
        padding: 5px 0;
    }
    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    .top-bar .contact-info a {
        color: #fff;
        margin-right: 10px;
        font-size: 16px;
    }
    .top-bar .phone-number {
        margin-left: 5px;
    }
    .top-bar .tagline {
        font-weight: bold;
    }
    /* UPDATED: Request a Call button style */
    .top-bar .btn-request-call {
        background: #fff;
        color: #007BFF;
        padding: 8px 12px;
        border-radius: 4px;
        font-weight: bold;
        transition: 0.3s;
        border: 1px solid #fff;
    }
    .top-bar .btn-request-call:hover {
        background: #f0f0f0;
    }


    /* ===== Main Navigation ===== */
    .main-nav {
        background: #ff6f00;
        padding: 10px 0;
        /* position: sticky is removed */
            z-index: 999;
            transition: box-shadow 0.3s ease;
    }
    /* NEW CLASS: This is applied by JavaScript on scroll */
        .main-nav.is-sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }

    .main-nav .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    .logo img {
	height: 60px;
	vertical-align: middle;
	padding: 5px;
	background: #fff;
	border-radius: 10px;
}
    
    nav.navigation {
        flex: 1;
        margin-left: 30px;
        position: relative;
    }
    nav ul.nav-links {
        list-style: none;
        display: flex;
        gap: 15px;
    }
    nav ul.nav-links li {
        position: relative;
    }
    /* UPDATED: Main nav link styles */
    nav ul.nav-links > li > a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	color: #fff;
	transition: 0.3s;
	text-underline-offset: 5px;
	font-size: 14px;
}
.sub-dropdown {
	list-style-type: none;
}
.dropdown-menu li {
	list-style-type: none;
}
    nav ul.nav-links > li > a:hover {
        background: none;
        color: #f1f1f1;
    }

    /* UPDATED: Dropdown styles */
    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #ff6f00; /* Orange background */
        min-width: 300px;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
        z-index: 1000;
        flex-direction: column;
        padding: 5px 0;
    }
    .dropdown-menu li a {
        padding: 12px 20px;
        font-weight: normal;
        color: #fff; /* White text */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .dropdown-menu li a:hover {
        background: #e06200; /* Darker orange on hover */
    }
    .sub-dropdown .dropdown-menu {
        top: 0;
        left: 100%;
        border-radius: 4px;
    }
    .dropdown-menu.show {
        display: block !important;
    }
    
    /* Desktop hover functionality */
    @media (min-width: 993px) {
        nav ul.nav-links li.dropdown:hover > .dropdown-menu {
            display: flex;
        }
        nav ul.nav-links li.sub-dropdown:hover > .dropdown-menu {
            display: flex;
        }
    }

    /* Nav right */
    .nav-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .btn-pay img {
	height: 40px;
	vertical-align: middle;
	padding: 5px;
	background: #fff;
	border-radius: 8px;
}
    .hamburger-menu, .close-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 22px;
        color: #fff;
        cursor: pointer;
    }

    /* ===== Mobile ===== */
    @media(max-width: 992px) {
        .top-bar .tagline {
            display: none;
        }
        nav ul.nav-links {
            position: fixed;
            left: -280px;
            top: 0;
            height: 100%;
            width: 280px;
            background: #ff6f00;
            flex-direction: column;
            gap: 0;
            padding-top: 50px;
            transition: left 0.3s ease;
            overflow-y: auto;
            z-index: 1001;
        }
        nav ul.nav-links.active { left: 0; }
        nav ul.nav-links li a {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        /* Mobile main links still have underline */
         nav ul.nav-links > li > a {
            
            text-underline-offset: 5px;
         }

        /* Mobile dropdowns */
        .dropdown-menu {
            position: static;
            background: #e06200; /* Lighter orange for mobile submenus */
            box-shadow: none;
            border-radius: 0;
            min-width: 100%;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding: 0;
        }
        .dropdown-menu.show { max-height: 1500px; }
        /* Remove underline from mobile dropdown items */
        .dropdown-menu li a {
            text-decoration: none;
        }
        .sub-dropdown .dropdown-menu a {
            padding-left: 40px;
            background-color: #ff6f00;
        }
        .hamburger-menu { display: block; }
        .close-menu-btn {
	display: block;
	position: absolute;
	top: -40px;
	right: 20px;
	font-size: 30px;
	z-index: 1002;
}
        nav ul.nav-links li.dropdown:hover > .dropdown-menu,
        nav ul.nav-links li.sub-dropdown:hover > .dropdown-menu {
            display: none;
        }
.container .tagline {
  display: block;
  order: 3;
}
.top-bar .container {
  flex-wrap: wrap;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  padding: 5px 0px;
}
    }



/* --- ================================== --- */
/* --- FOOTER SECTION (NEW GRID LAYOUT) --- */
/* --- ================================== --- */
.site-footer {
    background-color: #1a1a2e; /* Dark blue/purple background */
    color: #a9a9d0; /* Light, soft text color */
    padding: 60px 20px; /* Remove bottom padding */
    font-size: 14px;
    border-top: 1px solid #eee;
}

.site-footer a {
    color: #a9a9d0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-footer a:hover {
    color: var(--primary-orange);
}

.site-footer .container {
    max-width: 1500px;
}

/* --- Combined Footer Grid --- */
/* This will contain both the initial widgets and the link lists */
.footer-top, .footer-links-grid {
    display: grid;
    /* Create a responsive grid that adjusts columns */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
    gap: 30px;
    padding-bottom: 40px;
}

/* Remove the border between the two sections */
.footer-top {
    border-bottom: none;
}
.footer-links-grid {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-widget .widget-title, .links-column h5 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 15px;
    background-color: white;
    padding: 5px;
    border-radius: 4px;
}

.footer-widget p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
}
.social-icons a:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.links-widget ul, .links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.links-widget li, .links-column li {
    margin-bottom: 10px;
}
.links-column a {
    text-transform: capitalize;
}


.newsletter-form {
    display: flex;
    margin-top: 15px;
}
.newsletter-form input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px 0 0 5px;
    color: var(--white);
    outline: none;
}
.newsletter-form button {
    padding: 10px 15px;
    border: none;
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 600;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}


/* --- Sub-Footer --- */
.sub-footer {
	background-color: #111122;
	padding: 25px 0 60px 0px;
	text-align: center;
	color: #a9a9d0;
}
.sub-footer p {
    margin: 0;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  width: 100%;
}
.footer-top {
	display: grid;
	grid-template-columns: repeat(4,1fr);
}
#footer .container {
	display: flex;
	flex-direction: column;
}

@media only screen and (max-width:1024px){
    .footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
.footer-top {
	display: grid;
	grid-template-columns: repeat(2,1fr);
}
#footer .container {
	display: flex;
	flex-direction: column;
}
}

@media only screen and (max-width:768px){
    .footer-links-grid {
  display: grid;
  grid-template-columns: repeat(1,1fr);
}
.footer-top {
	display: grid;
	grid-template-columns: repeat(1,1fr);
}
#footer .container {
	display: flex;
	flex-direction: column;
}
}


/* --- ================================================ --- */
/* --- FLOATING CONTACT WIDGET (CORRECTED & FINAL)      --- */
/* --- ================================================ --- */
.floating-contact-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
}

.floating-contact-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-contact-widget li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: width 0.4s ease, border-radius 0.4s ease, background-color 0.3s ease;
    overflow: hidden;
}

.floating-contact-widget .whatsapp-float {
    background-color: #25D366;
}
.floating-contact-widget .whatsapp-float:hover {
    background-color: #128C7E;
}

/* The hover effect to expand the circle into a pill */
.floating-contact-widget li a:hover {
    width: 180px;
    border-radius: 30px;
    justify-content: flex-start; /* Aligns content to the left on hover */
}

/* Icon styling */
.floating-contact-widget li a i {
    font-size: 24px;
    text-align: center;
    margin-right: -16px;
}
.floating-contact-widget li a:hover i {
    font-size: 24px;
    text-align: center;
    margin-right: 10px !important;
    margin-left: 15px;
}

/* Text label styling (THE FIX IS HERE) */
.floating-contact-widget li a span {
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    padding-right: 20px;

    /* --- FIX: HIDE TEXT BY DEFAULT --- */
    max-width: 0;
    opacity: 0;
    transition: max-width 0.3s ease, opacity 0.2s ease;
}

/* --- FIX: REVEAL TEXT ON HOVER --- */
.floating-contact-widget li a:hover span {
    max-width: 120px; /* A value large enough to show the text */
    opacity: 1;
    transition-delay: 0.1s; /* Makes the animation smoother */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .floating-contact-widget {
        bottom: 20px;
        left: 20px;
    }
    .floating-contact-widget li a {
        width: 50px;
        height: 50px;
    }
    .floating-contact-widget li a i {
        font-size: 22px;
        width: 50px;
    }
    .floating-contact-widget li a:hover {
        width: 160px;
    }
     .floating-contact-widget li a span {
        font-size: 0.9rem;
    }
}



/* --- ================================== --- */
/* --- STICKY ENQUIRY BTN & POPUP (NEW) --- */
/* --- ================================== --- */

/* 1. The Sticky Button */
.sticky-enquiry-btn {
    position: fixed;
    top: 40%;
    right: 0;
    transform: translateY(-50%) rotate(270deg);
    transform-origin: bottom right;
    
    background-color: #ff6f00;
    color: var(--white);
    border: none;
    padding: 12px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    z-index: 998;
    border-radius: 8px 8px 0 0;
    box-shadow: -5px -5px 15px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sticky-enquiry-btn i {
    transform: rotate(90deg); /* Re-orient the icon */
}


/* 2. The Popup Form */
.sticky-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.sticky-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sticky-popup-panel {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: scale(0.95);
    transition: transform 0.4s ease;
}
.sticky-popup-overlay.active .sticky-popup-panel {
    transform: scale(1);
}

.sticky-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--dark-text);
    cursor: pointer;
    opacity: 0.7;
}
.sticky-popup-panel h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.sticky-popup-panel p {
    text-align: center;
    color: #555;
    margin-bottom: 25px;
}

.sticky-popup-panel .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}
.sticky-popup-panel .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: var(--bg-light);
    font-family: 'Poppins', sans-serif;
}
.sticky-popup-panel .btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
}
#sticky-popup-form label {
  color: #000;
}
#sticky-popup-form select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background-color: var(--bg-light);
	font-family: 'Poppins', sans-serif;
}
#sticky-popup-form .btn-submit {
  background: #ff6f00;
  border: 1px solid #ff6f00;
  border-radius: 5px;
  color: #fff;
}






/* --- ================================================ --- */
/* --- NEW CALCULATOR BANNER (SPLIT-FOCUS V2)           --- */
/* --- ================================================ --- */
.new-calc-banner {
    width: 100%;
    overflow: hidden;
    background-color: var(--white);
    border-bottom: 1px solid #e0e0e0;
}

.banner-grid-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr; /* 55% for form, 45% for visual */
    min-height: 80vh;
}

/* --- Left Side: Content & Form --- */
.banner-content-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.content-wrapper {
    max-width: 600px;
    width: 100%;
}

.content-wrapper h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.content-wrapper p {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* The New 4-Field Form */
.banner-form-v2 {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
}
#banner-form select {
	width: 100%;
	padding: 14px 18px;
	font-size: 1rem;
	font-family: 'Poppins', sans-serif;
	border: 1px solid #ccc;
	border-radius: 6px;
	background-color: #fff;
	transition: all 0.3s ease;
	padding: 12px 40px;
}

.banner-form-v2 .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.banner-form-v2 .form-group {
    position: relative;
}

.banner-form-v2 .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 0.9rem;
}

.banner-form-v2 input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.banner-form-v2 input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.2);
}

.banner-form-v2 .btn-primary {
	width: 100%;
	padding: 14px;
	margin-top: 20px;
	font-size: 1rem;
	border-color: #ff6f00 !important;
	cursor: pointer;
}

/* --- Right Side: Video & Scroll CTA --- */
.banner-visual-cta {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    min-height: 100%;
    overflow: hidden;
    padding-top: 100px;
}
.banner-content-form h1 {
    font-size: 32px;
    margin-bottom: 5px !important;
}

.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 46, 0.7); /* Dark navy overlay */
    z-index: 2;
}

.scroll-cta-card {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.scroll-cta-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.scroll-cta-card p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 25px;
}

.scroll-cta-card .btn-secondary {
	background: #ff6f00;
	color: #fff;
	padding: 12px 25px;
	font-size: 1rem;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	text-decoration: none;
}

.scroll-cta-card .btn-secondary i {
    margin-left: 8px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .banner-grid-container {
        grid-template-columns: 1fr; /* Stack columns */
    }
    .banner-visual-cta {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .banner-content-form {
        padding: 40px 20px;
    }
    .banner-form-v2 .form-grid {
        grid-template-columns: 1fr; /* Stack form fields */
    }
}






/* --- ================================================ --- */
/* --- NEW INTRO SECTION (HOW-IT-WORKS PANEL)           --- */
/* --- ================================================ --- */
.intro-section-v2 {
    padding: 80px 0;
    background-color: var(--bg-light); /* Light grey background */
}

.intro-section-v2 .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
}

/* Left Column: Content */
.intro-content-v2 h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.intro-content-v2 h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

.intro-content-v2 p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 30px;
}

.intro-content-v2 .btn-primary {
    padding: 14px 30px;
    font-size: 1rem;
}
.intro-content-v2 .btn-primary i {
    margin-left: 8px;
}

/* Right Column: "How It Works" Panel */
.how-it-works-panel {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.how-it-works-panel .panel-image {
    width: 100%;
    height: 220px;
}

.how-it-works-panel .panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-it-works-panel .panel-steps {
    padding: 30px;
}

.how-it-works-panel .panel-steps h3 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.steps-list .step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(245, 130, 32, 0.1);
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.steps-list .step-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.steps-list .step-text p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .intro-section-v2 .container {
        grid-template-columns: 1fr; /* Stack columns */
    }
}








/* --- ================================================ --- */
/* --- NEW CALCULATOR SECTION (COMMAND CENTER V3)       --- */
/* --- ================================================ --- */
.calculator-v3-section {
    padding: 80px 0;
    background-color: #1a1a2e;
    overflow: hidden;
}
#main_calc_section select option {
    background: #fff;
    color: #000;
}

#main_calc_section label {
    margin-top: 10px;
}

.calculator-v3-section .container {
    flex-direction: column;
}

.calculator-v3-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.calculator-v3-section .section-header h2 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
}
.calculator-v3-section .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* --- 2. The "Control Panel" (Inputs) --- */
.calculator-control-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #2a2a3e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.step {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 30px;
    display: flex;
    flex-direction: column;
}
.step:last-child {
    border-right: none;
    padding-right: 0;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.step-title span {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 0.9rem;
    margin-right: 12px;
}


.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}
.form-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--white);
    transition: all 0.3s ease;
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.4); }
.form-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.3);
}
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.btn-calculate {
    width: 100%;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: auto; /* Pushes button to bottom */
    transition: filter 0.3s ease;
}
.btn-calculate:hover { filter: brightness(1.1); }
.btn-calculate i { margin-right: 8px; }

/* --- 3. The "Results Dashboard" (Outputs) --- */
.calculator-results-dashboard {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: flex-start;
}

.profit-kpi-card {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff5f2f 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(245, 130, 32, 0.3);
    position: sticky;
    top: 20px; /* Makes the main profit card sticky */
}
.profit-kpi-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
}
.profit-kpi-card .profit-amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 10px 0;
}

.results-breakdown-card {
    background: #2a2a3e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
}
.breakdown-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}
.breakdown-list {
    list-style: none;
}
.breakdown-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}
.breakdown-list li:last-child { border-bottom: none; }
.breakdown-list li strong {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
}
.breakdown-list li.sub-total {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
.breakdown-list li.total {
    padding-top: 20px;
}
.breakdown-list li.total span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}
.breakdown-list li.total strong {
    font-size: 1.5rem;
}

/* --- 4. Other Calculators Section --- */
.other-tools-container {
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
}
.other-tools-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
}
.other-calc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.other-calc-card {
    display: block;
    background: #2a2a3e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.other-calc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: var(--primary-orange);
}
.other-calc-card .card-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}
.other-calc-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}
.other-calc-card p {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
	background: #ff6f00;
	color: #fff;
	padding: 7px 15px;
	border-radius: 5px;
	width: fit-content;
	margin-top: 15px !important;
}

/* --- ================================================ --- */
/* --- RESPONSIVE STYLES FOR CALCULATOR V3              --- */
/* --- ================================================ --- */
@media (max-width: 1024px) {
    .calculator-control-panel {
        grid-template-columns: 1fr;
    }
    .step {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }
    .step:last-child { border-bottom: none; padding-bottom: 0; }
    
    .calculator-results-dashboard {
        grid-template-columns: 1fr;
    }
    .profit-kpi-card {
        position: static; /* Un-stick the card */
    }
    .other-calc-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .calculator-v3-section { padding: 60px 0; }
    .calculator-control-panel { padding: 20px; }
}

@media (max-config: 576px) {
    .other-calc-grid {
        grid-template-columns: 1fr;
    }
}






/* --- ================================================ --- */
/* --- NEW "WHAT IS FBA" SECTION (INTERACTIVE SPOTLIGHT) --- */
/* --- ================================================ --- */
.what-is-fba-section {
    padding: 80px 0;
    background-color: var(--bg-light); /* Light BG */
    overflow: hidden;
}

.what-is-fba-section .container {
    /* display: grid; */
    /* grid-template-columns: 1fr 1.2fr; */
    /* align-items: center; */
    /* gap: 60px; */
    /* max-width: 1200px; */
    flex-direction: column;
}

/* Left Column: Content */
.fba-content-left h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}
.fba-content-left h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}
.fba-content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
}

/* Right Column: Interactive Panel */
.fba-interactive-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

/* Spotlight Image */
.spotlight-image-card {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-radius: 8px;
    overflow: hidden;
    min-height: 300px;
}
.spotlight-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease;
}

/* Interactive List */
.spotlight-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.spotlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}
.spotlight-item .item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 90, 156, 0.1);
    color: var(--primary-blue);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.spotlight-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

.spotlight-item:hover {
    background-color: #fff8f5;
    border-color: var(--primary-orange);
}
.spotlight-item.active {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}
.spotlight-item.active .item-icon {
    background-color: var(--white);
    color: var(--primary-orange);
}
.spotlight-item.active h4 {
    color: var(--white);
}

/* Description Box */
.spotlight-description {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light-text);
    padding: 10px;
    background-color: var(--bg-light);
    border-radius: 8px;
    min-height: 80px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .what-is-fba-section .container {
        grid-template-columns: 1fr; /* Stack columns */
    }
    .fba-content-left {
        text-align: center;
    }
    .fba-content-left h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .fba-interactive-right {
        grid-template-columns: 1fr; /* Stack inner columns */
    }
    /* On mobile, turn the nav into a tap-to-reveal accordion */
    .spotlight-image-card {
        grid-row: 1 / 2;
        height: 200px;
        display: none; /* Hide image, text is more important */
    }
    .spotlight-nav {
        grid-row: 1 / 2;
    }
    .spotlight-description {
        grid-row: 2 / 3;
        background-color: transparent;
        padding: 0;
        margin-top: 10px;
        min-height: 0;
    }
}










/* --- ================================================ --- */
/* --- NEW "BENEFITS" SECTION (INTERACTIVE ACCORDION)   --- */
/* --- ================================================ --- */
.benefits-section-v2 {
    padding: 80px 0;
    background-color: #1a1a2e;
    overflow: hidden;
}

.benefits-section-v2 .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Asymmetrical columns */
    align-items: center;
    gap: 60px;
    max-width: 1200px;
}

/* Left Column: Content */
.benefits-content-left h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: var(--white);
}
.benefits-content-left h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}
.benefits-content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* Right Column: Glass Accordion */
.benefits-accordion-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item-v2 {
    background: rgba(42, 42, 62, 0.7); /* Glass background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item-v2:hover {
    border-color: rgba(245, 130, 32, 0.5);
}

.benefit-question {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    color: var(--white);
}
.benefit-question .icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 90, 156, 0.1);
    color: var(--primary-blue);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.benefit-question h4 {
    flex-grow: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}
.benefit-question .toggle-icon {
    font-size: 1.2rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

/* Active State */
.benefit-item-v2.active .benefit-question .icon {
    background-color: var(--primary-orange);
    color: var(--white);
}
.benefit-item-v2.active .benefit-question .toggle-icon {
    transform: rotate(180deg);
}
/* Re-using minus icon for 'x' on rotate */
.benefit-item-v2.active .benefit-question .toggle-icon i::before {
    content: "\f068"; /* Font Awesome minus icon */
}
.benefit-item-v2 .benefit-question .toggle-icon i::before {
    content: "\f067"; /* Font Awesome plus icon */
}


.benefit-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.benefit-answer p {
    padding: 0 20px 20px 80px; /* Aligns with text, offset by icon */
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
.benefit-item-v2.active .benefit-answer {
    max-height: 200px; /* Adjust as needed for content */
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .benefits-section-v2 .container {
        grid-template-columns: 1fr; /* Stack columns */
    }
    .benefits-content-left {
        text-align: center;
    }
    .benefits-content-left h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .benefit-answer p {
        padding: 0 20px 20px 20px; /* Remove text offset on mobile */
    }
}









/* --- ================================================ --- */
/* --- NEW "HOW TO USE" SECTION (PROCESS FLOW V2)       --- */
/* --- ================================================ --- */
.how-to-use-section-v2 {
    padding: 80px 0;
    background-color: var(--bg-light); /* Light BG */
    overflow: hidden;
}

.how-to-use-section-v2 .container {
    flex-direction: column;
}

.how-to-use-section-v2 .section-header {
    text-align: center;
    margin-bottom: 70px;
}
.how-to-use-section-v2 .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
}

/* The Timeline Grid Container */
.how-to-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* The horizontal connecting line (desktop) */
.how-to-timeline::before {
    content: '';
    position: absolute;
    top: 40px; /* Aligns with the center of the 80px icon */
    left: 15%; /* Starts after the first card's center */
    width: 70%; /* Spans to the last card's center */
    height: 4px;
    background-color: #fddfc7; /* Light orange "track" */
    z-index: 0;
}

.how-to-step-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1; /* Sits on top of the timeline track */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: rgba(245, 130, 32, 0.1); /* Light orange */
    color: var(--primary-orange);
    font-size: 2rem;
    /* This creates the nice double border effect */
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--primary-orange);
    transition: all 0.3s ease;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light-text);
    transition: color 0.3s ease;
}

/* --- THE HOVER EFFECT (User Request) --- */
.how-to-step-card:hover {
    background-color: var(--primary-orange);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(245, 130, 32, 0.2);
}

/* Invert all child colors on hover */
.how-to-step-card:hover .step-icon-wrapper {
    background-color: var(--white);
    color: var(--primary-orange);
    box-shadow: 0 0 0 4px var(--white);
}
.how-to-step-card:hover .step-number {
    background-color: var(--white);
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}
.how-to-step-card:hover .step-content h3,
.how-to-step-card:hover .step-content p {
    color: var(--white);
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .how-to-timeline::before {
        left: 20%;
        width: 60%;
    }
}

@media (max-width: 768px) {
    .how-to-timeline {
        grid-template-columns: 1fr; /* Stack them */
        gap: 50px; /* Add vertical gap */
    }
    
    /* Transform the line from horizontal to vertical */
    .how-to-timeline::before {
        top: 40px; /* Start at the first icon's center */
        bottom: 40px; /* End at the last icon's center */
        left: 50%; /* Center of the screen */
        transform: translateX(-50%);
        width: 4px; /* Make it a vertical line */
        height: auto; /* Let it stretch */
    }

    .how-to-step-card {
        max-width: 400px;
        margin: 0 auto; /* Center the cards */
    }
}







/* --- ================================================ --- */
/* --- NEW "WHY CHOOSE" SECTION (INTERACTIVE SHOWCASE)  --- */
/* --- ================================================ --- */
.why-choose-v2-section {
    padding: 80px 0;
    background-color: #1a1a2e; /* Dark BG */
    overflow: hidden;
}

.why-choose-v2-section .container {
    display: grid;
    grid-template-columns: 1fr; /* Asymmetrical columns */
    align-items: center;
    gap: 60px;
    
}
/* Right Column: Content */
.why-choose-content-panel {
    background: rgba(42, 42, 62, 0.7); /* Glass background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.why-choose-content-panel .section-header {
    text-align: left;
    margin-bottom: 30px;
}
.why-choose-content-panel .section-header h2 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
}
.why-choose-content-panel .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Interactive Tab Navigation */
.why-choose-nav {
    list-style: none;
    margin-bottom: 20px;
}
.why-tab-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}
.why-tab-item .tab-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.why-tab-item .tab-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.why-tab-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-orange);
}
.why-tab-item.active {
    background: rgba(245, 130, 32, 0.1);
    border-color: var(--primary-orange);
}
.why-tab-item.active .tab-icon {
    background-color: var(--primary-orange);
    color: var(--white);
}
.why-tab-item.active .tab-title {
    color: var(--primary-orange);
}

/* Content Box */
.why-choose-content-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 25px;
    min-height: 120px;
}
.why-tab-pane {
    display: none;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeIn 0.4s ease;
}
.why-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .why-choose-v2-section .container {
        grid-template-columns: 1fr; /* Stack columns */
    }
    .why-choose-image-panel {
        max-width: 500px;
        margin: 0 auto;
    }
}








/* --- ================================================ --- */
/* --- NEW CTA SECTION (HORIZONTAL SPOTLIGHT FORM)      --- */
/* --- ================================================ --- */
.cta-spotlight-section {
    padding: 80px 0;
    background-color: var(--bg-light); /* Light BG */
}

.cta-spotlight-section .container {
    max-width: 1200px;
    flex-direction: column; /* Center the content */
}

.cta-spotlight-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.cta-spotlight-section .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
}
.cta-spotlight-section .section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
}

/* The Spotlight Card */
.cta-spotlight-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

/* The Horizontal Form */
.cta-horizontal-form {
    display: grid;
    /* 4 form fields + 1 auto-sized button */
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: flex-end; /* Aligns all items to their bottom edge */
}

.form-group-horizontal label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 0.9rem;
}

.cta-horizontal-form input {
    width: 100%;
    padding: 12px 15px 12px 40px; /* Left padding for icon */
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.cta-horizontal-form input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(245, 111, 33, 0.1);
}

.btn-cta-horizontal {
    padding: 12px 25px;
    height: 47px; /* Matches input height */
    font-size: 1rem;
    white-space: nowrap; /* Prevents text wrapping */
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    /* On tablet, break to a 2x2 grid */
    .cta-horizontal-form {
        grid-template-columns: 1fr 1fr;
    }
    .btn-cta-horizontal {
        grid-column: 1 / -1; /* Make button full width */
        margin-top: 10px;
        height: 50px; /* Taller button */
    }
}

@media (max-width: 576px) {
    .cta-spotlight-section {
        padding: 60px 0;
    }
    .cta-spotlight-card {
        padding: 25px;
    }
    /* On mobile, stack to a 1-column grid */
    .cta-horizontal-form {
        grid-template-columns: 1fr;
    }
}







/* --- ================================================ --- */
/* --- NEW "MARKETPLACE CALCULATORS" (TAB CAROUSEL)     --- */
/* --- ================================================ --- */
.calc-carousel-section {
    padding: 80px 0;
    background-color: #1a1a2e; /* Dark BG */
    overflow: hidden;
}

.calc-carousel-section .container {
    max-width: 1100px;
    flex-direction: column;
}

.calc-carousel-section .section-header {
    text-align: center;
    margin: 0 auto 50px auto;
}
.calc-carousel-section .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
}
.calc-carousel-section .section-header .separator {
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* 1. TAB NAVIGATION CAROUSEL */
.calc-tabs-nav {
    width: 100%;
    margin-bottom: 30px;
    overflow: visible; /* Important for slidesPerView: 'auto' */
}
.calc-tabs-nav .swiper-wrapper {
    /* This allows centering the tabs on desktop if they don't fill the space */
    justify-content: center;
}
.calc-tab-chip {
    width: auto !important; /* Let the content define the width */
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: rgba(42, 42, 62, 0.7);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.calc-tab-chip:hover {
    background: rgba(59, 59, 92, 0.9);
    color: var(--white);
}
.calc-tab-chip.active {
    background-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(245, 130, 32, 0.2);
}

/* 2. CONTENT CAROUSEL */
.calc-tabs-content {
    width: 100%;
    background: rgba(42, 42, 62, 0.7); /* Glass background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}
.calc-content-pane {
    width: 100%;
}
.swiper-slide.calc-content-pane {
	padding: 20px;
}
.tool-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.tool-card {
    display: block;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.tool-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.tool-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}
.tool-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    min-height: 44px; /* Ensures 2 lines of text */
}
.tool-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}
.tool-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-decoration: none;
}
.tool-link i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.tool-card:hover .tool-link i {
    transform: translateX(4px);
}

.calc-tabs-content .swiper-pagination {
    bottom: 15px !important;
}
.calc-tabs-content .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
}
.calc-tabs-content .swiper-pagination-bullet-active {
    background: var(--primary-orange);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    /* Make the tabs scrollable on mobile */
    .calc-tabs-nav .swiper-wrapper {
        justify-content: flex-start;
    }
    .calc-tabs-content {
        padding: 25px;
    }
    .tool-card h5 {
        min-height: 0; /* Let height be auto on mobile */
    }
}







/* --- ================================================ --- */
/* --- "CENTERED ACCORDION-TABS" (LIGHT BG) - FIXED     --- */
/* --- ================================================ --- */
.faq-light-section {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.faq-light-section .container {
    max-width: 900px;
    flex-direction: column;
}

.faq-light-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.faq-light-section .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
}
.faq-light-section .section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
}

/* Tab Navigation (Pills) */
.faq-tabs-wrapper-light {
    width: 100%;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
}
@media only screen and (max-width:768px){
    .faq-tabs-wrapper-light {
    overflow: auto;
}
}
.faq-tabs-wrapper-light::-webkit-scrollbar {
    display: none;
}
.faq-tabs-nav-light {
    display: flex;
    justify-content: center;
    gap: 15px;
    border-bottom: 2px solid var(--border-color);
}
.faq-tab-btn-light {
    padding: 12px 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: var(--light-text);
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(2px);
}
.faq-tab-btn-light i {
    font-size: 1.1rem;
}
.faq-tab-btn-light:hover {
    color: var(--dark-text);
}
.faq-tab-btn-light.active {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

/* Content & Accordion */
.faq-content-wrapper-light {
    width: 100%;
}
.faq-tab-pane-light {
    display: none;
    animation: fadeIn 0.4s ease;
}
.faq-tab-pane-light.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item-light {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.faq-item-light:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}
.faq-question-light {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
}
.faq-question-light::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}
.faq-item-light.active .faq-question-light::after {
    transform: rotate(45deg);
}

/* --- CSS FIX IS HERE --- */
.faq-answer-light {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    /* Move border here */
    border-top: 1px solid var(--border-color);
}
.faq-answer-light p {
    /* Adjust padding to be consistent */
    padding: 20px 25px; 
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--light-text);
    /* Remove border from here */
    /* border-top: 1px solid var(--border-color); */
}
.faq-item-light.active .faq-answer-light {
    max-height: 200px; /* Adjust as needed */
}
/* By default, the answer panel's border is hidden by max-height: 0 */
/* When active, the border appears with the content. */

/* Responsive */
@media (max-width: 768px) {
    .faq-tabs-nav-light {
        justify-content: flex-start;
        padding: 0 15px;
    }
    .faq-content-wrapper-light {
        padding: 0 15px;
    }
}








/* --- ================================================ --- */
/* --- NEW "CONTACT HUB" SECTION (LIGHT BG)             --- */
/* --- ================================================ --- */
.contact-hub-section {
    padding: 80px 0px 0px 0px;
    background-color: var(--bg-light); /* Light BG */
}

.contact-hub-section .container {
    max-width: 1100px;
    flex-direction: column;
}

.contact-hub-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.contact-hub-section .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
}
.contact-hub-section .section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
}

/* 2. The "Info Grid" */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-bottom: 60px;
}
.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.3s ease;
}
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-orange);
}
.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px auto;
}
.info-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
}
.info-card p, .info-card a {
    font-size: 1rem;
    color: var(--light-text);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}
.info-card:hover p, .info-card:hover a {
    color: var(--primary-orange);
}

/* 3. The "Action Form" */
.contact-form-card {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}
.contact-form-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form-card .form-group {
    margin-bottom: 20px;
}
.contact-form-card label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-text);
}
.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #f5f5f5;
    border-radius: 6px;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}
#contact-form select {
	width: 100%;
	padding: 14px 18px;
	font-size: 1rem;
	font-family: 'Poppins', sans-serif;
	border: 1px solid #f5f5f5;
	border-radius: 6px;
	background-color: var(--bg-light);
	transition: all 0.3s ease;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(245, 111, 33, 0.1);
}
.contact-form-card textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form-card .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
}
@media (max-width: 576px) {
    .contact-form-card {
        padding: 30px 25px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


.hero-form .form-group.file-upload label {
    padding-top: 12px;
    padding-bottom: 12px;
    border: 1px solid #ccc;
}

/* --- Horizontal Form Styling (UPDATED for Country Code & File Upload) --- */
.hero-form {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	background: #e3e3e3;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 20px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-form .form-group {
    flex: 1 1 calc(50% - 8px);
    position: relative;
}

.hero-form .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    z-index: 1;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 10px 15px 10px 45px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}
.fas.fa-comment-dots {
    top: 20% !important;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.3);
}

/* --- Phone Group Styling --- */
.phone-group .phone-fields {
    display: flex;
    gap: 5px;
    align-items: center;
}

.phone-group .country-code {
    width: 30%;
    padding-left: 10px;
    text-align: center;
    font-size: 15px;
}

.phone-group .phone-number {
    width: 70%;
    padding-left: 10px;
}

/* --- File Upload Field Styling --- */
.file-upload {
    display: flex;
    
    position: relative;
}

.file-upload .file-label {
    display: inline-block;
    background: #fff;
    padding: 15px 15px 15px 45px;
    border-radius: 6px;
    width: 100%;
    font-size: 16px;
    color: #555;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-align: left;
}

.file-upload .file-label:hover {
    border-color: var(--primary-orange);
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* --- Button --- */
.hero-form .btn {
    flex-basis: 100%;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 16px 30px;
    cursor: pointer;
    border: none;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hero-form .btn:hover {
    filter: brightness(1.1);
}

/* --- Responsive Adjustments --- */
/* This existing rule for mobile still works perfectly */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 0;
        padding: 80px 0;
    }
    .hero-content {
        text-align: center;
        max-width: 100%;
        align-items: center;
    }
    .hero-form {
        width: 100%;
    }
    .hero-form .form-group {
        flex-basis: 100%;
    }
    .phone-group .phone-fields {
        flex-direction: row;
    }
}




/* Popup Overlay */
.sticky-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.sticky-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Panel */
#sticky-popup-overlay .sticky-popup-panel {
  background: #fff;
  border-radius: 12px;
  padding: 25px 22px;
  max-width: 440px; /* Smaller width to prevent overflow */
  width: 100%;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  transition: transform 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
}
#sticky-popup-overlay .sticky-popup-overlay.active .sticky-popup-panel {
  transform: scale(1);
}

/* Close Button */
#sticky-popup-overlay .sticky-popup-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  opacity: 0.7;
}

/* Headings */
#sticky-popup-overlay .sticky-popup-panel h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
#sticky-popup-overlay .sticky-popup-panel p {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

/* Form Layout */
#sticky-popup-overlay #sticky-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#sticky-popup-overlay .form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

#sticky-popup-overlay .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#sticky-popup-overlay .form-group label {
  font-size: 0.8rem;
  margin-bottom: 4px;
  font-weight: 500;
  color: #333;
}

/* Input Styles */
#sticky-popup-overlay .form-group input,
#sticky-popup-overlay .form-group select,
#sticky-popup-overlay .form-group textarea {
  padding: 9px 10px;
  font-size: 0.85rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

#sticky-popup-overlay .form-group input:focus,
#sticky-popup-overlay .form-group select:focus,
#sticky-popup-overlay .form-group textarea:focus {
  border-color: #ff6f00;
  background: #fff;
  outline: none;
}

/* File Input (Compact) */
input[type="file"] {
    padding: 6px;
    background: #fff;
    font-size: 0.8rem;
    
}

/* Textarea */
#sticky-popup-overlay #sticky-message {
  height: 70px;
  resize: none;
}

/* Button */
#sticky-popup-overlay .btn-submit {
  background: #ff6f00;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 0;
  margin-top: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#sticky-popup-overlay .btn-submit:hover {
  background: #e65f00;
}

/* Responsive: Single-column layout on mobile */
@media (max-width: 480px) {
  #sticky-popup-overlay .form-row {
    flex-direction: column;
  }
  #sticky-popup-overlay .sticky-popup-panel {
    max-width: 95%;
    padding: 20px;
  }
}





/* --- ================================================ --- */
/* --- NEW "FLOATING OVERLAP" CONTACT (LIGHT BG)        --- */
/* --- ================================================ --- */
.contact-overlap-section {
    padding: 80px 0px 80px 0px;
    background-color: var(--bg-light); /* Light grey BG */
    overflow: hidden;
}

.contact-overlap-section .container {
    max-width: 1100px;
    flex-direction: column;
}

.contact-overlap-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.contact-overlap-section .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
}
.contact-overlap-section .section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
}

/* The Main Overlap Grid */
.contact-overlap-grid {
    display: grid;
    /* Asymmetrical: 2 parts form, 1 part info */
    grid-template-columns: 1.5fr 1fr; 
    align-items: center; /* Vertically centers the panels */
    position: relative;
}

/* Left Column: Form Panel */
.contact-form-panel-light {
    background: var(--white);
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 5; /* Sits behind the info panel */
}
.contact-form-panel-light h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}
.form-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form-panel-light .form-group {
    margin-bottom: 20px;
}
.contact-form-panel-light label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-text);
}
.contact-form-panel-light input,
.contact-form-panel-light select,
.contact-form-panel-light textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}
.contact-form-panel-light select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}
.contact-form-panel-light input:focus,
.contact-form-panel-light select:focus,
.contact-form-panel-light textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(245, 111, 33, 0.1);
}
.contact-form-panel-light textarea {
    resize: vertical;
    min-height: 100px;
}
.contact-form-panel-light .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    border: navajowhite;
}

/* Right Column: Info Panel */
.contact-info-panel-dark {
    background-color: #1a1a2e;
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10; /* Sits on top */
    /* This creates the overlap */
    margin-left: 20px; 
}
.contact-info-panel-dark .info-icon {
    margin: unset;
}
.contact-info-panel-dark h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}
.contact-info-panel-dark > p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}
.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background-color: rgba(245, 130, 32, 0.1);
    color: var(--primary-orange);
}
.info-text h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}
.info-text a, .info-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.info-text a:hover {
    color: var(--primary-orange);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .contact-overlap-grid {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 0;
    }
    .contact-info-panel-dark {
        margin-left: 0; /* Remove overlap */
        border-radius: 0 0 16px 16px;
    }
    .contact-form-panel-light {
        border-radius: 16px 16px 0 0;
    }
}
@media (max-width: 576px) {
    .contact-form-panel-light {
        padding: 30px 25px;
    }
    .form-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-info-panel-dark {
        padding: 30px 25px;
    }
}



/* === Compact, Responsive Home Contact Form === */
#home-contact-form {
  max-width: 720px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
}

/* Two-column layout */
#home-contact-form .form-row-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

#home-contact-form .form-group {
  flex: 1;
  margin-bottom: 14px;
}

#home-contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-text);
}

/* Inputs, Selects, and Textarea */
#home-contact-form input,
#home-contact-form textarea,
#home-contact-form select {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.95rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

#home-contact-form input:focus,
#home-contact-form textarea:focus,
#home-contact-form select:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 2px rgba(245, 111, 33, 0.15);
}

#home-contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* --- Dropdown Styling --- */
#home-contact-form select {
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  background-size: 16px;
  cursor: pointer;
}

#home-contact-form select option {
  color: #000;
  background: #fff;
}

/* --- Country Code + Phone --- */
.phone-flex {
  display: flex;
  gap: 6px;
}

#home-country-code {
  flex: 0 0 30%;
  text-align: center;
  padding: 10px;
}

#home-phone {
  flex: 1;
}

/* --- File Input Styled Like Other Fields --- */
.file-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  color: #666;
  font-size: 0.95rem;
  cursor: pointer;
}

.file-input-wrapper input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  top: 0;
  left: 0;
}

.file-input-wrapper:hover {
  border-color: var(--primary-orange);
  background: #fafafa;
}

/* Placeholder text for file input */
.file-placeholder {
  pointer-events: none;
  flex: 1;
}

/* --- Button --- */
#home-contact-form .btn-primary {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  background-color: var(--primary-orange);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

#home-contact-form .btn-primary:hover {
  background-color: #f8702a;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  #home-contact-form .form-row-2 {
    flex-direction: column;
  }

  #home-country-code {
    flex: 0 0 35%;
  }

  .file-input-wrapper {
    font-size: 0.9rem;
  }
}