/*
Theme Name: Growth Driven Agency
Description: Premium Digital Marketing Agency Theme
Version: 1.0
Author: Gemini
*/

:root {
    --primary-teal: #006D77;
    --secondary-blue: #118AB2;
    --accent-gold: #FFD166;
    --bg-soft-white: #EDF6F9;
    --footer-navy: #023047;
    --text-dark: #2d3436;
    --text-light: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-soft-white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3 { color: var(--primary-teal); line-height: 1.2; font-weight: 800; }
h1 { font-size: 3.5rem; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }

/* Header */
.site-header {
    background: var(--primary-teal);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover { opacity: 0.8; }

.btn-gold {
    background: var(--accent-gold);
    color: var(--footer-navy) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-gold:hover { transform: translateY(-2px); }

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 8rem 5%;
    gap: 4rem;
}

.hero-content { flex: 1; }
.hero-image { flex: 1; }

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.subtext {
    font-size: 1.2rem;
    color: var(--secondary-blue);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Services Grid */
.services {
    padding: 6rem 5%;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-teal));
    padding: 3rem 2rem;
    border-radius: 15px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card svg { width: 50px; height: 50px; fill: white; margin-bottom: 1.5rem; }

/* About Section */
.about {
    display: flex;
    padding: 6rem 5%;
    align-items: center;
    gap: 5rem;
    background: white;
}

.about-img, .about-content { flex: 1; }

/* Stats Bar */
.stats-bar {
    background: var(--primary-teal);
    color: white;
    padding: 4rem 5%;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 { color: var(--accent-gold); font-size: 3rem; }

/* Footer */
.site-footer {
    background: var(--footer-navy);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 3rem;
}

.footer-col h4 { margin-bottom: 1.5rem; color: var(--accent-gold); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a { color: #ccc; text-decoration: none; }

/* Responsive */
@media (max-width: 968px) {
    .hero, .about { flex-direction: column; text-align: center; }
    h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* Simplified for example */
}