:root {
    --primary: #0077B6;
    --secondary: #90E0EF;
    --accent: #2D6A4F;
    --bg: #F8F9FA;
    --text: #1D3557;
    --light-text: #457B9D;
    --white: #FFFFFF;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

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

/* Hero */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary) 100%);
    border-radius: 0 0 50px 50px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid System */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.02);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.card .emoji {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.btn:hover {
    background: var(--text);
    transform: scale(1.05);
}

/* Section */
section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Business List */
.business-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.business-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--secondary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--text);
    color: var(--white);
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}