/* ==========================================================================
   DESIGN SYSTEM - INDUSTRIAL THEMING
   distributorkeramik.com
   ========================================================================== */

:root {
    /* Color Palette */
    --color-bg-deep: #0b0b0d;
    --color-bg-base: #111115;
    --color-bg-surface: #17171e;
    --color-bg-surface-elevated: #20202a;
    
    --color-text-primary: #f8fafc;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    
    --color-accent-copper: #d97706;
    --color-accent-copper-hover: #b45309;
    --color-accent-brass: #ca8a04;
    
    --color-border: #272730;
    --color-border-hover: #47475a;
    
    /* Typography */
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing & Layout */
    --container-max-width: 1280px;
    --header-height: 80px;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    background-color: var(--color-bg-deep);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    min-block-size: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text-primary);
    text-wrap: balance;
}

p {
    color: var(--color-text-secondary);
}

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

img, video {
    max-inline-size: 100%;
    block-size: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    inline-size: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}

::-webkit-scrollbar-thumb {
    background: #2a2a35;
    border-radius: 5px;
    border: 2px solid var(--color-bg-deep);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-copper);
}

/* ==========================================================================
   REUSABLE UTILITIES & BUTTONS
   ========================================================================== */

.section-container {
    max-inline-size: var(--container-max-width);
    margin-inline: auto;
    padding-inline: 1.5rem;
    padding-block: 6rem;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-copper);
    margin-block-end: 0.75rem;
}

.section-header {
    text-align: center;
    max-inline-size: 700px;
    margin-inline: auto;
    margin-block-end: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-block-end: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--color-accent-copper);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
    transition: var(--transition-fast);
}

.btn-primary:hover {
    background: var(--color-accent-copper-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text-primary);
}

.btn-primary-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-copper);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    border: none;
    transition: var(--transition-fast);
}

.btn-primary-small:hover {
    background: var(--color-accent-copper-hover);
}

/* ==========================================================================
   HEADER NAVIGATION (WITH GLASSMORPHISM)
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(11, 11, 13, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-block-end: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

/* Scroll shrinking modifier */
.main-header.scrolled {
    height: 70px;
    background: rgba(11, 11, 13, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-inline-size: var(--container-max-width);
    margin-inline: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 1.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    max-height: 40px;
    width: auto;
    margin-inline-end: 0.75rem;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
}

.logo-text span {
    color: var(--color-accent-copper);
}

/* Desktop Nav Menu */
.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    position: relative;
    padding-block: 0.5rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent-copper);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hamburger toggle button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION (INDUSTRIAL INTRO)
   ========================================================================== */

.hero-section {
    position: relative;
    min-block-size: 100vh;
    display: grid;
    place-content: center;
    background-image: url('assets/images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-block-start: var(--header-height);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 11, 13, 0.4) 0%,
        rgba(11, 11, 13, 0.75) 60%,
        var(--color-bg-deep) 100%
    );
    z-index: 1;
}

.hero-content-container {
    position: relative;
    z-index: 2;
    max-inline-size: var(--container-max-width);
    margin-inline: auto;
    padding-inline: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-block {
    max-inline-size: 750px;
}

.hero-badge {
    display: inline-block;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.3);
    color: var(--color-accent-copper);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-block-end: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    margin-block-end: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-text-block p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-block-end: 2.5rem;
    max-inline-size: 600px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.icon-whatsapp {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   ABOUT & STATS SECTION
   ========================================================================== */

.about-section {
    background-color: var(--color-bg-deep);
    border-block-end: 1px solid var(--color-border);
}

.grid-about {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-block-end: 1.5rem;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--color-text-primary);
    font-weight: 500;
    margin-block-end: 1rem;
}

.about-intro p {
    margin-block-end: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    padding: 2.5rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-copper), var(--color-accent-brass));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
    background: var(--color-bg-surface-elevated);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent-copper);
    line-height: 1;
    margin-block-end: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   BRANDS SECTION
   ========================================================================== */

.brand-section {
    background-color: var(--color-bg-base);
    border-block-end: 1px solid var(--color-border);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.brand-card {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-logo-container {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block-end: 1.5rem;
    background: #0f0f13;
    border-radius: 4px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.brand-logo-container img {
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.brand-card h3 {
    font-size: 1.25rem;
    margin-block-end: 0.5rem;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.brand-card p {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Brand Card Hover Animations */
.brand-card:hover {
    border-color: var(--color-accent-copper);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.brand-card:hover .brand-logo-container img {
    filter: grayscale(0%) contrast(1);
    opacity: 1;
    transform: scale(1.05);
}

.brand-card:hover h3 {
    color: var(--color-text-primary);
}

/* ==========================================================================
   PRODUCT CATEGORIES SECTION
   ========================================================================== */

.products-section {
    background-color: var(--color-bg-deep);
    border-block-end: 1px solid var(--color-border);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.product-img-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0f0f13;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-block-end: 0.75rem;
}

.product-info p {
    font-size: 0.925rem;
    margin-block-end: 2rem;
    flex-grow: 1;
}

.btn-card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-accent-copper);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

.btn-card-action .arrow {
    transition: transform var(--transition-fast);
}

/* Card Hover Animations */
.product-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-card:hover .btn-card-action {
    color: var(--color-text-primary);
}

.product-card:hover .btn-card-action .arrow {
    transform: translateX(5px);
}

/* Others Card Specific Styles */
.others-card {
    background: linear-gradient(135deg, #17171e 0%, #1e1e27 100%);
    border: 1px dashed var(--color-border-hover);
    justify-content: center;
    padding: 3rem 2rem;
}

.product-info-others {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.product-info-others h3 {
    font-size: 1.75rem;
    margin-block-end: 1rem;
    color: var(--color-accent-copper);
}

.product-info-others p {
    font-size: 1rem;
    margin-block-end: 2.5rem;
    max-inline-size: 320px;
}

.product-info-others .btn-card-action {
    align-self: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    color: var(--color-text-primary);
    transition: var(--transition-fast);
}

.product-info-others .btn-card-action:hover {
    background: var(--color-accent-copper);
    border-color: var(--color-accent-copper);
    color: white;
}

/* ==========================================================================
   OFFLINE STORE & MAPS SECTION
   ========================================================================== */

.location-section {
    background-color: var(--color-bg-base);
    border-block-end: 1px solid var(--color-border);
}

.location-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.location-details {
    padding: 4.5rem;
}

.location-details h2 {
    font-size: 2.25rem;
    margin-block-end: 1.5rem;
}

.location-description {
    margin-block-end: 2.5rem;
}

.contact-meta-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-block-end: 3rem;
}

.meta-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.meta-icon {
    font-size: 1.5rem;
    color: var(--color-accent-copper);
    line-height: 1;
}

.meta-text strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    margin-block-end: 0.25rem;
}

.meta-text p {
    font-size: 0.925rem;
    line-height: 1.5;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Visual Map Container */
.location-visual-map {
    position: relative;
    background: #0f0f13;
    overflow: hidden;
    min-block-size: 400px;
    height: 100%;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-block-size: 400px;
    background-image: linear-gradient(
        rgba(17, 17, 21, 0.8),
        rgba(17, 17, 21, 0.8)
    ), url('assets/images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    padding: 2rem;
}

.map-overlay-content {
    background: rgba(11, 11, 13, 0.95);
    border: 1px solid var(--color-border-hover);
    padding: 2.5rem;
    border-radius: 4px;
    text-align: center;
    max-inline-size: 320px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.map-pin {
    width: 24px;
    height: 24px;
    background-color: var(--color-accent-copper);
    border-radius: 50%;
    margin-inline: auto;
    margin-block-end: 1rem;
    position: relative;
    animation: pulse 2s infinite;
}

.map-pin::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: var(--color-accent-copper) transparent;
}

.map-overlay-content h3 {
    font-size: 1.15rem;
    margin-block-end: 0.5rem;
}

.map-overlay-content p {
    font-size: 0.85rem;
    margin-block-end: 1.5rem;
}

/* ==========================================================================
   CTA CONTACT SECTION
   ========================================================================== */

.cta-contact-section {
    background-color: var(--color-bg-deep);
    border-block-end: 1px solid var(--color-border);
}

.cta-card {
    background: linear-gradient(135deg, #1b1b22 0%, #111115 100%);
    border: 1px solid var(--color-accent-copper);
    border-radius: 4px;
    padding: 5rem 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(217, 119, 6, 0.05);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-block-end: 1.5rem;
}

.cta-card p {
    max-inline-size: 650px;
    margin-inline: auto;
    margin-block-end: 3rem;
    font-size: 1.1rem;
}

.contact-cta-wrapper {
    display: flex;
    justify-content: center;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #25d366;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition-fast);
}

.btn-whatsapp-large:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.icon-whatsapp-large {
    width: 28px;
    height: 28px;
}

/* ==========================================================================
   STICKY WHATSAPP COMPONENT
   ========================================================================== */

.sticky-wa-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: grid;
    place-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.sticky-wa-button:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
}

.sticky-wa-icon {
    width: 32px;
    height: 32px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
    background-color: #08080a;
    border-block-start: 1px solid var(--color-border);
}

.footer-container {
    max-inline-size: var(--container-max-width);
    margin-inline: auto;
    padding-inline: 1.5rem;
    padding-block: 5rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 5rem;
}

.footer-brand-info .logo-text {
    font-size: 1.5rem;
    margin-block-end: 1.5rem;
    display: inline-block;
}

.footer-seo-desc {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-block-end: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.footer-links a:hover {
    color: var(--color-accent-copper);
    padding-inline-start: 4px;
}

.footer-contact p {
    font-size: 0.95rem;
    margin-block-end: 1rem;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--color-text-primary);
    font-weight: 500;
}

.footer-contact a:hover {
    color: var(--color-accent-copper);
}

.footer-bottom {
    max-inline-size: var(--container-max-width);
    margin-inline: auto;
    padding-inline: 1.5rem;
    padding-block: 2rem;
    border-block-start: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   SCROLL REVEAL & KEYFRAMES
   ========================================================================== */

/* Intersection Observer animations styling */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(217, 119, 6, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
    }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large screens and laptops */
@media (max-width: 1200px) {
    .grid-about {
        gap: 3rem;
    }
    
    .location-details {
        padding: 3rem;
    }
}

/* Tablets and medium screens */
@media (max-width: 992px) {
    .section-container {
        padding-block: 4.5rem;
    }

    .grid-about {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .others-card {
        grid-column: span 2;
    }

    .location-box {
        grid-template-columns: 1fr;
    }

    .location-visual-map {
        block-size: 350px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-block: 4rem 2rem;
    }
}

/* Small tablets and landscape phones */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .hero-text-block h1 {
        font-size: 2.75rem;
    }

    .hero-text-block p {
        font-size: 1.1rem;
    }

    /* Responsive Mobile Nav Drawer */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: #0f0f13;
        border-inline-start: 1px solid var(--color-border);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        padding: 6rem 2.5rem 3rem;
        display: flex;
        flex-direction: column;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
    }

    .nav-link {
        font-size: 1.15rem;
    }

    .nav-menu .btn-primary-small {
        margin-block-start: 1rem;
        width: 100%;
    }

    /* Transform hamburger into 'X' when menu is open */
    .menu-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Portrait Mobile phones */
@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.75rem;
    }

    .hero-text-block h1 {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
    }

    .about-intro h2 {
        font-size: 1.75rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .brand-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .others-card {
        grid-column: span 1;
    }

    .location-details {
        padding: 2rem 1.5rem;
    }

    .location-details h2 {
        font-size: 1.75rem;
    }

    .location-actions {
        flex-direction: column;
    }

    .location-actions a {
        width: 100%;
    }

    .cta-card {
        padding: 3rem 1.5rem;
    }

    .cta-card h2 {
        font-size: 1.75rem;
    }

    .btn-whatsapp-large {
        width: 100%;
        font-size: 1rem;
        padding-inline: 1.5rem;
    }

    .sticky-wa-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    .sticky-wa-icon {
        width: 26px;
        height: 26px;
    }
}
