
    /* ========== CONTACT PAGE CUSTOM STYLES ========== */
    .nav-link { color:#FFF !important }
    .topbar-toolbar a { color:#FFF !important }

    .contact-hero {
        background: linear-gradient(135deg, #812529 0%, #a0373c 100%);
        padding: 80px 0 60px;
        position: relative;
        overflow: hidden;
    }

    .contact-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(rgba(212, 175, 55, 0.15) 1.5px, transparent 1.5px);
        background-size: 25px 25px;
        pointer-events: none;
    }

    .contact-hero-content {
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .contact-hero h1 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 56px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }

    .contact-hero p {
        font-size: 18px;
        color: rgba(255,255,255,0.9);
        max-width: 600px;
        margin: 0 auto;
        font-family: 'Petit Formal Script', cursive;
    }

    .gold-divider {
        width: 80px;
        height: 3px;
        background: #d4af37;
        margin: 20px auto 0;
        border-radius: 3px;
    }

    /* Contact Cards */
    .contact-card {
        background: white;
        border-radius: 20px;
        padding: 35px 25px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border: 1px solid rgba(212, 175, 55, 0.15);
        height: 100%;
    }

    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(129, 37, 41, 0.1);
        border-color: rgba(212, 175, 55, 0.3);
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        background: #fef5e8;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .contact-icon i {
        font-size: 32px;
        color: #812529;
    }

    .contact-card h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 24px;
        font-weight: 600;
        color: #812529;
        margin-bottom: 12px;
    }

    .contact-card p, .contact-card a {
        font-size: 15px;
        color: #6a6a6a;
        line-height: 1.6;
        text-decoration: none;
        display: block;
        margin-bottom: 5px;
        transition: color 0.3s;
    }

    .contact-card a:hover {
        color: #d4af37;
    }

    /* Contact Form Section */
    .form-section {
        padding: 70px 0;
        background: #fff;
    }

    .section-title-custom {
        font-family: 'Cormorant Garamond', serif;
        font-size: 38px;
        font-weight: 600;
        color: #812529;
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
    }

    .section-title-custom::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: #d4af37;
    }

    .contact-form-wrapper {
        background: #fefaf5;
        border-radius: 30px;
        padding: 40px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .form-control, .form-select {
        background: white;
        border: 1px solid #e0d6cc;
        border-radius: 12px;
        padding: 12px 18px;
        font-size: 14px;
        transition: all 0.3s;
    }

    .form-control:focus, .form-select:focus {
        border-color: #d4af37;
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        outline: none;
    }

    .btn-submit {
        background: #812529;
        color: white;
        border: none;
        padding: 14px 35px;
        border-radius: 50px;
        font-weight: 500;
        letter-spacing: 1px;
        transition: all 0.3s;
        font-size: 14px;
    }

    .btn-submit:hover {
        background: #d4af37;
        color: #812529;
        transform: translateY(-2px);
    }

    /* Map Section */
    .map-section {
        padding: 0 0 70px;
    }

    .map-container {
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .map-container iframe {
        width: 100%;
        height: 400px;
        display: block;
        filter: grayscale(10%) contrast(95%);
    }

    /* Business Hours */
    .hours-card {
        background: linear-gradient(145deg, #fff9f5, #fefaf5);
        border-radius: 25px;
        padding: 30px;
        text-align: center;
        border: 1px solid rgba(212, 175, 55, 0.2);
        height: 100%;
    }

    .hours-card h4 {
        font-family: 'Cormorant Garamond', serif;
        color: #812529;
        font-size: 26px;
        margin-bottom: 20px;
    }

    .hours-list {
        list-style: none;
        padding: 0;
    }

    .hours-list li {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px dashed #e0d6cc;
        font-size: 15px;
    }

    .hours-list li span:first-child {
        font-weight: 500;
        color: #812529;
    }

    .hours-list li span:last-child {
        color: #6a6a6a;
    }

    .holiday-note {
        font-size: 13px;
        color: #d4af37;
        margin-top: 15px;
        font-style: italic;
    }

    /* FAQ Accordion */
    .faq-section {
        background: #fefaf5;
        padding: 70px 0;
    }

    .accordion-item-custom {
        background: white;
        border: 1px solid rgba(212, 175, 55, 0.2);
        border-radius: 16px !important;
        margin-bottom: 15px;
        overflow: hidden;
    }

    .accordion-button-custom {
        background: white;
        padding: 18px 25px;
        font-weight: 600;
        color: #812529;
        font-size: 16px;
        border: none;
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: 0.3s;
    }

    .accordion-button-custom:hover {
        background: #fef5e8;
    }

    .accordion-button-custom i {
        color: #d4af37;
        transition: 0.3s;
    }

    .accordion-content-custom {
        padding: 0 25px 20px 25px;
        display: none;
        color: #6a6a6a;
        line-height: 1.7;
        font-size: 14px;
    }

    .accordion-content-custom.show {
        display: block;
    }

    /* CTA Banner */
    .cta-banner-custom {
        background: linear-gradient(135deg, #812529 0%, #a0373c 100%);
        margin: 30px 0 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .contact-hero h1 { font-size: 40px; }
        .contact-hero p { font-size: 16px; }
        .section-title-custom { font-size: 32px; }
        .contact-form-wrapper { padding: 25px; }
        .map-container iframe { height: 300px; }
    }

    @media (max-width: 576px) {
        .contact-card { padding: 25px 20px; }
        .hours-list li { flex-direction: column; align-items: center; gap: 5px; }
    }