/* --- Global Styles & Variables --- */
:root {
    --primary-color: #0066cc;
    --secondary-color: #f7b801;
    --dark-color: #2c3e50;
    --light-color: #ffffff;
    --text-color: #34495e;
    --body-bg: #f8f9fa;
    --font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--body-bg);
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --- Header & Navigation --- */
.navbar {
    background: var(--light-color);
    color: var(--dark-color);
    padding: 1rem 0;
    border-bottom: 1px solid #e7e7e7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

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

.cta-nav {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-nav:hover {
    background-color: #ffc93c;
    color: var(--dark-color);
}

/* --- Hamburger Menu --- */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: var(--dark-color);
    margin-bottom: 4px;
    border-radius: 5px;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(to right, rgba(0, 102, 204, 0.8), rgba(0, 102, 204, 0.6)), url('https://via.placeholder.com/1500x700.png?text=Modern+Cityscape') no-repeat center center/cover;
    color: var(--light-color);
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.cta-button-large {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s;
    display: inline-block;
}

.cta-button-large:hover {
    background-color: #ffc93c;
    transform: translateY(-3px);
}

.affiliate-disclaimer-small {
    font-size: 0.8rem;
    margin-top: 15px;
    opacity: 0.8;
}

/* --- Services Section --- */
.services {
    padding: 60px 0;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.grid-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* --- Footer --- */
footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.footer-section p, .footer-section ul li a {
    color: #bdc3c7;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--light-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #34495e;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.affiliate-disclaimer-footer {
    font-size: 0.8rem;
    color: #bdc3c7;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Generic Page Styles --- */
.page-header {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-info {
    margin-top: 40px;
}

.contact-email {
    font-size: 1.2rem;
    font-weight: bold;
}

/* --- Affiliate Landing Page --- */
.affiliate-hero {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: var(--light-color);
    position: relative;
}

.affiliate-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    z-index: 1;
}

.affiliate-hero .container {
    position: relative;
    z-index: 2;
}

.affiliate-hero h1 {
    font-size: 2.8rem;
    margin-top: 10px;
}

.affiliate-hero h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.affiliate-hero .description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 30px auto;
}

.bright-cta {
    background: #ff5733;
    color: var(--light-color);
    box-shadow: 0 5px 15px rgba(255, 87, 51, 0.4);
}

.bright-cta:hover {
    background: #e74c3c;
}

/* --- Reviews Section --- */
.reviews {
    padding: 60px 0;
    background: #ecf0f1;
    text-align: center;
}

.reviews h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.review-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.review-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-basis: 300px;
    text-align: left;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
}

.review-author {
    font-weight: bold;
    color: var(--primary-color);
}

/* --- Responsive Design --- */
@media(max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 75px;
        left: 0;
        background: var(--light-color);
        border-bottom: 1px solid #e7e7e7;
    }
    
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hero h1, .affiliate-hero h1, .page-header h1 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}}