/* ===================================
   Contact Us Page - Homepage Style
   =================================== */

/* ===================================

/* ===================================
   Main Page Container
   =================================== */
.contact-us-page {
    padding: 60px 0;
    min-height: 100vh;
}

.contact-us-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Header Section - Banner with bg-peach
   =================================== */
.contact-header {
    width: 100%;
    padding: 80px 0 60px;
    text-align: center;
}

.contact-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-subtitle {
    font-family: 'Kedebideri', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #47d5ff;     
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
}

.contact-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;     
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-description {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   UAE Office Section
   =================================== */
.uae-office-section {
    background-color: #1b262c;
    border-radius: 10px;
    padding: 50px 40px;
    margin: 0 0 80px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.uae-office-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.uae-office-subtitle {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #47d5ff;
    margin-bottom: 20px;
}

.uae-office-description {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   Contact Content (Two Column Layout)
   =================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
}

/* -----------------------------------
   Left Column: Contact Form Card
   ----------------------------------- */
.contact-form-card {
    border-radius: 10px;
    padding: 50px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.contact-form-card .form-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.contact-form-card .form-section-description {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1rem;
    color: #000;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-form-card .form-message {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1rem;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-weight: 500;
}

.contact-form-card .form-message.form-success {
    background-color: #47d5ff;
    color: #155724;
}

.contact-form-card .form-message.form-error {
    background-color: #47d5ff;
    color: #721c24;
}

.contact-form-card .contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form-card .contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-card .contact-form .form-group label {
    font-family: 'Kedebideri', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
}

.contact-form-card .contact-form .form-group input,
.contact-form-card .contact-form .form-group textarea {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1rem;
    padding: 12px 15px;
    border: 2px solid #47d5ff;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form-card .contact-form .form-group input:focus,
.contact-form-card .contact-form .form-group textarea:focus {
    outline: none;
    border-color: #47d5ff;
}

.contact-form-card .contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form-card .contact-form .submit-button {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    background-color: #47d5ff;
    border: none;
    border-radius: 5px;
    padding: 15px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.contact-form-card .contact-form .submit-button:hover {
    background-color: #47d5ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 115, 170, 0.3);
}

/* -----------------------------------
   Right Column: Contact Info Card
   ----------------------------------- */
.contact-info-card {
    border-radius: 10px;
    padding: 50px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.contact-info-card .info-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom:  20px;   
}

.contact-info-card .info-description {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1rem;
    color: #000;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-info-card .contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card .contact-details .contact-item {
    display: flex;
    gap: 20px;   
    align-items: flex-start;    
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-card .contact-details .contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-card .contact-details .contact-item .contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: #47d5ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.contact-info-card .contact-details .contact-item .contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-card .contact-details .contact-item .contact-text h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 8px;
}

.contact-info-card .contact-details .contact-item .contact-text p {
    font-family: 'Kedebideri', sans-serif;
    font-size: 0.95rem;
    color: #000;     
    line-height: 1.7;
    margin-bottom: 5px;
}

.contact-info-card .contact-details .contact-item .contact-text p:last-child {
    margin-bottom: 0;
}

/* ===================================
   Customer Support Section
   =================================== */
.support-section-card {
    margin-bottom: 60px;
}

.support-section-card .support-section {
    background-color: #0a0a0a;
    border-radius: 10px;
    padding: 50px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
        transition: all 0.3s ease;
}

.support-section-card .support-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.support-section-card .support-section .support-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.support-section-card .support-section .support-section-description {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.7;
}

.support-section-card .support-section .support-email {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1.1rem;
    color: #47d5ff;   
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    padding: 12px 30px;
    background-color: #0a0a0a;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.support-section-card .support-section .support-email:hover {
    background-color: #47d5ff;
    color: #ffffff;
}

.support-section-card .support-section .support-note {
    font-family: 'Kedebideri', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    font-style: italic;
}

/* ===================================
   Business Enquiries Section
   =================================== */
.business-section-card {
    margin-bottom: 60px;
}

.business-section-card .business-section {
    background-color: #0a0a0a;
    border-radius: 10px;
    padding: 50px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.business-section-card .business-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.business-section-card .business-section .business-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px; 
}

.business-section-card .business-section .business-section-description {
        font-family: 'Kedebideri', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 20px; 
    line-height: 1.7;
}

.business-section-card .business-section .business-email {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1.1rem;
    color: #47d5ff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    padding: 12px 30px;
    background-color: #0a0a0a;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.business-section-card .business-section .business-email:hover {
    background-color: #47d5ff;
    color: #ffffff;
}

/* ===================================
   Google Map Section
   =================================== */
.map-section {
    margin-bottom: 60px;
}

.map-section .map-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.map-section .map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-section .map-container:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.map-section .map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: none;
}

/* ===================================
   Social Media Section
   =================================== */
.social-section-card {
    margin-bottom: 80px;
}

.social-section-card .social-section {
    background-color: #0a0a0a;
    border-radius: 10px;
    padding: 50px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.social-section-card .social-section:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.social-section-card .social-section .social-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.social-section-card .social-section .social-description {
            font-family: 'Kedebideri', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-section-card .social-section .social-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.social-section-card .social-section .social-icons .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Kedebideri', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}


.social-section-card .social-section .social-icons .social-icon svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-section-card .social-section .social-icons .social-icon span {
    white-space: nowrap;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 3rem;
    }
    
    .uae-office-title {
        font-size: 2.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-header {
        padding: 60px 0 40px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .uae-office-section {
        padding: 40px 30px;
        margin-bottom: 60px;
    }
    
    .uae-office-title {
        font-size: 2rem;
    }
    
    .uae-office-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-content {
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 40px 30px;
    }
    
    .contact-form-card .form-section-title,
    .contact-info-card .info-title {
        font-size: 1.8rem;
    }
    
    .support-section-card,
    .business-section-card,
    .map-section,
    .social-section-card {
        margin-bottom: 50px;
    }
    
    .support-section-card .support-section,
    .business-section-card .business-section,
    .social-section-card .social-section {
        padding: 40px 30px;
    }
    
    .support-section-card .support-section .support-section-title,
    .business-section-card .business-section .business-section-title,
    .social-section-card .social-section .social-title,
    .map-section .map-section-title {
        font-size: 1.8rem;
    }
    
    .social-section-card .social-section .social-icons {
        grid-template-columns: 1fr;
    }
    
    .map-section .map-container iframe {
        height: 350px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .contact-header {
        padding: 50px 0 30px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .uae-office-section {
        padding: 30px 25px;
        margin-bottom: 50px;
    }
    
    .uae-office-title {
        font-size: 1.75rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 30px 25px;
    }
    
    .contact-form-card .form-section-title,
    .contact-info-card .info-title {
        font-size: 1.5rem;
    }
    
    .contact-info-card .contact-details .contact-item {
        padding: 15px;
    }
    
    .contact-info-card .contact-details .contact-item .contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .support-section-card .support-section,
    .business-section-card .business-section,
    .social-section-card .social-section {
        padding: 30px 25px;
    }
    
    .support-section-card .support-section .support-section-title,
    .business-section-card .business-section .business-section-title,
    .social-section-card .social-section .social-title,
    .map-section .map-section-title {
        font-size: 1.5rem;
    }
    
    .map-section .map-container iframe {
        height: 300px;
    }
}
