:root {
    --primary-blue: #00aeef;
    --dark-blue: #0088bb;
    --orange: #ff9d5c;
    --white: #ffffff;
    --gray: #f4f4f4;
}

body { margin: 0; font-family: 'Helvetica Neue', Arial, sans-serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header & Top Bar */
.top-bar { background: var(--primary-blue); color: white; padding: 10px 0; font-weight: bold; font-size: 14px; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; padding: 20px; }
.logo { font-weight: 900; line-height: 0.9; color: var(--primary-blue); font-size: 24px; }
.wicked { font-size: 14px; letter-spacing: 4px; color: #333; }

nav a { text-decoration: none; color: #333; margin-left: 20px; font-weight: bold; font-size: 13px; }
.btn-orange { background: var(--orange); color: white !important; padding: 10px 20px; border-radius: 5px; }

/* Hero Section */
.hero { height: 550px; position: relative; color: white; overflow: hidden; }
.slide { width: 100%; height: 100%; background-size: cover; background-position: center; display: flex; align-items: center; }
.hero-content h1 { font-size: 48px; margin: 10px 0; line-height: 1; }
.hero-checks { list-style: none; padding: 0; margin: 20px 0; }
.hero-checks li::before { content: "✓"; background: white; color: var(--primary-blue); border-radius: 50%; padding: 2px 6px; margin-right: 10px; font-size: 12px; }

.btn-blue { background: var(--primary-blue); color: white; padding: 15px 30px; text-decoration: none; display: inline-block; font-weight: bold; border-radius: 4px; }

/* Services Grid */
.services-area { padding: 80px 0; background: var(--gray); text-align: center; }
.section-title { color: var(--primary-blue); font-size: 32px; margin-bottom: 50px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: white; border-bottom: 5px solid var(--primary-blue); text-align: left; }
.card-img { height: 200px; background-size: cover; }
.card-body { padding: 20px; background: #015271; color: white; }

/* The Highlighted Review Card */
.review-card { background: var(--primary-blue); color: white; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 40px; }
.stars { color: #ffcc00; font-size: 24px; }
.review-big { font-size: 70px; font-weight: 900; }
.review-text { font-weight: bold; font-size: 18px; }
.review-text span { font-size: 12px; opacity: 0.8; }

.btn-outline { border: 1px solid white; color: white; text-decoration: none; padding: 8px 15px; display: inline-block; margin-top: 15px; font-size: 12px; }
