/* Head Office Page Styles */
/* Modern and beautiful design for head office page */

:root {
    --primary-color: #fcb900;
    --secondary-color: #00d084;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

/* Hero Section Styling */
.et_pb_section_0.et_pb_with_background {
    background: var(--gradient) !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.et_pb_section_0 .et_pb_text_0 h2 {
    font-size: 46px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-weight: 800;
    margin-bottom: 15px;
}

.et_pb_section_0 .et_pb_text_1 h5 {
    font-size: 18px;
    color: var(--white);
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Head Office Section */
.head-office-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.head-office-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeIn 0.8s ease-out;
}

.head-office-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.head-office-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.head-office-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.head-office-info {
    flex: 1;
    min-width: 300px;
    animation: slideUp 0.8s ease-out;
}

.head-office-map {
    flex: 1;
    min-width: 300px;
    animation: slideUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.info-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.info-card-header {
    background: var(--gradient);
    padding: 25px 20px;
    color: var(--white);
    position: relative;
}

.info-card-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.info-card-body {
    padding: 30px 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    margin-right: 15px;
    background-color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(252, 185, 0, 0.3);
}

.contact-item:hover .contact-icon {
    background-color: var(--secondary-color);
    box-shadow: 0 3px 10px rgba(0, 208, 132, 0.3);
    transform: scale(1.05) rotate(5deg);
}

.contact-icon i {
    font-size: 20px;
}

.contact-text {
    color: #333;
}

.contact-text h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #00d084;
}

.contact-text p {
    margin: 0;
    line-height: 1.5;
}

.map-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.map-card-header {
    background: linear-gradient(135deg, #00d084, #fcb900);
    padding: 20px;
    color: #fff;
}

.map-card-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.map-card-body {
    height: 400px;
}

.map-card-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Featured Section */
.featured-section {
    background-color: #fcb900;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

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

.featured-title {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.featured-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Working Hours Section */
.working-hours {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.working-hours-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.working-hours-title {
    color: #fcb900;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.hours-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.hours-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 250px;
    flex: 1;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-5px);
}

.hours-day {
    font-weight: 600;
    color: #00d084;
    font-size: 18px;
    margin-bottom: 10px;
}

.hours-time {
    font-size: 16px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .head-office-grid {
        flex-direction: column;
    }

    .head-office-header h1 {
        font-size: 32px;
    }

    .featured-title {
        font-size: 28px;
    }

    .working-hours-title {
        font-size: 28px;
    }

    .map-card-body {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .head-office-header h1 {
        font-size: 28px;
    }

    .head-office-section {
        padding: 50px 0;
    }

    .hours-card {
        min-width: 100%;
    }
}
