/* CSS Common - Shared Site-Wide Styles */

/* Unified Typography: Poppins Only */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --bg-main: #F4F3EE;
    --bg-white: #FFFFFF;
    --bg-dark: #121212;
    --bg-soft: #EAE8E1;
    --primary-red: #A6192E;
    --text-main: #141414;
    --text-muted: #6B6A68;
    --text-light: #F4F3EE;
    --font-main: 'Poppins', -apple-system, sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-accent: 'Poppins', sans-serif;
    --font-sans: 'Poppins', sans-serif;
    --font-serif: 'Poppins', sans-serif;
    --font-title: 'Poppins', sans-serif;
    --accent-blue: #002AFF;
    --spacing-xl: 160px;
    --spacing-lg: 120px;
    --spacing-md: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 600;
}

body.loading {
    overflow: hidden;
}

/* Typography & Utilities */
.font-serif {
    font-family: var(--font-serif);
}

.serif-italic {
    font-family: var(--font-main);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.text-red {
    color: var(--primary-red);
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.bg-white {
    background-color: var(--bg-white);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.bg-soft {
    background-color: var(--bg-soft);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* Links & Buttons */
a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.hover-underline {
    position: relative;
    padding-bottom: 2px;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-underline:hover::after,
.hover-underline.active::after {
    width: 100%;
}

.btn-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--text-main);
    color: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.btn-circle::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-red);
    border-radius: 50%;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-circle:hover::before {
    transform: translateY(-100%);
    border-radius: 0;
}

.btn-circle .btn-text {
    position: relative;
    z-index: 1;
}

/* Standard Rectangular Button */
.btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 40px;
    border-radius: 12px;
    background: var(--primary-red);
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.btn-solid:hover {
    background: transparent;
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-5px);
}

.cta-group {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-main);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-logo {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.loader-line-wrap {
    width: 120px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.loader-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--primary-red);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0; /* Match compact design from the start */
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
    background: rgba(244, 243, 238, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px; /* Increased height for the square-ish logo details to be visible */
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled .logo-img {
    height: 80px; /* Keep same size as top */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-main);
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-toggle:hover {
    background: rgba(0, 0, 0, 0.03);
    transform: scale(1.1);
}

.menu-toggle .bar {
    width: 24px;
    height: 1.5px;
    background: var(--text-main);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 1px;
}

/* Staggered look */
.menu-toggle .bar:nth-child(2) {
    width: 14px;
    align-self: flex-start;
    margin-left: 12px;
}

/* Navbar Responsive Queries */
@media (max-width: 1024px) {
    .navbar {
        padding: 20px 0;
    }
    
    .navbar.scrolled {
        padding: 12px 0;
    }

    .logo-img {
        height: 55px; /* Slightly smaller on mobile */
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #f4f3ee; /* Match var(--bg-main) */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        transform: translateY(-20px);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        font-family: var(--font-serif);
        font-size: 32px;
        font-weight: 300;
        letter-spacing: -1px;
        color: var(--text-main);
    }

    .nav-right {
        gap: 20px;
    }

    .menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .navbar .btn-circle {
        display: none; /* Hide primary CTA on mobile nav to avoid clutter */
    }

    /* Menu Toggle Active Animation (Two Bars) */
    .menu-toggle.active .bar:nth-child(1) {
        width: 18px;
        transform: translateY(3.5px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        width: 18px;
        align-self: center;
        margin-left: 0;
        transform: translateY(-3.5px) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Global Section Framework */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 40px;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
}

.line-wrap {
    overflow: hidden;
}

.line {
    transform: translateY(105%);
    line-height: 1.1;
    display: block;
    padding-bottom: 20px;
}

/* Shared Page Components */
.hero-subpage {
    height: 70vh;
    min-height: 600px;
}

.process-track {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 80px;
}

.process-card {
    flex: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
    transition: border-color 0.4s;
}

.process-card:hover {
    border-color: var(--primary-red);
}

.process-num {
    display: block;
    font-size: 16px;
    color: var(--primary-red);
    margin-bottom: 30px;
}

.process-card h4 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.process-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.footer {
    padding: 60px 0 50px;
    background-color: transparent;
    color: var(--text-main);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-main-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-col {
    padding: 40px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-col:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border-color: var(--primary-red);
}

.footer-logo {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-main);
    display: block;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.footer-mission {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 380px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-main);
    opacity: 0.7;
    transition: all 0.4s ease;
    padding: 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

.social-link:hover {
    opacity: 1;
    color: var(--primary-red);
    border-color: var(--primary-red);
    background: white;
}

.social-link:hover {
    opacity: 1;
    color: var(--primary-red);
}

.footer-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    color: var(--primary-red);
    margin-bottom: 25px;
    font-weight: 700;
    display: block;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 15px;
    transition: all 0.4s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 8px;
}

.contact-card {
    margin-top: 30px;
    padding: 60px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.08);
}

.contact-info-left {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--primary-red);
    color: white;
    transform: rotate(-5deg);
}

.contact-detail-wrap h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-detail-wrap p,
.contact-detail-wrap a {
    font-size: 18px;
    color: var(--text-main);
    line-height: 1.5;
    font-weight: 500;
}

.contact-detail-wrap a {
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-wrap a:hover {
    color: var(--primary-red);
}

.contact-card-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 280px;
}

.btn-contact-action {
    height: 60px;
    width: 100%;
    border-radius: 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-contact-action:hover {
    background: var(--text-main);
    color: white;
    border-color: var(--text-main);
    transform: translateX(10px);
}

.btn-contact-action.primary {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.btn-contact-action.primary:hover {
    background: var(--text-main);
}

.inquiry-section {
    padding: 120px 0 100px; /* Added bottom padding for spacing */
    background: radial-gradient(circle at top right, #FFFFFF 0%, var(--bg-soft) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.inquiry-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}


.inquiry-content h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
}

.inquiry-content p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-form-wrap {
    background: white;
    padding: 60px;
    border-radius: 48px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-form-wrap:hover {
    transform: scale(1.02);
}

.inquiry-section .footer-label {
    color: var(--primary-red);
}

.inquiry-section .footer-form input,
.inquiry-section .footer-form textarea {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-main);
}

.inquiry-section .footer-form input:focus,
.inquiry-section .footer-form textarea:focus {
    border-color: var(--primary-red);
}

.inquiry-section .footer-form input::placeholder,
.inquiry-section .footer-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

/* --- Premium Floating Label Form System --- */
.form-group-f {
    position: relative;
    margin-bottom: 25px;
}

.form-group-f input, 
.form-group-f textarea,
.form-group-f select {
    width: 100%;
    background: #F9F8F6;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    padding: 22px 20px 10px !important;
    font-size: 15px;
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    outline: none !important;
    font-family: inherit;
    appearance: none;
}

.form-group-f label {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group-f input:focus ~ label, 
.form-group-f input:not(:placeholder-shown) ~ label,
.form-group-f textarea:focus ~ label, 
.form-group-f textarea:not(:placeholder-shown) ~ label,
.form-group-f select:focus ~ label,
.form-group-f select:valid ~ label {
    top: 8px;
    font-size: 10px;
    color: var(--primary-red);
    opacity: 1;
}

.form-group-f input:focus, 
.form-group-f textarea:focus,
.form-group-f select:focus {
    background: white;
    border-color: var(--primary-red);
    box-shadow: 0 10px 25px rgba(166, 25, 46, 0.04);
}

.btn-submit {
    height: 64px;
    width: 100%;
    border-radius: 100px;
    margin-top: 10px;
    background: var(--text-main);
    color: white;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(166, 25, 46, 0.2);
}

.footer-bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.scroll-top {
    background: none;
    border: none;
    color: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s;
}

.scroll-top:hover {
    color: var(--text-light);
}

/* Fluid Signature Unique Footer */
.minimalist-footer {
    padding: 100px 0 40px;
    background-color: var(--bg-main); /* Matches body background */
    color: var(--text-main);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer-signature-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5vw;
    width: 100%;
}

.footer-main-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Ensure all columns start at the same top line */
    gap: 80px;
    margin-bottom: 80px;
}

/* Col 1: Brand Identity */
.footer-brand-zone {
    flex: 1.5;
    max-width: 480px;
}

.minimalist-footer .footer-logo {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 25px;
    letter-spacing: -2px;
    display: inline-block;
}

.minimalist-footer .footer-mission {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-main);
    opacity: 0.8;
    font-weight: 300;
}

/* Col 2: Navigation Hub */
.footer-nav-hub {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.nav-hub-col h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted); /* Changed to muted to match contact profile */
    margin-bottom: 30px;
    font-weight: 700;
}

.nav-hub-list {
    list-style: none;
    padding: 0;
}

.nav-hub-list li {
    margin-bottom: 15px;
}

.nav-hub-list a {
    font-size: 14px;
    color: var(--text-main);
    opacity: 0.5;
    transition: all 0.4s ease;
    text-decoration: none;
}

.nav-hub-list a:hover {
    opacity: 1;
    color: var(--primary-red);
    padding-left: 10px;
}

/* Col 3: Contact Profile */
.footer-contact-profile {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-profile-item h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 30px; /* Increased to match nav hub columns */
    font-weight: 700;
}

.contact-profile-item p,
.contact-profile-item a {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.5;
    text-decoration: none;
    font-weight: 500;
}

.contact-profile-item a:hover {
    color: var(--primary-red);
}

/* Final Interaction Bar */
.footer-interaction-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.bar-left-zone {
    display: flex;
    align-items: center;
    gap: 50px;
}

.copyright-minimal {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.social-links-minimal {
    display: flex;
    gap: 25px;
}

.social-links-minimal a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    opacity: 0.4;
    transition: all 0.3s ease;
    font-weight: 700;
}

.social-links-minimal a:hover {
    opacity: 1;
    color: var(--primary-red);
}

.bar-right-actions {
    display: flex;
    gap: 15px;
}

.action-btn-pill {
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-btn-pill.primary {
    background: var(--primary-red);
    color: #FFFFFF;
}

.action-btn-pill.secondary {
    background: #FFFFFF;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.action-btn-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.action-btn-pill.primary:hover {
    background: #8e1527;
}

@media(max-width: 1200px) {
    .footer-main-layout {
        flex-direction: column;
        gap: 60px;
    }

    .footer-nav-hub {
        width: 100%;
    }

    .inquiry-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .inquiry-content {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media(max-width: 768px) {
    .minimalist-footer {
        padding: 60px 0 40px;
    }

    .footer-nav-hub {
        flex-direction: column;
        gap: 40px;
    }

    .footer-interaction-bar {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }

    .bar-left-zone {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .bar-right-actions {
        flex-direction: column;
        width: 100%;
    }

    .action-btn-pill {
        width: 100%;
        justify-content: center;
    }

    .footer-form-wrap {
        padding: 40px 25px;
        border-radius: 30px;
    }

    .inquiry-section {
        padding: 80px 0;
    }
}

@media(max-width: 1200px) {
    .footer-top-layout {
        grid-template-columns: 1fr repeat(2, 1fr);
        gap: 60px;
    }
}

@media(max-width: 991px) {
    .footer-top-layout {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    .minimalist-footer {
        padding: 80px 0 40px;
    }

    .footer-top-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-bottom-bar-clean {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom-bar-clean::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-utility-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media(max-width: 1200px) {
    .footer-nav-row {
        flex: 1;
        width: 100%;
    }
}

@media(max-width: 991px) {
    .footer-main-row {
        flex-direction: column;
        gap: 60px;
    }
    
    .footer-brand-col {
        max-width: 100%;
    }
}

@media(max-width: 768px) {
    .minimalist-footer {
        padding: 60px 0 30px;
    }

    .footer-nav-row {
        flex-direction: column;
        gap: 40px;
    }

    .footer-fluid-bottom {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom-controls {
        flex-direction: column;
        gap: 20px;
    }
}