.elementor-1496 .elementor-element.elementor-element-a621e89{--display:flex;--justify-content:center;}@media(max-width:767px){.elementor-1496 .elementor-element.elementor-element-a621e89{--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}}/* Start custom CSS for html, class: .elementor-element-0490f90 *//* =============================================
    GLOBAL VARIABLES & RESETS
    ============================================= */
:root {
    --primary-navy: #1A3C6D;
    --primary-turquoise: #40C4C6;
    --accent-beige: #F4E1C1;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
    HERO SECTION
    ============================================= */
.contact-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2a5a8f 100%),
                url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1600') center/cover;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 200px;
    height: 200px;
    background: rgba(64, 196, 198, 0.1);
    border-radius: 50%;
}

.hero-subtitle {
    font-family: 'Pacifico', cursive;
    color: var(--accent-beige);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

/* =============================================
    CONTACT MAIN SECTION
    ============================================= */
.contact-main {
    padding: 80px 0;
    background: var(--bg-light);
}

/* =============================================
    CONTACT INFO CARDS
    ============================================= */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr; /* Changed to a single column layout */
    gap: 20px;
    margin-bottom: 40px;
    max-width: 800px; /* Added max-width for better readability */
    margin-left: auto; /* Center the single column stack */
    margin-right: auto; /* Center the single column stack */
}

.info-card {
    background: var(--white);
    padding: 30px; /* Adjusted padding */
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: left; /* Changed from center */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex; /* Added */
    align-items: center; /* Added */
    gap: 20px; /* Added */
}

.info-card::before {
    display: none; /* Removed top border hover effect */
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    width: 60px; /* Adjusted size */
    height: 60px; /* Adjusted size */
    background: linear-gradient(135deg, var(--primary-turquoise), var(--primary-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0; /* Removed auto margin */
    font-size: 1.5rem; /* Adjusted size */
    color: var(--white);
    transition: transform 0.3s ease;
    flex-shrink: 0; /* Added */
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-text {
    flex: 1; /* Added */
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 1.4rem;
    margin-bottom: 5px; /* Adjusted margin */
}

.info-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px; /* Adjusted margin */
}

.info-link {
    color: var(--primary-turquoise);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--primary-navy);
}

/* =============================================
    FORM AND MAP SECTION
    ============================================= */
.contact-form-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

/* =============================================
    CONTACT FORM
    ============================================= */
.form-container {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary-navy);
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-turquoise);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(64, 196, 198, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-turquoise), var(--primary-navy));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* =============================================
    MAP CONTAINER
    ============================================= */
.map-container {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary-navy);
    font-size: 2rem;
    margin-bottom: 10px;
}

.map-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    flex-shrink: 0; /* Prevent shrinking */
}

.map-wrapper iframe {
    display: block; /* Removes bottom space */
    width: 100%; /* Ensure it's responsive */
    height: 450px; /* Default height */
}

.office-hours {
    margin-top: auto; /* Pushes to bottom */
}

.office-hours h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.office-hours h3 i {
    margin-right: 10px;
    color: var(--primary-turquoise);
}

.hours-grid {
    display: grid;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-item .time {
    color: var(--text-light);
}

/* =============================================
    SOCIAL MEDIA SECTION
    ============================================= */
.social-section {
    text-align: center;
    background: var(--primary-navy); /* Changed background */
    padding: 60px 40px; /* Increased padding */
    margin-bottom: 80px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover); /* Increased shadow */
}

.social-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--white); /* Changed to white */
    font-size: 2rem;
}

.social-section p {
    color: rgba(255, 255, 255, 0.8); /* Changed to light */
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px; /* Changed from 100px */
    height: 60px; /* Changed from 100px */
    background: var(--bg-light);
    border-radius: 50%; /* Changed to circle */
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem; /* Adjusted for icon */
    transition: all 0.3s ease;
}

.social-icon span {
    display: none; /* Removed text */
}

.social-icon:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.social-icon.facebook:hover { background: #1877F2; color: var(--white); }
.social-icon.instagram:hover { background: #E4405F; color: var(--white); }
.social-icon.twitter:hover { background: #1DA1F2; color: var(--white); }
.social-icon.youtube:hover { background: #FF0000; color: var(--white); }
.social-icon.whatsapp:hover { background: #25D366; color: var(--white); }
.social-icon.pinterest:hover { background: #E60023; color: var(--white); }

/* =============================================
    FAQ SECTION
    ============================================= */
.faq-section {
    text-align: center;
    margin-bottom: 80px;
}

.faq-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary-navy);
    font-size: 2rem;
}

.faq-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.faq-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: left;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--primary-turquoise);
}

.faq-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.faq-card i {
    font-size: 2rem;
    color: var(--primary-turquoise);
    margin-bottom: 15px;
}

.faq-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.faq-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5; /* Added */
}

/* =============================================
    RESPONSIVE STYLES
    ============================================= */
@media (max-width: 992px) {
    .contact-form-map {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
    .map-wrapper iframe {
        height: 400px; /* Adjust height for tablet */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .contact-main {
        padding: 60px 0;
    }
    .container {
        padding: 0 15px; /* Tighter padding on mobile */
    }
    .contact-info-grid {
        gap: 20px;
        margin-bottom: 60px;
    }
    .info-card {
        padding: 25px 20px; /* Adjusted padding */
    }
    .contact-form-map {
        gap: 30px;
        margin-bottom: 60px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0; /* Let .form-group margin handle it */
    }
    .form-container, .map-container {
        padding: 30px 25px;
    }
    .social-section {
        padding: 40px 20px;
        margin-bottom: 60px;
    }
    .social-icon {
        width: 50px; /* Adjusted for tablet */
        height: 50px; /* Adjusted for tablet */
        font-size: 1.3rem;
    }
    .faq-section {
        margin-bottom: 60px;
    }
    .map-wrapper iframe {
        height: 350px; /* Adjust height for mobile */
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 350px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-description {
        font-size: 0.9rem;
    }
    .info-card {
        padding: 20px; /* Adjusted padding */
    }
    .info-icon {
        width: 50px; /* Smaller icon on mobile */
        height: 50px;
        font-size: 1.3rem;
    }
    .info-card h3 {
        font-size: 1.2rem;
    }
    .info-link {
        font-size: 1rem;
    }
    .form-header h2, .map-header h2, .social-section h2, .faq-section h2 {
        font-size: 1.6rem;
    }
    .social-icon {
        width: 45px; /* Adjusted for mobile */
        height: 45px;
        font-size: 1.2rem;
    }
    .social-icon span {
        display: none; /* Ensure text is hidden */
    }
}/* End custom CSS */