 /* Hero Section */
        .contact-us-page .hero-section {
            /* background: linear-gradient(135deg, #E91E63 0%, #FF9800 100%); */
            background-image: url('../image/contact.png');
            color: white;
            padding: 3rem 0;
            margin-bottom: 0;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 195px;
        }

        .contact-us-page .hero-section h1 {
            font-size: 2.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .contact-us-page .hero-section p {
            font-size: 1.15rem;
            opacity: 0.95;
        }


        /* Contact Info Cards */
        .contact-us-page .contact-info-section {
            padding: 3rem 0;
            background: #f8f9fa;
        }

        .contact-us-page .info-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }

        .contact-us-page .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .contact-us-page .info-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #E91E63 0%, #FF9800 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.75rem;
        }

        .contact-us-page .info-card h3 {
            color: #E91E63 ;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .contact-us-page .info-card p {
            color: #666;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .contact-us-page .info-card a {
            color: #E91E63 ;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .contact-us-page .info-card a:hover {
            color: #cc5500;
        }

        /* Contact Form Section */
        .contact-us-page .contact-form-section {
            padding: 4rem 0;
            background: white;
        }

        .contact-us-page .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #E91E63 ;
            margin-bottom: 1rem;
            text-align: center;
        }

        .contact-us-page .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            text-align: center;
            margin-bottom: 3rem;
        }

        .contact-us-page .contact-form-wrapper {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
            background-image: url(../image/contactfrom.png);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .contact-us-page .form-label {
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .contact-us-page .form-control, .form-select {
            padding: 0.75rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
            background: #ffffffb5
        }

        .contact-us-page .form-control:focus, .form-select:focus {
            border-color: #E91E63 ;
            box-shadow: 0 0 0 0.2rem rgba(0, 102, 178, 0.15);
        }

        .contact-us-page .required-field::after {
            content: " *";
            color: #dc3545;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .contact-us-page .submit-btn {
            background: #cc5500;
            color: white;
            padding: 1rem 3rem;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .contact-us-page .submit-btn:hover {
            background: #aa4500;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(204, 85, 0, 0.3);
        }

        .contact-us-page .submit-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        /* FAQ Section */
        .contact-us-page .faq-section {
            padding: 4rem 0;
            background: #f8f9fa;
        }

        .contact-us-page .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .contact-us-page .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #E91E63 ;
            background: white;
            transition: background 0.3s;
        }

        .contact-us-page .faq-question:hover {
            background: #f8f9fa;
        }

        .contact-us-page .faq-question i {
            transition: transform 0.3s;
            color: #cc5500;
        }

        .contact-us-page .faq-question.active i {
            transform: rotate(180deg);
        }

        .contact-us-page .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease-out;
            color: #666;
        }

        .contact-us-page .faq-answer.active {
            padding: 1.5rem;
            max-height: 500px;
        }

        /* Map Section */
        .contact-us-page .map-section {
            padding: 4rem 0;
            background: white;
        }

        .contact-us-page .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            height: 100%;
        }

        .contact-us-page .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Business Hours */
        .contact-us-page .hours-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .contact-us-page .hours-card h3 {
            color: #E91E63 ;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .contact-us-page .hours-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-us-page .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid #ddd;
            font-size: 1.05rem;
        }

        .contact-us-page .hours-list li:last-child {
            border-bottom: none;
        }

        .contact-us-page .day {
            font-weight: 600;
            color: #333;
        }

        .contact-us-page .time {
            color: #666;
        }

        .contact-us-page .time.closed {
            color: #dc3545;
        }

        /* Success Message */
        .contact-us-page .success-message {
            display: none;
            background: #d4edda;
            border: 2px solid #28a745;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .contact-us-page .success-message.show {
            display: block;
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-us-page .success-message i {
            color: #28a745;
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .contact-us-page .success-message h4 {
            color: #28a745;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        /* Social Media Links */
        .contact-us-page .social-section {
            padding: 3rem 0;
            background: linear-gradient(135deg, #E91E63 0%, #FF9800 100%);
            color: white;
            text-align: center;
        }

        .contact-us-page .social-section h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .contact-us-page .social-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .contact-us-page .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .contact-us-page .social-link {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #cc5500;
            font-size: 1.75rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .contact-us-page .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            color: #E91E63 ;
        }

        @media (max-width: 768px) {
            .contact-us-page .hero-section h1 {
                font-size: 2rem;
            }

            .contact-us-page .contact-form-wrapper {
                padding: 2rem 1rem;
            }
        }