/* Contact Us Page Styles */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: var(--header-height);
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-content {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 165px;
    text-align: left;
}

.contact-hero-title {
    font-size: 56px;
    font-weight: 300;
    color: #FFFFFF;
    margin: 0 0 40px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.contact-cta {
    display: flex;
    justify-content: flex-end;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background-color: #FFFFFF;
    color: var(--primary-color);
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.contact-btn i {
    font-size: 16px;
}

/* Locations Section */
.locations-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.locations-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 165px;
}

.locations-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary-color);
    text-align: center;
    margin: 0 0 60px 0;
    letter-spacing: -0.5px;
}

/* Location Search */
.location-search {
    max-width: 600px;
    margin: 0 auto 80px auto;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #E5E5E5;
}

.search-input {
    flex: 1;
    padding: 15px 0;
    border: none;
    outline: none;
    font-size: 16px;
    color: #666;
    background: transparent;
}

.search-input::placeholder {
    color: #999;
}

.search-button {
    padding: 15px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 18px;
    transition: color 0.3s ease;
}

.search-button:hover {
    color: var(--primary-color);
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
}

.location-group {
    display: flex;
    flex-direction: column;
}

.location-country {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-color);
    margin: 0 0 30px 0;
    letter-spacing: -0.5px;
}

.location-card {
    background-color: #F9F9F9;
    padding: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.location-city {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0 0 20px 0;
}

.location-details p {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    margin: 0 0 8px 0;
}

.location-details p:last-child {
    margin-bottom: 0;
}

.location-phone {
    margin-top: 15px !important;
    color: var(--primary-color) !important;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-hero-content {
        padding: 0 80px;
    }
    
    .contact-hero-title {
        font-size: 48px;
    }
    
    .locations-container {
        padding: 0 80px;
    }
    
    .locations-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .location-search {
        margin-bottom: 60px;
    }
    
    .locations-grid {
        gap: 50px 60px;
    }
    
    .location-country {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .location-card {
        padding: 30px;
    }
    
    .location-city {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 500px;
    }
    
    .contact-hero-content {
        padding: 0 40px;
    }
    
    .contact-hero-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .contact-cta {
        justify-content: flex-start;
    }
    
    .contact-btn {
        padding: 14px 30px;
        font-size: 13px;
    }
    
    .locations-section {
        padding: 60px 0;
    }
    
    .locations-container {
        padding: 0 40px;
    }
    
    .locations-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .location-search {
        margin-bottom: 50px;
    }
    
    .search-input {
        font-size: 15px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-country {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .location-card {
        padding: 25px;
    }
    
    .location-city {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .location-details p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 400px;
    }
    
    .contact-hero-content {
        padding: 0 20px;
    }
    
    .contact-hero-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .contact-btn {
        padding: 12px 25px;
        font-size: 12px;
        gap: 10px;
    }
    
    .contact-btn i {
        font-size: 14px;
    }
    
    .locations-section {
        padding: 40px 0;
    }
    
    .locations-container {
        padding: 0 20px;
    }
    
    .locations-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .location-search {
        margin-bottom: 40px;
    }
    
    .search-input {
        font-size: 14px;
        padding: 12px 0;
    }
    
    .search-button {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .locations-grid {
        gap: 30px;
    }
    
    .location-country {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .location-card {
        padding: 20px;
    }
    
    .location-city {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .location-details p {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .location-phone {
        margin-top: 12px !important;
    }
}

