:root {
    --primary: #0077B6;
    --primary-dark: #023E8A;
    --secondary: #90E0EF;
    --secondary-dark: #00B4D8;
    --text-dark: #1A1A1A;
    --text-light: #555555;
    --bg-light: #F0F8FF;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --radius: 12px;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

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

/* Header */
.main-header {
    background: var(--white);
    padding: 1.2rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
}

.logo strong {
    color: var(--secondary-dark);
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: 0.3s;
}

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

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Sections */
.hero {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0,119,182,0.95) 0%, rgba(0,180,216,0.85) 100%), url('https://images.pexels.com/photos/8134750/pexels-photo-8134750.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Cards */
.grid {
    display: grid;
    gap: 30px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: 0.3s;
}

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

.card i {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--primary);
}

/* Region/City Lists */
.directory-list {
    padding: 80px 0;
    background: var(--white);
}

.region-link {
    display: block;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
    border: 1px solid transparent;
}

.region-link:hover {
    border-color: var(--primary);
    background: var(--white);
    color: var(--primary);
}

/* Forms */
.form-section {
    padding: 80px 0;
}

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

/* City Layout */
.city-hero {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.city-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.info-section h2 { margin-bottom: 20px; color: var(--primary); }
.info-section p { margin-bottom: 20px; font-size: 1.1rem; }
.info-section ul { margin-bottom: 30px; padding-left: 20px; }

.sidebar-box {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.nearby-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.nearby-cities a {
    font-size: 0.9rem;
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 40px;
    text-decoration: none;
    color: var(--text-light);
}

/* Footer */
footer {
    background: #1A1A1A;
    color: #CCC;
    padding: 80px 0 20px;
}

footer h3 { color: var(--white); margin-bottom: 20px; }
footer a { color: #888; text-decoration: none; }
footer a:hover { color: var(--white); }

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.8rem;
}

/* Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .city-content { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
}