/* Page Header */
        .page-header {
            background: linear-gradient(135deg, rgba(128, 0, 0, 0.95), rgba(92, 0, 0, 0.9)),
                        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            color: var(--white);
        }

        .page-header h1 {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .page-header p {
            font-size: 20px;
            opacity: 0.95;
        }

        /* Breadcrumb */
        .breadcrumb-section {
            background: var(--light-bg);
            padding: 20px 0;
        }

        .breadcrumb {
            display: flex;
            gap: 10px;
            font-size: 14px;
            align-items: center;
        }

        .breadcrumb a {
            color: var(--primary-maroon);
            text-decoration: none;
        }

        .breadcrumb span {
            color: var(--text-light);
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: var(--white);
        }

        /* Contact Header */
        .contact-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .contact-header h2 {
            font-size: 42px;
            color: var(--primary-maroon);
            margin-bottom: 15px;
        }

        .contact-header p {
            color: var(--text-light);
            font-size: 17px;
            line-height: 1.8;
        }

        /* Contact Cards Grid */
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 50px;
        }

        .contact-card {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 30px 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px var(--shadow);
        }

        .contact-card .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 24px;
            margin: 0 auto 18px;
        }

        .contact-card h3 {
            font-size: 18px;
            color: var(--primary-maroon);
            margin-bottom: 10px;
        }

        .contact-card p {
            color: var(--text-dark);
            font-size: 15px;
            margin: 0;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .contact-card a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
            word-break: break-word;
        }

        .contact-card a:hover {
            color: var(--primary-maroon);
        }

        .contact-desc {
            display: block;
            font-size: 13px;
            color: var(--text-light);
            margin-top: 8px;
        }

        /* Map Section */
        .map-section {
            margin-top: 60px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .map-container {
            position: relative;
            width: 100%;
            height: 450px;
            background: var(--light-bg);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Working Hours */
        .working-hours {
            background: var(--light-bg);
            padding: 80px 0;
        }

        .working-hours h2 {
            text-align: center;
            font-size: 42px;
            color: var(--primary-maroon);
            margin-bottom: 50px;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .hours-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .hours-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px var(--shadow);
        }

        .hours-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 30px;
            margin: 0 auto 20px;
        }

        .hours-card h3 {
            font-size: 20px;
            color: var(--primary-maroon);
            margin-bottom: 15px;
        }

        .hours-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Quick Contact Buttons */
        .quick-contact {
            padding: 60px 0;
            background: var(--white);
        }

        .quick-contact h2 {
            text-align: center;
            font-size: 42px;
            color: var(--primary-maroon);
            margin-bottom: 20px;
        }

        .quick-contact p {
            text-align: center;
            color: var(--text-light);
            font-size: 18px;
            margin-bottom: 40px;
        }

        .quick-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .quick-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .quick-btn i {
            font-size: 20px;
        }

        .quick-btn-call {
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--accent-gold);
            box-shadow: 0 5px 20px rgba(128, 0, 0, 0.3);
        }

        .quick-btn-call:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(128, 0, 0, 0.4);
        }

        .quick-btn-whatsapp {
            background: var(--success-green);
            color: var(--white);
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
        }

        .quick-btn-whatsapp:hover {
            background: #20BA5A;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
        }

        /* ===================== Contact Form ===================== */
        .contact-form-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .contact-form-wrap {
            max-width: 760px;
            margin: 0 auto;
        }

        .contact-form-head {
            text-align: center;
            margin-bottom: 40px;
        }

        .contact-form-head h2 {
            font-size: 42px;
            color: var(--primary-maroon);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .contact-form-head p {
            color: var(--text-light);
            font-size: 17px;
            line-height: 1.6;
        }

        .contact-form-card {
            background: var(--white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 40px var(--shadow);
            border-top: 4px solid var(--primary-maroon);
        }

        .contact-form-alert {
            display: none;
            padding: 14px 18px;
            border-radius: 8px;
            margin-bottom: 22px;
            font-weight: 500;
            font-size: 15px;
            border-left: 4px solid;
        }

        .contact-form-alert.is-success {
            background: #e8f5e9;
            color: #1b5e20;
            border-left-color: var(--success-green);
        }

        .contact-form-alert.is-error {
            background: #fdecea;
            color: #b71c1c;
            border-left-color: #d32f2f;
        }

        .cf-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 18px;
        }

        .cf-field {
            margin-bottom: 18px;
            position: relative;
        }

        .cf-field label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 14px;
            color: var(--text-dark);
        }

        .cf-field label .req {
            color: #d32f2f;
            margin-left: 2px;
        }

        .cf-field input,
        .cf-field textarea {
            width: 100%;
            padding: 13px 16px;
            border: 1.5px solid var(--border-color);
            border-radius: 10px;
            font-size: 15px;
            font-family: inherit;
            color: var(--text-dark);
            background: var(--white);
            transition: border-color .2s ease, box-shadow .2s ease;
        }

        .cf-field input:focus,
        .cf-field textarea:focus {
            outline: none;
            border-color: var(--primary-maroon);
            box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
        }

        .cf-field textarea {
            resize: vertical;
            min-height: 130px;
            line-height: 1.5;
        }

        .cf-field .icon {
            position: absolute;
            right: 16px;
            top: 41px;
            color: var(--text-light);
            font-size: 16px;
            pointer-events: none;
        }

        .cf-honeypot {
            position: absolute !important;
            left: -9999px !important;
            top: -9999px !important;
            opacity: 0;
            height: 0;
            width: 0;
        }

        .cf-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--accent-gold);
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(128, 0, 0, 0.3);
            transition: transform .2s ease, box-shadow .2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            letter-spacing: 0.3px;
        }

        .cf-submit:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(128, 0, 0, 0.4);
        }

        .cf-submit:disabled {
            opacity: 0.65;
            cursor: not-allowed;
            transform: none;
        }

        .cf-submit i {
            font-size: 18px;
        }

        .cf-foot-note {
            text-align: center;
            margin-top: 18px;
            color: var(--text-light);
            font-size: 13px;
        }

        .cf-foot-note i {
            color: var(--primary-maroon);
            margin-right: 4px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-header {
                padding: 40px 0;
            }

            .page-header h1 {
                font-size: 24px;
                margin-bottom: 8px;
            }

            .page-header p {
                font-size: 14px;
            }

            .breadcrumb-section {
                padding: 12px 0;
            }

            /* Contact */
            .contact-section {
                padding: 30px 0;
            }

            .contact-header {
                margin-bottom: 25px;
            }

            .contact-header h2 {
                font-size: 24px;
                margin-bottom: 10px;
            }

            .contact-header p {
                font-size: 14px;
                line-height: 1.6;
            }

            .contact-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                margin-bottom: 25px;
            }

            .contact-card {
                padding: 18px 14px;
                border-radius: 10px;
            }

            .contact-card:hover {
                transform: none;
            }

            .contact-card .contact-icon {
                width: 44px;
                height: 44px;
                border-radius: 10px;
                font-size: 18px;
                margin-bottom: 12px;
            }

            .contact-card h3 {
                font-size: 14px;
                margin-bottom: 6px;
            }

            .contact-card p {
                font-size: 13px;
            }

            .contact-desc {
                font-size: 11px;
                margin-top: 5px;
            }

            /* Map */
            .map-section {
                margin-top: 25px;
                border-radius: 12px;
            }

            .map-container {
                height: 250px;
            }

            /* Working Hours */
            .working-hours {
                padding: 30px 0;
            }

            .working-hours h2 {
                font-size: 22px;
                margin-bottom: 25px;
            }

            .hours-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .hours-card {
                padding: 20px;
                border-radius: 10px;
            }

            .hours-card:hover {
                transform: none;
            }

            .hours-icon {
                width: 50px;
                height: 50px;
                font-size: 22px;
                margin-bottom: 12px;
            }

            .hours-card h3 {
                font-size: 16px;
                margin-bottom: 8px;
            }

            .hours-card p {
                font-size: 13px;
                line-height: 1.6;
            }

            /* Quick Contact */
            .quick-contact {
                padding: 30px 0;
            }

            .quick-contact h2 {
                font-size: 22px;
                margin-bottom: 10px;
            }

            .quick-contact p {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .quick-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }

            .quick-btn {
                justify-content: center;
                padding: 14px 24px;
                font-size: 15px;
                border-radius: 12px;
            }

            .quick-btn i {
                font-size: 18px;
            }

            /* Contact Form */
            .contact-form-section {
                padding: 40px 0;
            }

            .contact-form-head h2 {
                font-size: 26px;
                margin-bottom: 8px;
            }

            .contact-form-head p {
                font-size: 14px;
            }

            .contact-form-card {
                padding: 24px 20px;
                border-radius: 12px;
            }

            .cf-row {
                grid-template-columns: 1fr;
                gap: 0;
                margin-bottom: 0;
            }

            .cf-field input,
            .cf-field textarea {
                padding: 12px 14px;
                font-size: 14px;
                border-radius: 8px;
            }

            .cf-field .icon {
                top: 38px;
            }

            .cf-submit {
                padding: 14px;
                font-size: 15px;
            }
        }
/* ---------------------------------------------------------------------------
   Form feedback states. The legacy page toggled these with inline styles from
   JavaScript, so the colours lived in a <script> block.
   --------------------------------------------------------------------------- */
.contact-form-alert { display: none; }

.contact-form-alert.is-visible {
    display: block;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 14px;
}

.contact-form-alert.is-success { background: #e1eee7; color: #2e6b4f; }
.contact-form-alert.is-error   { background: #f8e6e3; color: #a81e12; }
.contact-form-alert.is-pending { background: #f1f1ef; color: #55565b; }

.cf-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}
