/* Main Styles */
    .contact-page {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        line-height: 1.6;
    }

    .contact-hero {
        background-color: #ff6423;
        background-size: cover;
        background-position: center;
        color: white;
        padding: 20px 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .contact-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
    }

    /* Contact Form */
    .contact-form-card {
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 30px;
        margin-bottom: 30px;
        height: 100%;
    }

    .contact-form-card h2 {
        color: #2c3e50;
        margin-bottom: 25px;
        font-size: 1.8rem;
    }

    .contact-form-card h2 i {
        color: #ff6423;
        margin-right: 10px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-control {
        border-radius: 4px;
        border: 1px solid #ddd;
        
    }

    .btn-primary {
        background-color: #ff6423;
        border: none;
        padding: 12px 25px;
        font-weight: 600;
    }

    .btn-primary:hover {
        background-color: #e55b1f;
    }

    /* Contact Info */
    .contact-info-card {
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 30px;
        height: 100%;
    }

    .contact-info-section {
        margin-bottom: 30px;
    }

    .contact-info-section h2 {
        color: #2c3e50;
        font-size: 1.5rem;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .contact-info-section h2 i {
        color: #ff6423;
        margin-right: 10px;
        font-size: 1.2rem;
    }

    .contact-details {
        list-style: none;
        padding: 0;
    }

    .contact-details li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .contact-details i {
        width: 25px;
        color: #ff6423;
    }

    .contact-details a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s;
    }

    .contact-details a:hover {
        color: #ff6423;
    }

    .business-hours {
        list-style: none;
        padding: 0;
    }

    .business-hours li {
        margin-bottom: 8px;
    }

    .business-hours span {
        font-weight: 600;
        display: inline-block;
        width: 120px;
    }

    /* Map */
    .map-container {
        margin-top: 20px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .map-container iframe {
        width: 100%;
        height: 250px;
        border: 0;
    }

    /* Social Media */
    .social-media {
        margin-top: 30px;
    }

    .social-media h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .social-icons {
        display: flex;
        gap: 15px;
    }

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #f5f5f5;
        border-radius: 50%;
        color: #333;
        transition: all 0.3s;
    }

    .social-icons a:hover {
        background: #ff6423;
        color: white;
        transform: translateY(-3px);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .contact-form-card,
        .contact-info-card {
            margin-bottom: 30px;
        }
    }