/* ============================================
   SUB ZERO WEBSITE - CSS STYLES
   Exact Figma Design Match
   ============================================ */

:root {
    --primary: #005292;
    --white: #ffffff;
    --black: #000000;
    --grey: #575656;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--black);
    width: 1920px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 180px;
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 14px 24px 20px;
    background: var(--primary);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    border: 2px solid var(--white);
}

.floating-btn.chat-now {
    border-bottom: 2px solid var(--white);
}

.floating-btn:hover {
    background: #003d6d;
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
    transform: rotate(180deg);
}

/* Desktop/Mobile visibility helpers */
.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

/* Mobile WhatsApp floating button - hidden on desktop */
.mobile-whatsapp {
    display: none;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.3s ease;
}

.header.scrolled {
    background: var(--primary);
}

.nav {
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 247px;
    height: 102px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 56px;
}

.nav-item a {
    font-weight: 300;
    font-size: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.nav-item.active a {
    font-weight: 600;
}

.nav-item a:hover {
    opacity: 0.8;
}

.chevron {
    width: 24px;
    height: 24px;
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 350px;
    padding: 16px 0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.search-btn {
    width: 72px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.menu-btn {
    width: 88px;
    height: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.menu-btn span {
    width: 40px;
    height: 4px;
    background: var(--white);
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.4s;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.mobile-logo {
    width: 150px;
}

.close-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
}

.mobile-nav {
    padding: 24px;
}

.mobile-nav > li {
    border-bottom: 1px solid #eee;
}

.mobile-nav > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-size: 25px;
    font-weight: 500;
    color: var(--black);
}

.mobile-nav svg {
    width: 28px;
    height: 28px;
    stroke: var(--black);
    transition: transform 0.3s;
}

.mobile-nav .has-submenu.active svg {
    transform: rotate(180deg);
}

.submenu {
    display: none;
    padding-bottom: 16px;
}

.submenu.active {
    display: block;
}

.submenu li a {
    display: block;
    padding: 14px 0 14px 16px;
    font-size: 22px;
    color: var(--grey);
}

/* ============================================
   SEARCH DROPDOWN
   ============================================ */
.search-wrapper {
    position: relative;
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    width: 400px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 200;
    overflow: hidden;
    border-radius: 8px;
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-input-wrap {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    gap: 12px;
}

.search-input-icon {
    width: 20px;
    height: 20px;
    stroke: var(--grey);
    flex-shrink: 0;
}

.search-dropdown .search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    background: transparent;
}

.search-dropdown .search-input::placeholder {
    color: #999;
}

.search-suggestions {
    max-height: 360px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.search-suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    transition: background 0.15s, color 0.15s;
}

.search-suggestion-item:hover,
.search-suggestion-item.active {
    background: #f0f6fc;
    color: var(--primary);
}

.search-no-results {
    padding: 24px 20px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--grey);
    list-style: none;
}

/* ============================================
   BANNER
   ============================================ */
.banner {
    position: relative;
    width: 100%;
    height: 1080px;
    background: var(--black);
    overflow: hidden;
}

.banner-slides {
    position: absolute;
    inset: 0;
    display: flex;
}

.slide {
    width: 33.3334%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide:first-child img {
    object-position: left center;
}

.slide:last-child img {
    object-position: right center;
}

.banner-video-mobile {
    display: none;
}

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

.banner-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 12%, rgba(0,0,0,0) 50%);
    pointer-events: none;
}

.banner-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 25%);
    pointer-events: none;
}

.banner-title {
    position: absolute;
    bottom: 120px;
    left: 180px;
    right: 180px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 72px;
    color: var(--white);
    line-height: 1.2;
    max-width: 1560px;
}


/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 56px;
    color: var(--black);
    text-transform: uppercase;
    line-height: 1;
}

/* ============================================
   WHO WE ARE
   ============================================ */
.who-we-are {
    padding-top: 120px;
}

.who-we-are-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.who-we-are-content {
    max-width: 928px;
}

.title-underline {
    width: 149px;
    height: 2px;
    background: var(--primary);
    margin: 24px 0 40px;
}

.section-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--grey);
    line-height: 1.6;
}

.who-we-are .section-text + .section-text {
    margin-top: 24px;
}

.who-we-are-logo img {
    width: 491px;
    height: 203px;
    object-fit: contain;
}

/* ============================================
   WHAT WE DO
   ============================================ */
.what-we-do-grid {
    display: flex;
    gap: 56px;
    margin-top: 40px;
    align-items: stretch;
}

.what-we-do-image {
    flex-shrink: 0;
    width: 752px;
    overflow: hidden;
}

.what-we-do-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-we-do-content {
    max-width: 752px;
}

.what-we-do-content p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.content-underline {
    width: 149px;
    height: 2px;
    background: var(--primary);
    margin: 30px 0;
}

/* ============================================
   PRODUCT HIGHLIGHTS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.product-card {
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 24px;
}

.product-image {
    width: 100%;
    height: 286px;
    overflow: hidden;
    margin-bottom: 16px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
    flex: 1;
}

.product-type {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--grey);
    margin-bottom: auto;
    padding-bottom: 24px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 24px;
    border-radius: 24px;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-primary:hover {
    background: #003d6d;
}

/* ============================================
   OUR CLIENTS
   ============================================ */
.our-clients .section-title {
    margin-bottom: 40px;
}

.clients-wrapper {
    overflow: hidden;
    padding: 0 180px;
}

.clients-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll 100s linear infinite;
    margin-bottom: 32px;
}

.clients-track.track-2 {
    animation: scroll-reverse 100s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.client {
    flex-shrink: 0;
    width: 226px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.client img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.divider {
    flex-shrink: 0;
    width: 2px;
    height: 32px;
    background: var(--primary);
    margin: 0 26px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px;
    margin-top: 60px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.feature-icon {
    width: 218px;
    height: 218px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.feature-icon img {
    width: 198px;
    height: 198px;
    object-fit: contain;
}

.feature-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--grey);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 80px 0;
}

.testimonials .section-title {
    margin-bottom: 60px;
}

.testimonial-carousel {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 60px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(50% - 30px);
    max-width: calc(50% - 30px);
    border-left: 4px solid var(--primary);
    padding: 40px 40px 40px 50px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.testimonial-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.testimonial-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--black);
    margin-bottom: 4px;
}

.testimonial-company {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--grey);
    margin-bottom: 24px;
}

.testimonial-quote {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.7;
    color: var(--black);
}

.testimonial-nav {
    display: flex;
    gap: 16px;
    margin-top: 48px;
}

.testimonial-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-btn svg {
    width: 24px;
    height: 24px;
}

.testimonial-btn.prev {
    background: transparent;
    border: 2px solid var(--grey);
    color: var(--grey);
}

.testimonial-btn.prev:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

.testimonial-btn.next {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--white);
}

.testimonial-btn.next:hover:not(:disabled) {
    background: #003d6e;
    border-color: #003d6e;
}

.testimonial-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ============================================
   FAQ
   ============================================ */
.faq .section-title {
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    border-bottom: 2px solid rgba(0,0,0,0.2);
    padding-bottom: 24px;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
}

.faq-num {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--black);
}

.faq-text {
    flex: 1;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--black);
}

.faq-toggle {
    width: 44px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 16px;
}

.faq-answer p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--grey);
    line-height: 1.6;
    max-width: 1358px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary);
    padding: 72px 0;
}

.footer-top {
    display: flex;
    gap: 24px;
}

.footer-brand {
    width: 768px;
    flex-shrink: 0;
}

.footer-desc {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 24px;
}

.footer-local {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 116px;
}

.career-btn {
    display: inline-flex;
    align-items: center;
    gap: 43px;
    background: var(--white);
    padding: 12px 12px 12px 24px;
    border-radius: 110px;
}

.career-btn span {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--primary);
}

.btn-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 24px;
    border-radius: 36px;
    transition: background 0.3s;
}

.btn-enquire:hover {
    background: #003d6d;
}

/* Careers Application Modal */
.careers-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.careers-overlay.active {
    opacity: 1;
    visibility: visible;
}

.careers-modal {
    background: #f2f2f2;
    border-radius: 12px;
    width: 1480px;
    max-width: 90%;
    padding: 48px 56px 56px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.careers-overlay.active .careers-modal {
    transform: translateY(0);
}

.careers-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.careers-modal-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 36px;
    font-style: italic;
    color: var(--primary);
}

.careers-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #999;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s;
}

.careers-modal-close:hover {
    border-color: var(--primary);
}

.careers-modal-close svg {
    width: 16px;
    height: 16px;
    stroke: #999;
    transition: stroke 0.3s;
}

.careers-modal-close:hover svg {
    stroke: var(--primary);
}

.careers-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 64px;
}

.careers-field {
    position: relative;
}

.careers-field input,
.careers-field select {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 2px solid #ccc;
    background-color: transparent;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--black);
    outline: none;
    border-radius: 0;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.careers-field input::placeholder {
    color: #999;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 20px;
}

.careers-field input:focus,
.careers-field select:focus {
    border-bottom-color: var(--primary);
}

.careers-field select {
    color: #999;
    cursor: pointer;
    padding-right: 32px;
}

.careers-field select.has-value {
    color: var(--black);
}

.careers-field-select {
    position: relative;
}

.careers-field-select::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #999;
    pointer-events: none;
}

.careers-field-file {
    position: relative;
}

.careers-field-file input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.careers-file-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 2px solid #ccc;
    transition: border-color 0.3s;
}

.careers-field-file:hover .careers-file-label {
    border-bottom-color: var(--primary);
}

.careers-file-label span {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #999;
}

.careers-file-label span.has-file {
    color: var(--black);
}

.careers-file-label svg {
    width: 24px;
    height: 24px;
    stroke: #999;
    flex-shrink: 0;
}

.careers-file-hint {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #999;
    margin-top: 6px;
}

.careers-submit-wrap {
    grid-column: 1 / 2;
    margin-top: 8px;
}

.careers-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 22px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: background 0.3s;
}

.careers-submit:hover {
    background: #003d6d;
}

.footer-links {
    display: flex;
    gap: 82px;
    flex: 1;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-col ul {
    list-style-type: disc;
    padding-left: 20px;
}

.footer-col ul li {
    margin-bottom: 8px;
    color: var(--white);
}

.footer-col ul li a {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--white);
    text-decoration: none;
    line-height: 38px;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 0.8;
}

.footer-divider {
    width: 100%;
    height: 2px;
    background: var(--white);
    margin: 56px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-bottom-left {
    flex: 1;
}

.footer-bottom-left h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-addresses {
    display: flex;
    gap: 0;
}

.footer-address-col {
    flex: 1;
    padding-left: 24px;
    border-left: 2px solid var(--white);
}

.footer-address-col:first-child {
    padding-left: 0;
    border-left: none;
    padding-right: 40px;
}

.address-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-address-col p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-address-col a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-address-col a:hover {
    opacity: 0.8;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.social-icons {
    display: flex;
    gap: 60px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    color: var(--white);
    transition: opacity 0.3s;
}

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

.social-icons img {
    width: 42px;
    height: 42px;
}

.copyright {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--white);
}

/* ============================================
   MOBILE STYLES (max-width: 768px)
   Based on Figma mobile design - 440px width
   ============================================ */
@media screen and (max-width: 768px) {
    /* Reset body for mobile */
    html {
        max-width: 100vw;
    }

    body {
        width: 100%;
        max-width: 100vw;
        min-width: unset;
        overflow-x: hidden;
        overflow-wrap: break-word;
        word-wrap: break-word;
        padding-bottom: 40px; /* Space for floating CTA */
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    img, video, iframe, table {
        max-width: 100%;
    }

    /* Desktop/Mobile visibility */
    .mobile-only {
        display: flex;
    }

    .desktop-only {
        display: none !important;
    }

    /* ============================================
       MOBILE FLOATING CTA
       ============================================ */
    .floating-cta {
        position: fixed;
        right: auto;
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
        width: 100%;
        max-width: 440px;
        z-index: 1000;
        display: flex;
        flex-direction: row;
    }

    .floating-btn {
        flex: 1;
        padding: 10px;
        font-size: 12px;
        writing-mode: horizontal-tb;
        transform: none;
    }

    .floating-btn.enquire-now {
        border-bottom: none;
        border-left: 1px solid var(--white);
    }

    .floating-btn .whatsapp-icon {
        display: none;
        transform: none;
    }

    /* Mobile WhatsApp floating button */
    .mobile-whatsapp {
        display: none;
        position: fixed;
        right: 16px;
        bottom: 80px; /* Above the floating CTA bar */
        width: 40px;
        height: 40px;
        background: #25D366;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .mobile-whatsapp svg {
        width: 24px;
        height: 24px;
        fill: white;
    }

    /* ============================================
       MOBILE HEADER / NAVIGATION
       ============================================ */
    .header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        z-index: 100;
    }

    .nav {
        padding: 32px 16px;
    }

    .logo img {
        width: 139px;
        height: 57px;
    }

    .nav-menu {
        display: none;
    }

    .nav-actions {
        gap: 12px;
    }

    .search-btn {
        width: 36px;
        height: 24px;
    }

    .search-btn svg {
        width: 24px;
        height: 24px;
    }

    .search-wrapper {
        position: static;
    }

    .search-dropdown {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .menu-btn {
        width: 44px;
        height: 38px;
        gap: 7px;
    }

    .menu-btn span {
        width: 30px;
        height: 3px;
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        height: 100%;
        width: 100%;
    }

    .mobile-menu-header {
        padding: 32px 16px;
    }

    .mobile-logo {
        width: 139px;
    }

    .mobile-nav > li > a {
        padding: 16px 0;
        font-size: 18px;
    }

    .mobile-nav svg {
        width: 20px;
        height: 20px;
    }

    .submenu li a {
        padding: 10px 0 10px 16px;
        font-size: 16px;
    }

    /* ============================================
       MOBILE BANNER
       ============================================ */
    .banner {
        height: 545px;
    }

    .banner-slides {
        display: none;
    }

    .banner-video-mobile {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        background: var(--black);
    }

    .banner-gradient-bottom {
        background: linear-gradient(to top, rgba(0,0,0,1) 12.22%, rgba(0,0,0,0) 38.35%);
        z-index: 3;
    }

    .banner-gradient-top {
        background: linear-gradient(to bottom, rgba(0,0,0,1) 13.7%, rgba(0,0,0,0) 20.55%);
        z-index: 3;
    }

    .banner-title {
        bottom: 32px;
        left: 16px;
        right: 16px;
        font-size: 32px;
        line-height: 1;
        z-index: 4;
    }


    /* ============================================
       MOBILE SECTIONS
       ============================================ */
    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        line-height: 1;
    }

    /* ============================================
       MOBILE WHO WE ARE
       ============================================ */
    .who-we-are {
        padding-top: 60px;
    }

    .who-we-are-grid {
        flex-direction: column;
        gap: 32px;
    }

    .who-we-are-content {
        max-width: 100%;
    }

    .title-underline {
        margin: 16px 0 24px;
    }

    .section-text {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
    }

    .who-we-are-logo {
        width: 204px;
    }

    .who-we-are-logo img {
        width: 204px;
        height: 85px;
    }

    /* ============================================
       MOBILE WHAT WE DO
       ============================================ */
    .what-we-do-grid {
        flex-direction: column;
        gap: 24px;
        margin-top: 24px;
    }

    .what-we-do-image {
        width: 100%;
        height: 176px;
    }

    .what-we-do-content {
        max-width: 100%;
    }

    .what-we-do-content p {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .content-underline {
        margin: 20px 0;
    }

    /* ============================================
       MOBILE PRODUCT HIGHLIGHTS
       ============================================ */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 24px;
    }

    .product-card {
        padding-bottom: 24px;
    }

    .product-image {
        width: 100%;
        height: 192px;
        margin-bottom: 16px;
    }

    .product-name {
        font-size: 22px;
        margin-bottom: 16px;
        line-height: 1.1;
    }

    .product-type {
        font-family: 'Outfit', sans-serif;
        font-size: 16px;
        font-weight: 400;
        padding-bottom: 16px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-family: 'Outfit', sans-serif;
        font-size: 16px;
        font-weight: 400;
    }

    /* ============================================
       MOBILE OUR CLIENTS
       ============================================ */
    .our-clients .section-title {
        margin-bottom: 24px;
    }

    .clients-wrapper {
        padding: 0;
    }

    .clients-track {
        animation-duration: 100s;
        margin-bottom: 12px;
    }

    .clients-track.track-2 {
        animation-duration: 100s;
    }

    .client {
        width: 95px;
        height: 40px;
        padding: 5px;
    }

    .divider {
        width: 1px;
        height: 14px;
        margin: 0 12px;
    }

    /* ============================================
       MOBILE WHY CHOOSE US
       ============================================ */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .feature {
        flex-direction: row;
        text-align: left;
        gap: 16px;
        justify-content: flex-start;
    }

    .feature-icon {
        width: 100px;
        height: 100px;
        padding: 5px;
        flex-shrink: 0;
    }

    .feature-icon img {
        width: 90px;
        height: 90px;
    }

    .feature-text {
        font-family: 'Outfit', sans-serif;
        font-size: 16px;
        font-weight: 500;
    }

    /* ============================================
       MOBILE TESTIMONIALS
       ============================================ */
    .testimonials {
        padding: 40px 0;
    }

    .testimonials .section-title {
        margin-bottom: 24px;
    }

    .testimonial-track {
        gap: 16px;
    }

    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
        padding: 20px 20px 20px 24px;
        border-left-width: 3px;
    }

    .testimonial-photo {
        width: 64px;
        height: 64px;
        margin-bottom: 12px;
    }

    .testimonial-name {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .testimonial-company {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .testimonial-quote {
        font-size: 16px;
        line-height: 1.6;
    }

    .testimonial-nav {
        margin-top: 24px;
        gap: 12px;
    }

    .testimonial-btn {
        width: 40px;
        height: 40px;
    }

    .testimonial-btn svg {
        width: 18px;
        height: 18px;
    }

    /* ============================================
       MOBILE FAQ
       ============================================ */
    .faq .section-title {
        margin-bottom: 24px;
        text-transform: none;
    }

    .faq-list {
        gap: 16px;
    }

    .faq-item {
        padding-bottom: 16px;
    }

    .faq-question {
        gap: 8px;
        align-items: flex-start;
    }

    .faq-num {
        font-size: 22px;
        min-width: 30px;
    }

    .faq-text {
        font-size: 22px;
        line-height: 1.2;
    }

    .faq-toggle {
        width: 34px;
        height: 34px;
    }

    .faq-toggle svg {
        width: 20px;
        height: 20px;
    }

    .faq-answer p {
        font-size: 16px;
        line-height: 1.5;
    }

    /* ============================================
       MOBILE FOOTER
       ============================================ */
    .footer {
        padding: 32px 0;
        padding-bottom: 80px; /* Space for floating CTA */
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
    }

    .footer-brand {
        width: 100%;
    }

    .footer-desc {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-local {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .career-btn {
        gap: 43px;
        padding: 12px 12px 12px 24px;
    }

    .career-btn span {
        font-size: 16px;
    }

    .btn-enquire {
        padding: 12px 24px;
        font-size: 16px;
    }

    .footer-links {
        flex-direction: column;
        gap: 56px;
    }

    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-col ul li a {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-divider {
        margin: 53px 0 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom-left h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-addresses {
        flex-direction: column;
        gap: 24px;
    }

    .footer-address-col {
        padding-left: 16px;
        border-left: 2px solid var(--white);
    }

    .footer-address-col:first-child {
        padding-left: 16px;
        padding-right: 0;
        border-left: 2px solid var(--white);
    }

    .address-heading {
        font-size: 16px;
    }

    .footer-address-col p {
        font-size: 16px;
    }

    .footer-bottom-right {
        align-items: flex-start;
        gap: 32px;
    }

    .social-icons {
        gap: 24px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
    }

    .social-icons img {
        width: 32px;
        height: 32px;
    }

    .copyright {
        font-size: 14px;
    }

    /* ============================================
       MOBILE CAREERS MODAL
       ============================================ */
    .careers-overlay {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        align-items: flex-start;
        padding: 20px 0;
    }

    .careers-modal {
        width: 100%;
        max-width: 95%;
        padding: 32px 24px 36px;
        max-height: none;
        overflow: visible;
        margin: auto;
    }

    .careers-modal-header {
        margin-bottom: 24px;
    }

    .careers-modal-title {
        font-size: 24px;
    }

    .careers-modal-close {
        width: 32px;
        height: 32px;
    }

    .careers-modal-close svg {
        width: 14px;
        height: 14px;
    }

    .careers-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .careers-field input,
    .careers-field select {
        font-size: 16px;
        padding: 12px 0;
        border-radius: 0;
        background-color: transparent;
    }

    .careers-field select {
        -webkit-appearance: menulist;
        -moz-appearance: menulist;
        appearance: auto;
        border: none;
        border-bottom: 2px solid #ccc;
        padding-right: 0;
    }

    .careers-field-select::after {
        display: none;
    }

    .careers-field input::placeholder {
        font-size: 16px;
    }

    .careers-file-label span {
        font-size: 16px;
    }

    .careers-file-label {
        padding: 12px 0;
    }

    .careers-file-hint {
        font-size: 12px;
    }

    .careers-submit-wrap {
        grid-column: 1;
        margin-top: 4px;
    }

    .careers-submit {
        font-size: 18px;
        padding: 14px;
    }
}
