/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #8c3236; /* Deep red/brown */
    --secondary-color: #cfa052; /* Gold */
    --text-color: #555555;
    --heading-color: #222222;
    --light-bg: #f7f7f7;
    --dark-bg: #303030;
    --darker-bg: #222222;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Typography Helpers */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.section-title span {
    color: var(--secondary-color);
}
.section-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-body);
    border-radius: 4px;
    gap: 10px;
}

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

.btn-primary:hover {
    background-color: #6d2427;
    color: var(--white);
}

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

.btn-secondary:hover {
    background-color: #b38b47;
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header */
header {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: top 0.3s ease;
}

header.sticky {
    position: fixed;
    top: 0;
    animation: slideDown 0.3s ease-in-out forwards;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

header.sticky .header-container {
    padding: 12px 32px;
    border-radius: 0 0 12px 12px;
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

header.sticky .logo img,
header.sticky .header-logo-img {
    height: 58px;
    max-height: 58px;
}

.header-container {
    position: relative;
    background-color: var(--white);
    border-radius: 12px;
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.header-left {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.request-btn {
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img,
.header-logo-img {
    height: 75px;
    max-height: 75px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 1;
}
.logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--text-color);
    text-transform: uppercase;
    margin-top: 5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Sections (General) */
.page-hero {
    background-color: var(--dark-bg);
    padding: 80px 0;
    color: var(--white);
}
.page-hero .breadcrumb {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}
.page-hero .breadcrumb span {
    color: var(--white);
}
.page-hero-title {
    font-size: 3.5rem;
    color: var(--white);
    max-width: 600px;
}
.page-hero-title span {
    color: var(--secondary-color);
}
.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.page-hero-image img {
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
}

/* specific Home Hero */
.home-hero {
    position: relative;
    background-image: url('../../images/hero_bg.webp');
    background-size: cover;
    background-position: center;
    padding: 180px 0;
    color: var(--white);
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.home-hero .container {
    position: relative;
    z-index: 2;
}

.home-hero h1 {
    font-size: 4rem;
    color: var(--white);
    max-width: 700px;
    margin-bottom: 20px;
}

.home-hero p {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

/* Strategic Trade / Generic 2-col */
.split-section {
    background-color: var(--light-bg);
}

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

.split-img {
    position: relative;
    padding: 20px 20px 0 0;
}

.split-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 30%;
    border-top: 3px solid var(--secondary-color);
    border-left: 3px solid var(--secondary-color);
}

.split-img::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 30%;
    height: 30%;
    border-bottom: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.split-img img {
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
}

/* Cards Portfolio (Home & Services) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.card {
    background-color: var(--white);
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border-top: 3px solid var(--primary-color);
    transition: var(--transition);
}

.card-dark {
    background-color: var(--dark-bg);
    color: var(--white);
    border-top: none;
}
.card-dark .card-title {
    color: var(--white);
}
.card-dark p {
    color: #ccc;
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.card-dark .card-icon {
    background: rgba(255,255,255,0.1);
    color: var(--secondary-color);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Advantage Section (4 cols) */
.four-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.icon-box {
    text-align: left;
}

.icon-box-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.icon-box-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--heading-color);
}
.icon-box p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Commitment Section */
.commitment {
    background-color: var(--dark-bg);
    color: var(--white);
    text-align: center;
}

.commitment .section-title {
    color: var(--white);
}

.commitment-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.commitment-header::before, .commitment-header::after {
    content: '';
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    width: 250px;
}

.commitment-icon {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.commitment-text {
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: #ccc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

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

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
}

/* CTA Section */
.cta-overlay {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.cta-box {
    background-color: var(--white);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Products Page specific */
.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.product-card {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.product-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.product-card-body {
    padding: 30px;
}
.product-card ul {
    list-style: none;
    margin-top: 20px;
}
.product-card ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.product-card ul li i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.general-trade {
    background-color: var(--dark-bg);
    color: var(--white);
}
.general-trade-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.trade-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.trade-feature {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}
.trade-feature i {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.trade-feature h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0;
}
.trade-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}
.trade-img-large {
    grid-column: 1 / 3;
    grid-row: 1;
}
.trade-img-red {
    background: var(--primary-color);
}
.trade-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-assets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.asset-item {
    position: relative;
    height: 250px;
}
.asset-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.asset-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    margin: 0;
    font-weight: 500;
}

/* About Page Specific */
.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.mission-box {
    padding: 40px;
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.vision-box {
    padding: 40px;
    background: var(--dark-bg);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.vision-box i.bg-icon {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10rem;
    color: rgba(255,255,255,0.03);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.value-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.value-card .icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--heading-color);
}
.value-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
}
.presence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.presence-list {
    margin-top: 30px;
}
.presence-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.presence-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}
.presence-item h4 {
    margin-bottom: 5px;
}

/* Services Specific */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.philosophy-grid img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.philosophy-list {
    list-style: none;
    margin-top: 20px;
}
.philosophy-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}
.philosophy-list li i {
    color: var(--secondary-color);
    margin-top: 4px;
}
.red-banner {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}
.red-banner h2 {
    color: var(--white);
}

/* Contact Specific */
.contact-hero {
    background-image: url('../../images/hero_bg.webp'); /* fallback */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 150px 0;
    text-align: center;
    color: var(--white);
}
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}
.contact-hero .container {
    position: relative;
    z-index: 2;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.info-card {
    background: var(--white);
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.info-card i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.info-card h4 {
    font-size: 1.1rem;
}
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--heading-color);
}
.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    background: #fafafa;
    font-family: var(--font-body);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.map-wrapper {
    position: relative;
    background: #eaeaea;
    height: 100%;
    min-height: 400px;
}
.map-info-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.map-info-box h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    color: #999;
    padding: 60px 0 20px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    max-width: 300px;
    font-size: 0.85rem;
}

.footer-title {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #999;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
}

.bg-background {
    color: #ffffff;
}
li.mobile-cta-item a {
    color:#ffffff;
}


/* Responsive */
@media (max-width: 992px) {
    .split-grid, .page-hero-grid, .contact-form-grid, .philosophy-grid, .presence-grid, .about-mission-grid {
        grid-template-columns: 1fr;
    }
    .cards-grid, .four-cols, .product-cards, .featured-assets-grid, .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }
    .header-right {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        top: 0;
    }
    .header-container {
        border-radius: 0;
    }
    .header-center {
        display: contents;
    }
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 70px 20px 40px 20px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        border-radius: 0;
        z-index: 1000;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 8px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        font-size: 1rem;
        font-weight: 600;
        padding: 12px 16px;
        border-radius: 8px;
        display: block;
        width: 100%;
        color: var(--charcoal-obsidian);
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        transition: all 0.2s ease;
    }
    .nav-links a:hover, .nav-links a.active {
        background-color: rgba(197, 160, 89, 0.12);
        color: var(--primary-color);
    }
    .nav-links.active {
        right: 0;
    }
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        position: relative;
        padding: 6px 12px;
        cursor: pointer;
        font-size: 1.5rem;
        border: none;
        background: transparent;
        color: var(--primary-color);
    }
    body.menu-open {
        overflow: hidden;
    }
    body.menu-open .mobile-toggle {
        font-size: 2.5rem;
    }
    .home-hero h1, .page-hero-title {
        font-size: 2.5rem;
    }
    .cards-grid, .four-cols, .product-cards, .featured-assets-grid, .stats-grid, .values-grid, .services-grid, .contact-info-grid, .form-row {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation Overlay & Logo Styling */
.header-logo-img {
    height: 75px;
    max-height: 75px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-cta-item {
    display: none;
}

@media (max-width: 768px) {
    .logo img,
    .header-logo-img {
        height: 48px !important;
        max-height: 48px !important;
    }
    
    header.sticky .logo img,
    header.sticky .header-logo-img {
        height: 44px !important;
        max-height: 44px !important;
    }
    
    .mobile-cta-item {
        display: block;
        margin-top: 10px;
        width: 100%;
        max-width: 280px;
    }
    
    .request-btn-mobile {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 1rem;
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    /* Container and section padding for mobile scaling */
    .px-margin-desktop {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    
    .py-section-padding, .py-20, .section-padding {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }
    
    .pb-section-padding, .pb-20 {
        padding-bottom: 48px !important;
    }
    
    .pt-section-padding, .pt-20 {
        padding-top: 48px !important;
    }
    
    .mb-section-padding, .mb-20, .mb-16, .mb-12 {
        margin-bottom: 28px !important;
    }
    
    .mb-stack-lg, .mb-8 {
        margin-bottom: 22px !important;
    }
    
    .mb-stack-md, .mb-6 {
        margin-bottom: 16px !important;
    }
    
    .gap-gutter, .gap-12, .gap-16, .gap-20 {
        gap: 24px !important;
    }

    .space-y-8 > :not([hidden]) ~ :not([hidden]),
    .space-y-6 > :not([hidden]) ~ :not([hidden]),
    .space-y-12 > :not([hidden]) ~ :not([hidden]) {
        margin-top: 20px !important;
    }

    /* Typography scaling for mobile screens */
    h1, .font-headline-xl {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
    }
    
    h2, .font-headline-lg {
        font-size: 1.35rem !important;
        line-height: 1.3 !important;
    }
    
    h3, .font-headline-md {
        font-size: 1.15rem !important;
        line-height: 1.35 !important;
    }

    /* Hero section top padding & breadcrumb clearance on mobile */
    section[style*="padding-top: 150px"] {
        padding-top: 125px !important;
        padding-bottom: 48px !important;
    }

    div[style*="letter-spacing: 1.5px"],
    div[style*="letter-spacing:1.5px"] {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
        display: inline-block !important;
    }

    /* Measured object heights for mobile screens */
    .h-96, .h-80 {
        height: 11.5rem !important; /* ~184px */
    }
    
    .h-64, .h-56, .h-52, .h-48 {
        height: 9.5rem !important; /* ~152px */
    }
    
    .h-\[600px\], .h-\[500px\], .h-\[480px\], .min-h-\[460px\], .min-h-\[450px\], .min-h-\[600px\] {
        height: auto !important;
        min-height: auto !important;
    }

    /* Icon scaling for mobile screens */
    .text-9xl {
        font-size: 3.5rem !important;
    }
    .text-7xl, .text-6xl {
        font-size: 2.75rem !important;
    }
    .text-5xl, .text-4xl {
        font-size: 2rem !important;
    }

    /* Measured card padding & container scaling */
    .p-10, .p-12, .p-16, .p-stack-lg {
        padding: 1rem 1.15rem !important;
    }

    .luxury-shadow {
        box-shadow: 0 8px 20px -4px rgba(0,0,0,0.06) !important;
    }

    /* Visual Product Overview items scaling on mobile */
    #product-carousel > div {
        min-width: 260px !important;
        height: 12rem !important;
    }

    /* Measured button scaling for mobile */
    a.btn, button.btn, .request-btn-mobile, 
    a[class*="px-8 py-4"], a[class*="py-4"] {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
    
    /* Touch target min-height for buttons & inputs */
    button, input, select, textarea, a.btn {
        min-height: 42px;
    }
}

.footer-subscribe-form {
    display: flex;
    margin-top: 15px;
}

@media (max-width: 480px) {
    .footer-subscribe-form {
        flex-direction: column;
        gap: 8px;
    }
    .footer-subscribe-form input {
        border-radius: 4px !important;
        width: 100%;
    }
    .footer-subscribe-form button {
        border-radius: 4px !important;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
}
