/* CSS Stylesheet for PT Sentra Modern Pratama - Replicating Reference Design */

:root {
    --primary-red: #d32f2f;
    --primary-red-hover: #b71c1c;
    --brand-dark: #121829;
    --brand-gray: #f4f6f9;
    --brand-text: #212529;
    --brand-muted: #6c757d;
    --whatsapp-green: #25d366;
    --whatsapp-hover: #1eb857;
    --yellow-badge: #ffc107;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --hover-shadow: 0 15px 35px rgba(0,0,0,0.15);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: #fcfcfc;
    color: var(--brand-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Navigation */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.brand-name span {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon-btn {
    color: #444;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon-btn:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* Marquee Bar */
.marquee-bar {
    background: var(--primary-red);
    color: #ffffff;
    padding: 10px 0;
    font-weight: 600;
    font-size: 0.9rem;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    box-shadow: inset 0 -2px 5px rgba(0,0,0,0.1);
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Hero Section - Matching Reference Screenshot */
.hero-section {
    position: relative;
    background: #0f141d url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 1.5rem 1rem 0 1rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(15, 20, 29, 0.75) 0%, rgba(15, 20, 29, 0.9) 100%);
    z-index: 1;
}

.hero-header-top {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-brand-left {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.hero-brand-left i {
    font-size: 2.8rem;
    color: var(--primary-red);
}

.hero-brand-text {
    line-height: 1.1;
}

.hero-brand-text h4 {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.hero-brand-text span {
    font-size: 0.75rem;
    font-weight: 800;
    color: #00b4d8;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-badge-right {
    background: rgba(120, 100, 80, 0.6);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-badge-right strong {
    color: var(--primary-red);
    font-size: 0.85rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.center-main-logo {
    margin-bottom: 0.5rem;
}

.center-main-logo i {
    font-size: 3.5rem;
    color: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.8));
}

.center-main-logo h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-red);
    letter-spacing: 1px;
    margin-top: 0.2rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.9);
}

.hero-welcome {
    font-size: 2.8rem;
    font-weight: 900;
    font-style: italic;
    color: #ffd100;
    text-shadow: 3px 3px 0px #d32f2f, 6px 6px 10px rgba(0,0,0,0.8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

/* Red Domain Capsule Banner */
.domain-pill-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.domain-pill-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #d32f2f 0%, #b71c1c 100%);
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Outfit', serif;
    padding: 10px 45px;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.6), inset 0 2px 4px rgba(255,255,255,0.4);
    border: 3px solid #ffffff;
    position: relative;
    letter-spacing: -0.5px;
}

.click-hand-icon {
    position: absolute;
    right: -15px;
    bottom: -15px;
    font-size: 2.8rem;
    color: #ffcc00;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.6));
    animation: handClick 1.2s ease-in-out infinite alternate;
}

@keyframes handClick {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(-4px, -4px); }
}

/* Yellow Capsule Banner */
.promo-badge-pill {
    display: inline-block;
    background: linear-gradient(180deg, #ffc107 0%, #ff9800 100%);
    color: #000000;
    font-size: 1.15rem;
    font-weight: 900;
    padding: 10px 30px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5), inset 0 2px 2px rgba(255,255,255,0.6);
    border: 2px solid #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Chevron Accents */
.hero-chevrons-left, .hero-chevrons-right {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    display: flex;
    gap: 4px;
    z-index: 2;
}

.hero-chevrons-left {
    left: 20px;
    color: #ffc107;
}

.hero-chevrons-right {
    right: 20px;
    color: #ffc107;
}

.hero-chevrons-left i, .hero-chevrons-right i {
    opacity: 0.8;
    animation: chevronFade 1.5s infinite alternate;
}

.hero-chevrons-left i:nth-child(2), .hero-chevrons-right i:nth-child(2) { animation-delay: 0.3s; color: #ffffff; }
.hero-chevrons-left i:nth-child(3), .hero-chevrons-right i:nth-child(3) { animation-delay: 0.6s; }

@keyframes chevronFade {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Houses Lineup Image */
.hero-houses-lineup {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    width: 100%;
}

.hero-houses-img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
}

/* Bottom Red Promo Ribbon Bar */
.hero-bottom-ribbon {
    position: relative;
    z-index: 3;
    width: 100%;
    background: linear-gradient(90deg, #121829 0%, #d32f2f 40%, #b71c1c 80%, #121829 100%);
    color: #ffffff;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.4);
    border-top: 2px solid #ffc107;
}

.ribbon-sales-badge {
    background: #ffffff;
    color: #d32f2f;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.ribbon-phone {
    color: #ffcc00;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.ribbon-book-btn {
    background: #000000;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
}

/* Floating WhatsApp Button */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wa-btn:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-hover);
    color: #ffffff;
}

/* Section Common */
.section-padding {
    padding: 4rem 1.5rem;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.3rem;
}

.section-subtitle {
    color: var(--brand-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* E-Catalog Tabs & Grid Layout */
.catalog-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 3rem;
}

.tab-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary-red);
    color: #ffffff;
    border-color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
}

/* E-Catalog Card Design - Matching User Reference Screenshot */
.catalog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card-img-wrap {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: #1e293b;
    border-bottom: 1px solid #f1f5f9;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.catalog-card:hover .card-img {
    transform: scale(1.02);
}

.card-starburst-badge {
    position: absolute;
    bottom: 45px;
    left: 20px;
    background: #ffcc00;
    color: #b71c1c;
    font-weight: 900;
    font-size: 0.7rem;
    padding: 10px;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border: 2px dashed #b71c1c;
    transform: rotate(-12deg);
    animation: pulseBadge 2s infinite alternate;
}

@keyframes pulseBadge {
    0% { transform: rotate(-12deg) scale(1); }
    100% { transform: rotate(-12deg) scale(1.08); }
}

.card-bottom-flyer-ribbon {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    background: linear-gradient(90deg, #0284c7 0%, #d32f2f 45%, #b71c1c 100%);
    color: #ffffff;
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.card-title-group h3 {
    font-size: 1.35rem;
    font-weight: 900;
    color: #111827;
    margin: 0;
    line-height: 1.1;
}

.card-title-group p {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
    margin: 3px 0 0 0;
}

.btn-wa-pill {
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-wa-pill:hover {
    background: #1eb857;
    color: #ffffff;
    transform: scale(1.03);
}

/* 2x2 Pricing & KPR Grid Box */
.pricing-grid-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 15px;
    margin-top: 0.5rem;
}

.grid-cell {
    display: flex;
    flex-direction: column;
}

.cell-label {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 600;
}

.cell-value-red {
    font-size: 1.05rem;
    font-weight: 900;
    color: #d32f2f;
}

.cell-value-dark {
    font-size: 1.05rem;
    font-weight: 900;
    color: #111827;
}

/* Executive Sales Section */
.sales-executive-section {
    background: #f8fafc;
    padding: 5rem 1.5rem;
}

.sales-card-wrapper {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    max-width: 1060px;
    margin: 0 auto;
}

.sales-photo-col {
    flex: 1;
    text-align: center;
}

.sales-photo-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 4px solid #ffffff;
    background: #0d1117;
}

.sales-photo-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.sales-photo-box:hover .sales-photo-img {
    transform: scale(1.03);
}

.sales-photo-ribbon {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    background: linear-gradient(90deg, #0284c7 0%, #d32f2f 45%, #b71c1c 100%);
    color: #ffffff;
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
}

.sales-contact-stack {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 16px 22px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--brand-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #d32f2f;
}

.contact-icon-sq {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    transition: transform 0.3s ease;
}

.contact-link-item:hover .contact-icon-sq {
    transform: scale(1.1) rotate(-4deg);
}

.contact-text-meta h6 {
    font-size: 0.75rem;
    color: var(--brand-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.contact-text-meta p {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
}

.icon-wa { background: #25d366; }
.icon-tiktok { background: #ff0050; }
.icon-fb { background: #1877f2; }
.icon-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.icon-email { background: #ea4335; }

.contact-text-meta h6 {
    font-size: 0.75rem;
    color: var(--brand-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.contact-text-meta p {
    font-size: 1.05rem;
    font-weight: 800;
}

/* Promo Card Section */
.promo-box-container {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    max-width: 1000px;
    margin: 0 auto;
}

.promo-header-red {
    background: var(--primary-red);
    color: #ffffff;
    padding: 2.5rem 2rem;
    text-align: center;
}

.promo-header-red h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.promo-header-red p {
    font-size: 1rem;
    opacity: 0.9;
}

.promo-body-grid {
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.promo-col-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1.2rem;
}

.promo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.promo-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.dark-promo-card {
    background: var(--brand-dark);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.dark-promo-card h5 {
    color: #ff3b30;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.dark-promo-card p {
    font-size: 0.85rem;
    color: #cbd5e1;
}

.promo-footer-note {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    color: var(--brand-muted);
    font-size: 0.8rem;
    font-style: italic;
}

/* Gallery Serah Terima Testimonials Section */
.gallery-red-wrapper {
    background: var(--primary-red);
    padding: 4rem 1.5rem;
    color: #ffffff;
}

.gallery-flex-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.gallery-info-box {
    background: #ffffff;
    color: var(--brand-dark);
    padding: 2.5rem;
    border-radius: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 300px;
}

.gallery-info-box h2 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gallery-info-box p {
    color: var(--brand-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.slider-nav-btns {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.nav-circle-btn {
    width: 42px;
    height: 42px;
    border: 2px solid var(--primary-red);
    background: transparent;
    color: var(--primary-red);
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.nav-circle-btn:hover {
    background: var(--primary-red);
    color: #ffffff;
}

.btn-see-all {
    background: var(--primary-red);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    transition: background 0.2s ease;
}

.btn-see-all:hover {
    background: var(--primary-red-hover);
}

.gallery-slider-cards {
    flex: 2;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
}

.gallery-slider-cards::-webkit-scrollbar {
    height: 6px;
}

.gallery-slider-cards::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.4);
    border-radius: 10px;
}

.handover-card {
    background: #ffffff;
    color: var(--brand-dark);
    border-radius: 16px;
    min-width: 320px;
    max-width: 340px;
    padding: 1.2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.handover-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.rating-stars {
    color: #ff3b30;
    font-size: 1.1rem;
}

.cust-name {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--brand-dark);
}

.cust-location {
    font-size: 0.8rem;
    color: var(--brand-muted);
}

.cust-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.handover-photo-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.handover-photo-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.handover-sales-badge {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    color: #ffffff;
    padding: 15px 10px 8px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

/* About & Maps Section */
.about-maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.maps-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid #e2e8f0;
}

.about-content-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

.about-content-box p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.address-box {
    background: var(--brand-gray);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
}

.address-box h5 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.3rem;
}

.address-box p {
    font-size: 0.9rem;
    margin: 0;
    color: #444;
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 2rem 1.5rem;
    font-size: 0.85rem;
}

.footer-copyright-bar {
    background: #0f172a;
    color: #94a3b8;
    padding: 1.2rem 0;
    font-size: 0.85rem;
}

/* Mobile Navigation Toggle Button */
.mobile-toggle-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--brand-dark);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.mobile-toggle-btn:hover {
    background: rgba(0,0,0,0.05);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .promo-body-grid, .about-maps-grid {
        grid-template-columns: 1fr;
    }
    
    .sales-card-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .sales-photo-wrap {
        margin-bottom: 1.5rem;
    }
    
    .gallery-flex-container {
        flex-direction: column;
    }

    .gallery-info-side {
        max-width: 100%;
        text-align: center;
    }

    .gallery-slider-controls {
        justify-content: center;
    }
    
    .domain-pill-banner {
        font-size: 1.1rem;
        padding: 8px 16px;
    }
    
    .hero-welcome {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        border-bottom: 3px solid var(--primary-red);
        gap: 1rem;
        align-items: flex-start;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.05rem;
        width: 100%;
        padding: 8px 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-socials {
        display: none;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-img-wrap {
        height: 250px;
    }

    .hero-section {
        padding: 3rem 1rem;
    }

    .hero-welcome {
        font-size: 1.4rem;
    }

    .promo-badge-pill {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .hero-bottom-ribbon {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        font-size: 0.85rem;
    }

    .sales-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-wa-direct, .btn-call-direct {
        width: 100%;
        justify-content: center;
    }

    .promo-header-red {
        padding: 1.8rem 1.2rem;
    }

    .promo-header-red h2 {
        font-size: 1.4rem;
    }

    .promo-body-grid {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .handover-card {
        min-width: 270px;
        max-width: 280px;
    }

    .floating-wa-btn {
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.1rem;
    }

    .hero-welcome {
        font-size: 1.25rem;
    }

    .domain-pill-banner {
        font-size: 0.95rem;
    }

    .catalog-tabs {
        gap: 6px;
    }

    .tab-btn {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
}
