:root {
    --primary-color: #c8a876;
    --secondary-color: #2c3e50;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: #fff;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.location-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.location-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #d4b887);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 24px;
    color: #fff;
}

.location-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.location-type {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.info-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.info-box:hover {
    background: #f0f0f0;
}

.info-box h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.info-box p {
    margin: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-box a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.info-box a:hover {
    color: var(--primary-color);
}

.info-box i {
    margin-right: 8px;
    color: var(--primary-color);
    width: 16px;
}

.managers-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.managers-section h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
}

.manager-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.2s ease;
}

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

.manager-item i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
}

.manager-info {
    flex: 1;
}

.manager-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.manager-contact {
    font-size: 0.9rem;
    color: var(--text-light);
}

.manager-contact a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 5px;
}

.info-center {
    background: linear-gradient(135deg, var(--secondary-color), #34495e);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.info-center h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}

.info-center-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.info-person {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-person:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.info-person i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-person h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.info-person a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}