:root {
    /* === Brand Colors === */
    --primary-color: #005ABB;     /* Main blue background */
    --accent-color: #005ABB;      /* Secondary highlight / CTA */
    --accent-dark: #005ABB;       /* Darker shade of accent */

    /* === Background Shades === */
    --bg-white: #ffffff;          /* True white for cards */
    --bg-light: #FFFFFF;          /* Light tint */
    --bg-dark: #005ABB;           /* Main base */
    --bg-darker: #005ABB;         /* Deep variation */

    /* === Text Colors === */
    --text-dark: #000000;         /* Main text on light backgrounds */
    --text-light: #ffffff;        /* Text on dark surfaces */
    --text-muted: #666666;        /* Gray text */
    --text-accent: #005ABB;       /* Accent text */

    /* === Borders & UI === */
    --border-color: rgba(0, 90, 187, 0.2);    /* Soft blue border */
    --card-radius: 15px;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 20px rgba(0, 90, 187, 0.08);
    --box-shadow-hover: 0 10px 30px rgba(0, 90, 187, 0.12);
    
    /* === Legacy Variables for Compatibility === */
    --primary-gold: #005ABB;
    --gold-dark: #005ABB;
    --bg-light: #FFFFFF;
    --text-muted: #666666;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main Container */
.contact-container {
    flex: 1;
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 0 20px;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-dark));
    border-radius: 2px;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Sections */
.contact-section {
    background: var(--bg-white);
    border-radius: var(--card-radius);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-section:hover {
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(144, 184, 137, 0.3);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(144, 184, 137, 0.2);
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.contact-content {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-content p {
    margin-bottom: 20px;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.contact-card {
    background: var(--bg-white);
    border-radius: var(--card-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(14, 39, 39, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(144, 184, 137, 0.2);
    border-color: rgba(144, 184, 137, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
    margin: 0 auto 20px;
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(144, 184, 137, 0.3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(144, 184, 137, 0.4);
    color: var(--primary-color);
}

/* Store Info */
.store-info {
    background: var(--bg-white);
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: 0 4px 15px rgba(14, 39, 39, 0.1);
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.hours-table tr {
    border-bottom: 1px solid rgba(144, 184, 137, 0.1);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 8px 0;
    color: var(--text-muted);
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: 0 4px 15px rgba(14, 39, 39, 0.1);
    height: 100%;
}

.contact-form h3 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(144, 184, 137, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(144, 184, 137, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(144, 184, 137, 0.3);
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(144, 184, 137, 0.4);
}

/* Social Media Section */
.social-section {
    text-align: center;
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(144, 184, 137, 0.1), rgba(122, 160, 117, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(144, 184, 137, 0.2);
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(14, 39, 39, 0.2);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(14, 39, 39, 0.3);
    color: var(--text-light);
}

/* Map Section */
.map-section {
    margin-top: 20px;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(14, 39, 39, 0.1);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(144, 184, 137, 0.1), rgba(122, 160, 117, 0.05));
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-dark));
}

.highlight-box h5 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.highlight-box p {
    color: var(--text-muted);
    margin: 0;
}

/* Scroll to form link */
.scroll-to-form {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.scroll-to-form:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        margin-top: 70px;
        padding: 0 15px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .contact-section {
        padding: 25px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card,
    .store-info,
    .contact-form {
        padding: 25px 20px;
    }

    .map-section {
        height: 300px;
    }

    .social-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }

    .contact-section {
        padding: 20px;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .map-section {
        height: 250px;
    }
}