/* Color Variables */
:root {
    --primary-blue: #1a3a5f;
    --accent-gold: #c5a059;
    --light-bg: #f8fafc;
    --text-dark: #2d3748;
    --text-muted: #4a5568;
    --white: #ffffff;
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header & Nav */
header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 3rem 5%;
    text-align: center;
    border-bottom: 5px solid var(--accent-gold);
}

nav {
    background: var(--white);
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav a {
    margin: 0 20px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1200');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 10%;
    text-align: center;
}

.cta-btn {
    background: var(--accent-gold);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

/* Sections */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* About Section */
.about-section {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

/* Contact Form */
.contact-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.submit-btn {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

#confirmationMessage {
    display: none;
    text-align: center;
    background: #d1fae5;
    color: #065f46;
    padding: 20px;
    border-radius: 6px;
}

/* Footer */
footer {
    background: #111;
    color: #888;
    text-align: center;
    padding: 40px 0;
}

/* Locations Styling */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.location-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.location-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.location-card h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.location-card p {
    color: var(--accent-gold);
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

address {
    font-style: normal;
    color: var(--text-muted);
    line-height: 1.8;
}

address a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}
/* Privacy Policy Specific Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.policy-content h3 {
    color: var(--primary-blue);
    margin-top: 30px;
    border-left: 4px solid var(--accent-gold);
    padding-left: 15px;
}

.policy-content ul {
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 10px;
}

.policy-address {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
}