/* ========================================
   Purva Estrella - Custom Styles
   ======================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --green-dark: #0B4D3C;
    --green-medium: #0D6B4F;
    --green-light: #14805E;
    --gold: #C5A55A;
    --gold-light: #D4B96E;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --white: #ffffff;
    --black: #222222;
    --text-muted: #777777;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
}

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Section base */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green-dark);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto 0;
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--green-dark);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar .rera-text {
    font-size: 11px;
    opacity: 0.7;
}

/* ---------- Navbar ---------- */
.main-navbar {
    background: var(--green-dark);
    padding: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.main-navbar.sticky-top {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.main-navbar .navbar-brand img {
    height: 55px;
}

.main-navbar .navbar-brand .brand-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.main-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 20px 14px !important;
    transition: all 0.3s;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--gold) !important;
}

.btn-enquire {
    background: var(--gold);
    color: var(--white) !important;
    border: none;
    padding: 10px 28px !important;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-enquire:hover {
    background: var(--gold-light);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-badge-column {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.hero-badge {
    background: rgba(11, 77, 60, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 165, 90, 0.5);
    padding: 18px 28px;
    color: var(--white);
    font-size: 13px;
    font-weight: 400;
    border-radius: 6px;
    text-align: center;
    line-height: 1.6;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-badge:hover {
    transform: scale(1.05);
}

.hero-badge strong {
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

/* ---------- Welcome Section ---------- */
.welcome-section {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

.welcome-section .section-title {
    font-size: 2.2rem;
    line-height: 1.4;
}

.welcome-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.9;
}

/* ---------- Highlights Section ---------- */
.highlights-section {
    background: var(--cream);
    padding: 80px 0;
}

.highlight-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 55px;
    height: 55px;
    background: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--gold);
    font-size: 22px;
}

.highlight-card h5 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.5px;
    line-height: 1.5;
}

/* ---------- Configurations Section ---------- */
.configurations-section {
    background: var(--white);
    padding: 80px 0;
}

.config-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.config-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.config-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.config-card:hover img {
    transform: scale(1.05);
}

.config-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 0%, rgba(11, 77, 60, 0.6) 25%, rgba(11, 77, 60, 0.92) 50%, rgba(11, 77, 60, 1) 75%);
    padding: 60px 25px 25px;
    color: var(--white);
}

.config-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.config-overlay p {
    font-size: 13px;
    margin: 0;
    opacity: 1;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.config-price {
    background: rgba(197, 165, 90, 0.2);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
    border: 1px solid rgba(197, 165, 90, 0.5);
    letter-spacing: 1px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.config-overlay .area-info {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-block;
    font-size: 12px;
    margin-top: 10px;
    border: 1px solid rgba(197, 165, 90, 0.3);
}

/* Enquiry Now Link on Config Cards */
.enquiry-now-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 3px;
    background: rgba(197, 165, 90, 0.15);
    padding: 6px 16px 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.enquiry-now-link:hover {
    color: #fff;
    background: var(--gold);
    border-bottom-color: var(--gold);
}

.enquiry-now-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.enquiry-now-link:hover i {
    transform: translateX(5px);
}

/* ---------- Amenities Section ---------- */
.amenities-section {
    background: var(--cream-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.amenity-carousel {
    position: relative;
}

.amenity-slide {
    display: none;
}

.amenity-slide.active {
    display: block;
}

.amenity-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.amenity-image-row img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.amenity-image-row img:hover {
    transform: scale(1.03);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.carousel-dot.active {
    opacity: 1;
    transform: scale(1.2);
}

/* ---------- Gallery Section ---------- */
.gallery-section {
    background: var(--white);
    padding: 80px 0;
}

.gallery-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-image-row img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-image-row img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.gallery-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green-dark);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--green-dark);
}

.gallery-dot.active {
    opacity: 1;
    transform: scale(1.2);
}

/* ---------- Location Section ---------- */
.location-section {
    background: var(--green-dark);
    padding: 80px 0;
    color: var(--white);
    position: relative;
}

.location-section .section-title {
    color: var(--white);
}

.location-section .section-title::after {
    background: var(--gold);
}

.location-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.location-map-wrapper img {
    width: 100%;
    height: auto;
}

.location-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.location-cat-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.location-cat-btn:hover,
.location-cat-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.location-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.location-item i {
    color: var(--gold);
    font-size: 14px;
    min-width: 20px;
}

.location-item .distance {
    margin-left: auto;
    color: var(--gold);
    font-weight: 500;
    font-size: 12px;
}

/* ---------- Floor Plan Section ---------- */
.floorplan-section {
    background: var(--cream);
    padding: 80px 0;
}

.floorplan-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.floorplan-tab {
    background: var(--white);
    border: 2px solid var(--green-dark);
    color: var(--green-dark);
    padding: 10px 30px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.floorplan-tab:hover,
.floorplan-tab.active {
    background: var(--green-dark);
    color: var(--white);
}

.floorplan-image {
    text-align: center;
}

.floorplan-image img {
    max-width: 100%;
    width: 600px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ---------- Stats Section ---------- */
.stats-section {
    background: var(--white);
    padding: 60px 0;
    border-top: 3px solid var(--gold);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---------- Footer / Contact Section ---------- */
.footer-section {
    background: var(--green-dark);
    padding: 60px 0 0;
    color: var(--white);
}

.footer-brand h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-qr {
    text-align: center;
}

.footer-qr img {
    width: 120px;
    border-radius: 8px;
    border: 3px solid var(--gold);
}

.footer-qr p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
}

.contact-form-wrapper h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
}

.contact-form-wrapper .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--white);
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-form-wrapper .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(197, 165, 90, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-submit {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 12px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 165, 90, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    text-align: justify;
}

.footer-copyright {
    text-align: center;
    padding: 15px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---------- Floating CTA ---------- */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: var(--gold);
    padding: 12px 0;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
    overflow: hidden;
}

.floating-cta a {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 70px;
    right: 15px;
    z-index: 998;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    color: var(--white);
    font-size: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* ---------- Modal / Enquiry ---------- */
.modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: var(--green-dark);
    border: none;
    padding: 20px 30px;
}

.modal-title {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 30px;
}

.modal-body .form-control {
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    margin-bottom: 12px;
    font-size: 14px;
}

.modal-body .form-control:focus {
    border-color: var(--green-dark);
    box-shadow: 0 0 8px rgba(11, 77, 60, 0.15);
}

.modal-body .btn-submit {
    margin-top: 10px;
}

/* ---------- Config Modal ---------- */
.config-modal-content {
    border-radius: 12px;
    border: none;
    overflow: hidden;
}

.config-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.config-modal-close:hover {
    opacity: 1;
}

.config-modal-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.config-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.config-modal-image-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
}

.config-modal-badge {
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.config-modal-form {
    padding: 40px 35px;
}

.config-modal-brand {
    text-align: center;
    margin-bottom: 30px;
}

.config-modal-brand h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.15;
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.config-modal-brand p {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

.config-form-label {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin-bottom: 4px;
    display: block;
}

.config-form-input {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0 !important;
    padding: 8px 0 !important;
    font-size: 15px;
    background: transparent !important;
    box-shadow: none !important;
}

.config-form-input:focus {
    border-bottom-color: var(--green-dark);
    box-shadow: none !important;
    outline: none;
}

.config-phone-input {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    gap: 10px;
}

.config-phone-flag {
    font-size: 18px;
    white-space: nowrap;
    padding-bottom: 2px;
}

.config-phone-input .config-form-input {
    border-bottom: none;
    flex: 1;
}

.config-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.config-checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    cursor: pointer;
}

.config-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--green-dark);
    min-width: 16px;
    height: 16px;
}

.config-submit-btn {
    background: var(--green-dark);
    color: var(--white);
    border: 2px solid var(--green-dark);
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.config-submit-btn:hover {
    background: var(--green-medium);
    border-color: var(--green-medium);
    color: var(--white);
}

/* ---------- Animations ---------- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .section-title {
        font-size: 1.6rem;
    }

    .amenity-image-row {
        grid-template-columns: 1fr;
    }

    .gallery-image-row {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        margin-bottom: 15px;
    }

    .main-navbar .nav-link {
        padding: 10px 14px !important;
    }

    .hero-badge-column {
        right: 20px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 100%;
        min-height: unset;
        background-image: url('../images/mob-slider_02.jpeg') !important;
        background-size: 100% auto;
        background-position: top center;
        padding-bottom: 0;
    }

    .hero-section::before {
        content: '';
        display: block;
        width: 100%;
        padding-top: 200%;
    }

    .hero-badge-column {
        position: absolute;
        right: auto;
        left: 50%;
        top: auto;
        bottom: 30px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 10px;
    }

    .hero-badge {
        padding: 10px 16px;
        font-size: 11px;
    }

    .hero-badge strong {
        font-size: 14px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .config-card img {
        height: 250px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .location-list {
        grid-template-columns: 1fr;
    }

    .floating-cta {
        display: block;
    }

    .amenity-image-row img,
    .gallery-image-row img {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .top-bar {
        display: none;
    }

    .hero-section {
        height: 80vh;
        min-height: 350px;
    }

    .hero-badge-column {
        bottom: 15px;
        gap: 8px;
    }

    .hero-badge {
        padding: 8px 12px;
        font-size: 10px;
    }

    .hero-badge strong {
        font-size: 12px;
    }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--green-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-medium);
}