/* =========================================================
   ENAM'S PLACE – Main Stylesheet
   Premium Loc Care Brand
   Font: Montserrat · Colors: Black / Gold / Ivory
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ----- ROOT ----- */
:root {
    --black: #0c0c0c;
    --black-soft: #121212;
    --gold: #b98b35;
    --gold-light: #d0a04a;
    --gold-soft: rgba(185, 139, 53, 0.10);
    --white: #ffffff;
    --ivory: #f8f7f4;
    --text: #151515;
    --text-soft: #666666;
    --text-muted: #929292;
    --border: rgba(0,0,0,0.08);
    --shadow-xs: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-sm: 0 8px 25px rgba(0,0,0,0.06);
    --shadow-md: 0 15px 45px rgba(0,0,0,0.09);
    --shadow-lg: 0 25px 70px rgba(0,0,0,0.14);
    --shadow-gold: 0 12px 35px rgba(185,139,53,0.20);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: 0.35s ease;
    --transition-slow: 0.5s ease;
    --container-width: 1240px;
    --section-padding: 100px;
}

/* ----- RESET ----- */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--ivory);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { cursor: pointer; }
::selection { background: var(--gold); color: var(--white); }

/* ----- TYPOGRAPHY ----- */
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; color: var(--text); line-height: 1.2; font-weight: 500; }
h1 { letter-spacing: -1.5px; }
h2 { letter-spacing: -0.8px; }
p { margin-bottom: 1rem; }
.text-gold { color: var(--gold) !important; }
.text-muted { color: var(--text-muted) !important; }

/* ----- CONTAINERS / SECTIONS ----- */
.container { max-width: var(--container-width); }
.section { padding: var(--section-padding) 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-title {
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 400;
    margin-bottom: 1rem;
}
.section-title .highlight { color: var(--gold); font-weight: 500; }
.section-subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.9;
}
.section-heading { margin-bottom: 50px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold);
}

/* ----- NAVBAR ----- */
.navbar {
    background: rgba(12,12,12,0.97) !important;
    backdrop-filter: blur(12px);
    min-height: 78px;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(185,139,53,0.35);
    position: sticky;
    top: 0;
    z-index: 1050;
}
.navbar.scrolled { background: rgba(12,12,12,0.99) !important; box-shadow: 0 10px 35px rgba(0,0,0,0.18); }
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.8px;
    color: var(--white) !important;
}
.navbar-brand span { color: var(--gold) !important; }
.navbar-brand img { max-height: 52px; width: auto; }
.navbar .nav-link {
    position: relative;
    color: rgba(255,255,255,0.78) !important;
    padding: 1rem 1rem !important;
    font-size: 0.73rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 7px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .btn-primary { margin-left: 12px; }

/* ----- MOBILE NAVBAR TOGGLER (WHITE) ----- */
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(185,139,53,0.15);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ----- BUTTONS ----- */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-full);
    padding: 0.85rem 2.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all var(--transition);
    border-width: 1.5px;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
    background: var(--gold);
    border: 1.5px solid var(--gold);
    color: var(--white);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); box-shadow: var(--shadow-gold); }
.btn-outline-primary {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
}
.btn-outline-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--white); box-shadow: var(--shadow-gold); }
.btn-lg { padding: 1rem 2.8rem; font-size: 0.8rem; }
.btn-sm { padding: 0.55rem 1.5rem; font-size: 0.65rem; }
.btn-success {
    background: #25D366;
    border-color: #25D366;
    color: var(--white);
}
.btn-success:hover { background: #1da85a; border-color: #1da85a; }

/* ----- HERO – SHOP VERSION ----- */
.hero-shop {
    background:
        linear-gradient(90deg, rgba(8,8,8,0.94) 0%, rgba(8,8,8,0.75) 50%, rgba(8,8,8,0.40) 100%),
        var(--black);
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    color: var(--white);
    overflow: hidden;
    position: relative;
}
.hero-shop h1 {
    max-width: 800px;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 22px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-shop h1 .highlight { color: var(--gold-light); font-weight: 500; }
.hero-shop .lead {
    max-width: 580px;
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 28px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}
.hero-shop .eyebrow { color: var(--gold-light); }

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 10px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1.2; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    padding: 16px;
}
.hero-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 70%; height: 70%;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    opacity: 0.6;
}
.hero-image-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 40%; height: 40%;
    border-bottom: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    opacity: 0.6;
}

/* ----- HERO SLIDER ----- */
.hero-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    background: var(--black);
    aspect-ratio: 4/3;
}
.hero-slider-track { position: relative; width: 100%; height: 100%; }
.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.05);
}
.hero-slide.active { opacity: 1; transform: scale(1); z-index: 2; }
.hero-slide .hero-image { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(12,12,12,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    opacity: 0;
}
.hero-slider-container:hover .slider-btn { opacity: 1; }
.slider-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-50%) scale(1.05); box-shadow: var(--shadow-gold); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    background: rgba(12,12,12,0.5);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.1);
}
.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.slider-dot.active { background: var(--gold); width: 28px; border-radius: 10px; box-shadow: 0 0 20px rgba(185,139,53,0.3); }

/* ----- UPCOMING EVENT SECTION ----- */
.event-section {
    background: var(--white);
    padding: var(--section-padding) 0;
}
.event-badge {
    padding-right: 20px;
}
.event-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}
.event-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.event-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-soft);
}
.event-item i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}
.event-image-wrapper {
    position: relative;
}
.event-image-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-gold);
}

/* ----- SERVICES ----- */
.bg-ivory { background: var(--ivory); }
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: all var(--transition);
    height: 100%;
    box-shadow: var(--shadow-xs);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(185,139,53,0.25); }
.service-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius-full);
    background: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold);
    font-size: 1.6rem;
    transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); color: var(--white); }
.service-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.service-card p { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 0; line-height: 1.6; }

/* ----- GALLERY ----- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    aspect-ratio: 1/1;
    background: var(--black);
}
.gallery-image {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-item:hover .gallery-image { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }
.gallery-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 16px;
    background: var(--gold);
    border-radius: var(--radius-full);
    display: inline-block;
}

/* ----- ABOUT PAGE ----- */
.about-hero {
    background:
        linear-gradient(90deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.75) 50%, rgba(8,8,8,0.40) 100%),
        url('../images/about-hero-bg.jpg') center/cover no-repeat;
    min-height: 50vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
    color: var(--white);
}
.about-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); }

/* ----- MEET THE FOUNDER ----- */
.founder-section {
    background: var(--ivory);
}
.founder-image-wrapper {
    position: relative;
}
.founder-image-wrapper .rounded-20 {
    border-radius: var(--radius-lg);
}
.founder-content .lead {
    font-size: 1.05rem;
    color: var(--text-soft);
}

/* ----- VALUES ----- */
.value-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all var(--transition);
    height: 100%;
    box-shadow: var(--shadow-xs);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(185,139,53,0.2); }
.value-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius-full);
    background: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold);
    font-size: 1.6rem;
}
.value-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--text-soft); margin-bottom: 0; line-height: 1.7; }

/* ----- LOCATIONS ----- */
.location-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: all var(--transition);
    height: 100%;
    box-shadow: var(--shadow-xs);
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(185,139,53,0.2); }
.location-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-full);
    background: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--gold);
    font-size: 1.4rem;
}
.location-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.location-card p { font-size: 0.88rem; color: var(--text-soft); margin-bottom: 4px; }

/* ----- CONTACT PAGE ----- */
.contact-hero {
    background:
        linear-gradient(90deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.75) 50%, rgba(8,8,8,0.40) 100%),
        url('../images/contact-hero-bg.jpg') center/cover no-repeat;
    min-height: 40vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
    color: var(--white);
}

/* Contact Cards */
.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 35px 25px 30px;
    text-align: center;
    transition: all var(--transition);
    height: 100%;
    box-shadow: var(--shadow-xs);
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(185,139,53,0.2);
}
.contact-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
}
.contact-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.contact-detail {
    font-size: 0.88rem;
    color: var(--text-soft);
    margin-bottom: 6px;
}
.contact-number {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}
.contact-number div {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-soft);
    margin-bottom: 2px;
}
.contact-number div strong {
    color: var(--text);
    font-weight: 600;
}

/* Map Cards */
.map-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all var(--transition);
    height: 100%;
}
.map-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.map-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
}
.map-header h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.map-header p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.map-header .text-gold {
    font-size: 0.85rem;
}
.map-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.map-footer {
    padding: 14px 22px;
    border-top: 1px solid var(--border);
    text-align: right;
}

/* Quick Contact Bar */
.quick-contact-bar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.quick-contact-bar h3 {
    font-size: 1.4rem;
    font-weight: 400;
}
.quick-contact-bar .highlight {
    color: var(--gold);
    font-weight: 500;
}
.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}
.quick-link:hover {
    border-color: var(--gold);
    background: var(--gold-soft);
    transform: translateY(-2px);
}
.quick-link i {
    font-size: 1.2rem;
}

/* ----- CTA SECTION ----- */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--black) 0%, #171717 100%);
    color: var(--white);
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute;
    width: 450px; height: 450px;
    right: -120px; top: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185,139,53,0.16), transparent 70%);
}
.cta-section h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 400; margin-bottom: 15px; }
.cta-section p { max-width: 650px; color: rgba(255,255,255,0.68); font-size: 0.95rem; }

/* ----- FOOTER ----- */
footer {
    background: var(--black);
    color: rgba(255,255,255,0.58);
    padding: 65px 0 25px;
    border-top: 1px solid rgba(185,139,53,0.45);
}
footer h5 { color: var(--white); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 22px; }
footer p { font-size: 0.82rem; line-height: 1.8; }
footer a { color: rgba(255,255,255,0.55); font-size: 0.8rem; }
footer a:hover { color: var(--gold-light); }
footer .footer-links { list-style: none; padding: 0; margin: 0; }
footer .footer-links li { margin-bottom: 11px; }
footer .social-links { display: flex; gap: 9px; }
footer .social-links a {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: all var(--transition);
}
footer .social-links a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
footer .footer-divider { border-color: rgba(255,255,255,0.08); margin: 40px 0 22px; }
footer .copyright { color: rgba(255,255,255,0.4); font-size: 0.7rem; }

/* ----- ANIMATIONS ----- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeInUp 0.7s ease forwards; }
.animate-fade-in-delay-1 { opacity: 0; animation: fadeInUp 0.7s 0.1s ease forwards; }
.animate-fade-in-delay-2 { opacity: 0; animation: fadeInUp 0.7s 0.2s ease forwards; }
.animate-fade-in-delay-3 { opacity: 0; animation: fadeInUp 0.7s 0.3s ease forwards; }

/* ----- RESPONSIVE ----- */
@media (max-width: 992px) {
    .hero-shop { min-height: auto; padding: 70px 0; }
    .hero-shop h1 { font-size: clamp(2.6rem, 6vw, 4rem); }
    .hero-shop .lead { font-size: 0.9rem; }
    .hero-stats { gap: 20px; }
}

@media (max-width: 768px) {
    /* ----- TABLET NAVBAR (Medium height) ----- */
    .navbar {
        min-height: 68px;
        padding: 0.5rem 0;
    }
    .navbar-brand img {
        max-height: 44px;
    }
    .navbar-toggler {
        padding: 6px 8px;
    }
    .navbar-toggler-icon {
        width: 22px;
        height: 22px;
    }
    .navbar .nav-link {
        padding: 0.7rem 0.9rem !important;
        font-size: 0.68rem;
    }
    .navbar .nav-link::after {
        bottom: 5px;
    }
    .navbar-collapse {
        padding-top: 6px;
        padding-bottom: 4px;
    }
    
    /* ----- HERO SECTION ADJUSTMENTS ----- */
    .hero-shop { text-align: center; padding: 55px 0; }
    .hero-shop h1 { font-size: 2.4rem; }
    .hero-shop .lead { margin: 0 auto; font-size: 0.85rem; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 16px 24px; }
    .stat-divider { display: none; }
    .slider-btn { width: 36px; height: 36px; font-size: 0.9rem; opacity: 0.7; }
    .slider-dots { padding: 6px 14px; gap: 8px; }
    .slider-dot { width: 8px; height: 8px; }
    .slider-dot.active { width: 20px; }
    .section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 0.85rem; }
    .about-hero { min-height: 40vh; padding: 60px 0; }
    .btn-lg { padding: 0.85rem 2rem; font-size: 0.75rem; }
    
    /* Event Section Mobile */
    .event-badge {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .event-image-overlay {
        bottom: 10px;
        right: 10px;
        padding: 4px 14px;
        font-size: 0.65rem;
    }
    
    /* Founder Section Mobile */
    .founder-image-wrapper {
        margin-bottom: 30px;
    }

    /* Contact Page Mobile */
    .contact-hero {
        min-height: 30vh;
        padding: 60px 0;
    }
    .map-container {
        height: 220px;
    }
    .quick-contact-bar {
        padding: 24px 18px;
    }
    .quick-contact-bar h3 {
        font-size: 1.1rem;
    }
    .quick-link {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    .contact-card .btn {
        width: auto;
        font-size: 0.65rem;
        padding: 0.45rem 1.2rem;
        margin-bottom: 4px;
    }
}

@media (max-width: 576px) {
    /* ----- SMALL PHONE NAVBAR (Slightly shorter than tablet) ----- */
    .navbar {
        min-height: 60px;
        padding: 0.4rem 0;
    }
    .navbar-brand img {
        max-height: 38px;
    }
    .navbar-toggler {
        padding: 5px 7px;
    }
    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
    .navbar .nav-link {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.65rem;
    }
    .navbar .nav-link::after {
        bottom: 4px;
        left: 0.8rem;
        right: 0.8rem;
    }
    
    /* ----- HERO SECTION ADJUSTMENTS ----- */
    .hero-shop h1 { font-size: 1.9rem; }
    .hero-shop .lead { font-size: 0.8rem; }
    .service-card { padding: 20px 14px; }
    .service-icon { width: 48px; height: 48px; font-size: 1.2rem; }
    .service-card h4 { font-size: 0.9rem; }
    .service-card p { font-size: 0.78rem; }
    .value-card { padding: 24px 16px; }
    .slider-btn { width: 32px; height: 32px; font-size: 0.8rem; }
    .slider-prev { left: 8px; }
    .slider-next { right: 8px; }
    .slider-dots { padding: 4px 12px; gap: 6px; bottom: 12px; }
    .slider-dot { width: 6px; height: 6px; }
    .slider-dot.active { width: 16px; }
    .btn { width: 100%; padding: 0.75rem 1.2rem; font-size: 0.68rem; }
    
    /* Contact Page Mobile */
    .map-container {
        height: 180px;
    }
    .contact-card {
        padding: 24px 16px 22px;
    }
    .contact-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    .contact-number {
        font-size: 0.9rem;
    }
    .quick-contact-bar {
        padding: 20px 14px;
    }
    .quick-link {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    .contact-card .btn {
        font-size: 0.6rem;
        padding: 0.35rem 1rem;
        margin-bottom: 4px;
    }
}