:root {
    /* Color Palette */
    --primary-bg: #fdfdfd;
    --acc-gold: #c39e3d;
    --acc-gold-light: #e6d5a7;
    --acc-teal: #0d9488;
    --acc-teal-light: #99f6e4;
    --text-dark: #1e293b;
    --text-mid: #64748b;
    --text-light: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --border-light: rgba(0, 0, 0, 0.05);

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
    --container-padding: 0 24px;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--primary-bg);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    height: 80px;
    display: flex;
    align-items: center;
}

.main-header .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.l-gold {
    color: var(--acc-gold);
}

.l-teal {
    color: var(--acc-teal);
    font-weight: 400;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-mid);
}

.main-nav a:hover {
    color: var(--acc-gold);
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary {
    background-color: var(--acc-teal);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--acc-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Placeholder for generated background if we use it via JS/CSS */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-dark);
}

.hero h1 span {
    display: block;
    color: var(--acc-gold);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
}

/* Locations Section */
.locations-section {
    padding: var(--section-padding);
    background: #fff;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-title .divider {
    width: 60px;
    height: 4px;
    background: var(--acc-gold);
    margin: 0 auto;
    border-radius: 2px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.location-region {
    margin-bottom: 4.5rem;
}

.region-label {
    font-size: 1.8rem;
    color: var(--acc-teal);
    margin-bottom: 2rem;
    border-left: 5px solid var(--acc-gold);
    padding-left: 1.5rem;
    font-weight: 600;
}

.branch-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    height: 100%;
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--acc-teal-light);
}

.branch-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.branch-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--acc-teal-light);
    color: var(--acc-teal);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hq-tag {
    background: var(--acc-gold-light);
    color: var(--acc-gold);
}

.branch-address {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.branch-action {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--acc-teal);
    font-weight: 600;
    font-size: 0.9rem;
}

.branch-action i {
    font-size: 1.1rem;
}

/* Footer Styles */
.main-footer {
    background-color: #0f172a;
    color: #e2e8f0;
    padding: 80px 0 0;
    border-top: 4px solid var(--acc-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--acc-gold);
}

.footer-col p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--acc-gold);
    padding-left: 5px;
}

.bottom-footer {
    background-color: #020617;
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.designer {
    color: var(--acc-gold);
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1, .hero-content p, .hero-content .btn {
    animation: fadeInUp 0.8s ease backwards;
}

.hero-content h1 { animation-delay: 0.2s; }
.hero-content p { animation-delay: 0.4s; }
.hero-content .btn { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* Mobile menu needed */
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}
