/* =========================================================
   CREAM CORNER - CONTACT PAGE (FINAL PREMIUM RESPONSIVE CSS)
   ========================================================= */

/* --- 1. PAGE HEADER (Royal Brown & Gold) --- */
.page-header {
    background: linear-gradient(135deg, var(--cc-brown-dark) 0%, #2a201b 100%);
    padding: 160px 0 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 198, 0, 0.2);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    pointer-events: none;
}

.page-header::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 198, 0, 0.15);
    border-radius: 50%;
    bottom: -100px;
    left: -80px;
    pointer-events: none;
}

.page-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.15);
    border: 1px solid rgba(255, 198, 0, 0.4);
    color: #FFC600;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-header h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 80px);
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-header h1 span {
    color: #FFC600;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 25px;
}

.page-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-divider .line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFC600, transparent);
}

.page-divider i {
    color: #FFC600;
    font-size: 1.5rem;
}


/* --- 2. MAIN CONTACT SECTION (Left + Right) --- */
.contact-main-section {
    padding: 100px 0;
    background: #fffaf3;
}

/* LEFT: Elegant Cream & Gold Box */
.contact-left-box {
    background: #ffffff;
    border: 2px solid rgba(255, 198, 0, 0.2);
    border-radius: 25px;
    padding: 40px;
    height: 100%;
    position: relative;
    box-shadow: 0 15px 50px rgba(109, 60, 33, 0.08);
    overflow: hidden;
}

/* Decorative Top Gold Border */
.gold-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFC600, #FF7E00, #FFC600);
}

.premium-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.15);
    color: #FF7E00;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-left-box h2 {
    font-family: "Playfair Display", serif;
    color: #6d3c21;
    margin-bottom: 15px;
    font-size: 36px;
    font-weight: 700;
}

.contact-left-box .lead {
    color: #888;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1rem;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details-list li {
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon-circle {
    width: 55px;
    height: 55px;
    background: rgba(255, 126, 0, 0.1);
    border: 1px solid rgba(255, 198, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .detail-icon-circle {
    background: linear-gradient(135deg, #FFC600, #FF7E00);
    transform: scale(1.1);
}

.detail-icon-circle i {
    font-size: 1.3rem;
    color: #FF7E00;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .detail-icon-circle i {
    color: #ffffff;
}

.contact-detail-item strong {
    display: block;
    font-size: 1.1rem;
    font-family: "Playfair Display", serif;
    color: #6d3c21;
    margin-bottom: 5px;
}

.contact-detail-item span {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Circle Social Icons */
.follow-us-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-circle.instagram { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
.social-circle.facebook { background: #1877F2; }
.social-circle.whatsapp { background: #25D366; }

.social-circle:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* RIGHT: Premium Form Box */
.contact-form-box {
    background: #ffffff;
    border: 2px solid rgba(255, 198, 0, 0.2);
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 15px 50px rgba(109, 60, 33, 0.08);
    position: relative;
}

.form-top-tag {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #FFC600, #FF7E00);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 126, 0, 0.3);
}

.contact-form-box h2 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    color: #6d3c21;
    margin-bottom: 10px;
}

.contact-form-box p {
    color: #888;
    margin-bottom: 35px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #6d3c21;
    margin-bottom: 10px;
    display: block;
}

.contact-form .form-control,
.contact-form .form-select {
    background: #fffaf3;
    border: 2px solid #f0e0d0;
    border-radius: 12px;
    padding: 15px 18px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #FFC600;
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(255, 198, 0, 0.15);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form button[type="submit"] {
    background: linear-gradient(135deg, #2a201b 0%, #6d3c21 60%, #8a4b2a 100%);
    color: #FFC600 !important;
    border: 2px solid rgba(255, 198, 0, 0.3) !important;
    font-weight: 700 !important;
    padding: 16px 30px !important;
    border-radius: 999px !important;
    box-shadow: 0 10px 25px rgba(109, 60, 33, 0.4) !important;
    transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #8a4b2a 0%, #2a201b 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(109, 60, 33, 0.5) !important;
}


/* --- 3. CLICKABLE MAP SECTION --- */
.contact-map-section {
    padding: 0 0 100px;
    background: #fffaf3;
}

.clickable-map-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 4px solid #ffffff;
    margin-top: 40px;
}

.clickable-map-link {
    display: block;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.map-preview-area iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: 0;
    pointer-events: none; /* Map par click na ho, wrapper handle karega */
}

.map-direction-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 198, 0, 0.95);
    color: #6d3c21;
    padding: 15px 25px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 5;
}

.map-direction-overlay i {
    font-size: 1.3rem;
}

.clickable-map-link:hover .map-direction-overlay {
    background: #6d3c21;
    color: #FFC600;
    transform: translate(-50%, -50%) scale(1.05);
}

/* Floating Address Card */
.floating-map-card {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffffff;
    border: 2px solid rgba(255, 198, 0, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 320px;
    z-index: 10;
}

.floating-map-card i {
    font-size: 2rem;
    color: #FF7E00;
}

.floating-map-card div {
    display: flex;
    flex-direction: column;
}

.floating-map-card strong {
    font-family: "Playfair Display", serif;
    color: #6d3c21;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.floating-map-card span {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.5;
}


/* --- 4. INFO BOXES SECTION --- */
.contact-info-boxes-section {
    padding: 0 0 100px;
    background: #fffaf3;
}

.info-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255, 198, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 198, 0, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FFC600, #FF7E00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(255, 126, 0, 0.2);
    transition: all 0.3s ease;
}

.info-box:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
}

.info-box h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    color: #6d3c21;
    margin-bottom: 25px;
}

.info-box ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #f0e0d0;
    font-size: 0.9rem;
}

.info-box ul li:last-child {
    border-bottom: none;
}

.info-box ul li span:first-child {
    color: #888;
}

.info-box ul li span:last-child {
    color: #6d3c21;
    font-weight: 700;
}


/* --- 5. FAQ SECTION --- */
.contact-faq-section {
    padding: 0 0 100px;
    background: #fffaf3;
}

.accordion-item {
    background: #ffffff;
    border: 1px solid rgba(255, 198, 0, 0.25);
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 198, 0, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #6d3c21;
    background: #ffffff;
    box-shadow: none !important;
    padding: 25px;
}

.accordion-button:not(.collapsed) {
    background: #fffaf3;
    color: #FF7E00;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 198, 0, 0.5);
}

.accordion-body {
    color: #777;
    line-height: 1.8;
    background: #ffffff;
    padding: 25px;
    border-top: 1px solid rgba(255, 198, 0, 0.2);
}


/* =========================================================
   RESPONSIVE DESIGN (TABLE, MOBILE, SMALL MOBILE)
   ========================================================= */

/* Tablet & Small Laptop (max-width: 991px) */
@media (max-width: 991px) {
    .page-header {
        padding: 160px 0 60px;
    }

    .contact-main-section {
        padding: 70px 0;
    }

    .contact-left-box,
    .contact-form-box {
        padding: 30px;
    }

    .map-preview-area iframe {
        height: 350px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .page-header {
        padding: 100px 0 50px;
    }

    .page-header h1 {
        font-size: 38px;
    }

    .contact-main-section {
        padding: 50px 0;
    }

    .contact-left-box {
        padding: 25px;
        margin-bottom: 30px;
    }

    .contact-left-box h2,
    .contact-form-box h2 {
        font-size: 28px;
    }

    .contact-form-box {
        padding: 20px;
    }

    .form-top-tag {
        right: 15px;
        font-size: 0.75rem;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        padding: 12px 15px;
    }

    .contact-form button[type="submit"] {
        padding: 14px 20px !important;
    }

    .clickable-map-wrapper {
        border-radius: 15px;
        margin-top: 30px;
    }

    .map-preview-area iframe {
        height: 300px;
    }

    .map-direction-overlay {
        padding: 10px 15px;
        font-size: 0.875rem;
    }

    

    .info-box {
        padding: 25px;
    }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .page-header {
        padding: 80px 0 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .contact-left-box h2,
    .contact-form-box h2 {
        font-size: 24px;
    }

    .detail-icon-circle {
        width: 45px;
        height: 45px;
    }

    .detail-icon-circle i {
        font-size: 1.1rem;
    }

    .follow-us-icons {
        gap: 10px;
    }

    .social-circle {
        width: 40px;
        height: 40px;
    }

    .map-preview-area iframe {
        height: 250px;
    }

    .map-direction-overlay {
        padding: 10px 15px;
    }
}

/* Extra Small Mobile (max-width: 380px) */
@media (max-width: 380px) {
    .page-header h1 {
        font-size: 28px;
    }

    .contact-left-box,
    .contact-form-box {
        padding: 20px;
        border-radius: 15px;
    }

    .detail-icon-circle {
        width: 40px;
        height: 40px;
    }

    .detail-icon-circle i {
        font-size: 1rem;
    }

    .contact-detail-item {
        gap: 12px;
    }

    .follow-us-icons {
        gap: 8px;
    }

    .social-circle {
        width: 35px;
        height: 35px;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 15px;
    }
}


/* =========================================================
   REDUCE MOTION (Accessibility)
========================================================== */
@media (prefers-reduced-motion: reduce) {
    .contact-left-box,
    .contact-form-box,
    .info-box,
    .social-circle,
    .contact-detail-item .detail-icon-circle,
    .contact-form .form-control,
    .contact-form .form-select,
    .map-direction-overlay {
        transition: none !important;
    }

    .info-box:hover,
    .social-circle:hover,
    .contact-detail-item:hover .detail-icon-circle,
    .clickable-map-link:hover .map-direction-overlay {
        transform: none !important;
        box-shadow: none !important;
    }
}

/* =========================================================
   FOCUS STATES (Accessibility)
========================================================== */
.contact-form a:focus-visible,
.contact-form button:focus-visible,
.social-circle:focus-visible,
.clickable-map-link:focus-visible {
    outline: 3px solid rgba(255, 198, 0, 0.6);
    outline-offset: 4px;
}


/* =========================================================
   FLOATING ADDRESS CARD - CREAM CORNER
   ========================================================= */

/* Base Styles (Desktop/Laptop) */
.floating-address-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 198, 0, 0.3);
    border-radius: 15px;
    padding: 18px 22px;
    max-width: 330px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.floating-address-card h5 {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    color: #6d3c21;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.floating-address-card h5 i {
    font-size: 1.3rem;
    color: #FF7E00;
    flex-shrink: 0;
}

.floating-address-card p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}


/* ---------------- RESPONSIVE ---------------- */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .floating-address-card {
        max-width: 280px;
        padding: 15px 18px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .floating-address-card {
        /* Mobile par card ko top se hata kar bottom par le aao */
        top: auto;
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: 100%; /* Full width */
        padding: 12px 15px;
        border-radius: 12px;
        text-align: center;
    }

    .floating-address-card h5 {
        justify-content: center;
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .floating-address-card p {
        font-size: 0.8rem;
    }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .floating-address-card {
        padding: 10px 12px;
    }

    .floating-address-card h5 {
        font-size: 0.95rem;
    }

    .floating-address-card p {
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile (max-width: 380px) */
@media (max-width: 380px) {
    .floating-address-card {
        padding: 8px 10px;
    }

    .floating-address-card h5 {
        font-size: 0.9rem;
    }

    .floating-address-card p {
        font-size: 0.7rem;
    }
}


/* =========================================================
   REDUCE MOTION & FOCUS STATES
========================================================== */
@media (prefers-reduced-motion: reduce) {
    .floating-address-card {
        transition: none !important;
    }
}

.floating-address-card a:focus-visible {
    outline: 3px solid rgba(255, 198, 0, 0.6);
    outline-offset: 4px;
}

/* =========================================================
   CREAM CORNER - PREMIUM ROYAL FOOTER CSS (FULLY RESPONSIVE)
   ========================================================= */

/* --- BASE FOOTER BACKGROUND & DECORATION --- */
.footer-section {
    background: linear-gradient(135deg, #2a201b 0%, #3e2a1e 50%, #2a201b 100%);
    color: #d1c7c0;
    position: relative;
    overflow: hidden;
}

/* Decorative Top Golden Line */
.footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFC600, #FF7E00, #FFC600, transparent);
}

/* Glow Effect */
.footer-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 198, 0, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

/* --- HEADINGS (GOLD UNDERLINE) --- */
.footer-heading {
    color: #FFC600;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.2rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FFC600, #FF7E00);
    border-radius: 10px;
}

/* --- BRAND & TAGLINE --- */
.footer-company-name {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: #FFC600;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(255, 198, 0, 0.3);
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #d1c7c0;
}

/* --- 100% HYGIENE PROMISE BOX --- */
.hygiene-promise-box {
    background: rgba(255, 198, 0, 0.1);
    border: 1px solid rgba(255, 198, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.hygiene-promise-box:hover {
    background: rgba(255, 198, 0, 0.15);
    border-color: rgba(255, 198, 0, 0.5);
}

.hygiene-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFC600, #FF7E00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #2a201b;
    flex-shrink: 0;
}

.hygiene-promise-box strong {
    display: block;
    font-size: 1rem;
    color: #FFC600;
    margin-bottom: 5px;
}

.hygiene-promise-box span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* --- QUICK LINKS --- */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1c7c0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: #FFC600;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #FFC600;
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* --- CONTACT INFO --- */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact li > i {
    color: #FFC600;
    width: 25px;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li div {
    display: flex;
    flex-direction: column;
}

.footer-contact li strong {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.footer-contact li span,
.footer-contact li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact li a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact li a:hover {
    color: #FFC600;
}

/* --- MINI MAP --- */
.footer-mini-map {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 198, 0, 0.3);
    width: 100%;
    max-width: 280px;
}

.footer-mini-map iframe {
    width: 100%;
    height: 150px;
    display: block;
}

.footer-mini-map .map-view-btn {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(42, 32, 27, 0.9);
    color: #FFC600;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 999px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-mini-map .map-view-btn:hover {
    background: #FFC600;
    color: #2a201b;
}

/* --- SOCIAL ICONS --- */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #d1c7c0;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, #FFC600, #FF7E00);
    color: #2a201b;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 198, 0, 0.4);
}

/* --- FOOTER COUNTERS SECTION --- */

/* --- NEWSLETTER SECTION --- */
.newsletter-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 198, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 198, 0, 0.1), transparent 70%);
    border-radius: 50%;
}

.newsletter-icon {
    font-size: 2.5rem;
    color: #FFC600;
}

.newsletter-left h5 {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    color: #FFC600;
}

.newsletter-left p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 198, 0, 0.3);
    border-radius: 50px;
    padding: 14px 20px;
    font-size: 0.95rem;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    border-color: #FFC600;
    box-shadow: 0 0 0 4px rgba(255, 198, 0, 0.1);
}

.newsletter-form button {
    background: linear-gradient(135deg, #FFC600, #FF7E00);
    color: #2a201b;
    border: none;
    border-radius: 50px;
    padding: 14px 25px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 198, 0, 0.4);
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 25px;
    margin-top: 25px;
}

.footer-bottom-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    align-items: center;
    gap: 18px;
    font-size: 1.0rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
    min-width: 0;
}

.footer-bottom-left {
    text-align: left;
}

.footer-bottom-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.footer-bottom-right {
    text-align: right;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #FFC600;
}

.designed-by {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    flex-wrap: wrap;
}

.developer-link {
    color: #FFC600;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}


/* =========================================================
   RESPONSIVE (TABLET, MOBILE, SMALL MOBILE)
   ========================================================= */

/* --- TABLET (max-width: 991px) --- */
@media (max-width: 991px) {
    .footer-bottom-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 8px;
    }

    .footer-bottom-left,
    .footer-bottom-right,
    .footer-bottom-center {
        text-align: center;
        justify-content: center;
    }

    .footer-bottom-center {
        flex-direction: column;
        gap: 6px;
    }

    .designed-by {
        justify-content: center;
    }

    .footer-heading {
        font-size: 1.1rem;
    }
    
    .counter-box {
        padding: 20px;
    }
    
    .counter-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .counter-number {
        font-size: 1.5rem;
    }
    
    .footer-mini-map {
        max-width: 250px;
    }
}

/* --- MOBILE (max-width: 767px) --- */
@media (max-width: 767px) {
    .footer-section {
        padding: 60px 0 !important;
    }
    
    .footer-brand {
        gap: 10px;
    }
    
    .footer-company-name {
        font-size: 1.3rem;
    }
    
    .footer-desc {
        font-size: 14px;
    }
    
    .hygiene-promise-box {
        padding: 15px;
    }
    
    .footer-mini-map {
        max-width: 100%;
    }
    
    .footer-mini-map iframe {
        height: 180px;
    }
    
    .newsletter-box {
        padding: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        text-align: center;
    }
    
    .footer-bottom p {
        flex-direction: column;
        gap: 5px;
    }
}

/* --- SMALL MOBILE (max-width: 575px) --- */
@media (max-width: 575px) {
    .footer-company-name {
        font-size: 1.2rem;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .counter-box {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .counter-box div {
        text-align: center;
    }
    
    .counter-label {
        font-size: 0.75rem;
    }
    
    .newsletter-left {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .newsletter-left .d-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-left h5 {
        font-size: 1.1rem;
    }
}

/* --- EXTRA SMALL MOBILE (max-width: 380px) --- */
@media (max-width: 380px) {
    .footer-company-name {
        font-size: 1.1rem;
    }
    
    .footer-tagline {
        font-size: 0.75rem;
    }
    
    .hygiene-promise-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .counter-number {
        font-size: 1.3rem;
    }
    
    .counter-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .newsletter-box {
        padding: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}


/* =========================================================
   REDUCE MOTION & FOCUS STATES (Accessibility)
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    .footer-links a,
    .footer-contact a,
    .social-links a,
    .developer-link,
    .footer-mini-map .map-view-btn,
    .newsletter-form button {
        transition: none !important;
    }
    
    .social-links a:hover {
        transform: none !important;
    }
}

.footer-links a:focus-visible,
.footer-contact a:focus-visible,
.social-links a:focus-visible,
.developer-link:focus-visible,
.footer-bottom-link:focus-visible,
.newsletter-form button:focus-visible {
    outline: 3px solid rgba(255, 198, 0, 0.6);
    outline-offset: 4px;
}