  :root {
            --primary-blue: #1C538E;
            --primary-orange: #F96300;
            --text-dark: #1A1A1A;
            --text-light: #666666;
            --light-gray: #F5F5F5;
            --border-color: #E0E0E0;
        }

  .page-header{
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("/assets/front/img/page-header.webp");
    background-position: top;
    background-size: cover;
    padding: 70px 0px;
    background-repeat: no-repeat;
}


        /* Header */
        .booking-header {
            text-align: left;
           
        }

        .booking-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .contact-header p {
            font-size: 1.1rem;
            opacity: 0.95;
        }

       
        /* Contact Cards Section */
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .contact-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border-top: 4px solid var(--primary-orange);
            transition: all 0.3s ease;
            text-align: center;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .contact-card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, #0F3A5F 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: white;
        }

        .contact-card h3 {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .contact-card-content {
            color: var(--text-light);
            line-height: 1.8;
        }

        .contact-card a {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-card a:hover {
            color: var(--primary-blue);
        }

        /* Two Column Layout */
        .contact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        @media (max-width: 768px) {
            .contact-section {
                grid-template-columns: 1fr;
            }
        }

        /* Contact Form */
        .contact-form {
            background: var(--light-gray);
            padding: 30px;
            border-radius: 15px;
            border-left: 4px solid var(--primary-orange);
        }

        .contact-form h3 {
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .form-control, .form-select {
            border: 2px solid var(--border-color);
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.2rem rgba(249, 99, 0, 0.1);
            outline: none;
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: var(--primary-orange);
            color: white;
            border: none;
            padding: 14px 40px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            background: #E85D00;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(249, 99, 0, 0.3);
        }

        /* Map Section */
        .map-container {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .map-frame {
            width: 100%;
            height: 400px;
            border: none;
        }

        .map-info {
            padding: 30px;
            background: white;
        }

        .map-info h3 {
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .map-info p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 10px;
        }

        /* Office Hours */
        .office-hours {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border-top: 4px solid var(--primary-blue);
            margin-top: 40px;
        }

        .office-hours h3 {
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-weight: 700;
            font-size: 1.3rem;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .hours-item {
            padding: 15px;
            background: var(--light-gray);
            border-radius: 8px;
            border-left: 3px solid var(--primary-orange);
        }

        .hours-day {
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }

        .hours-time {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: var(--primary-orange);
            transform: translateY(-5px);
        }

        /* Success Message */
        .success-message {
            display: none;
            background: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
        }

        .success-message.show {
            display: block;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-header h1 {
                font-size: 2rem;
            }

            .contact-section {
                gap: 20px;
            }

            .map-frame {
                height: 300px;
            }
        }