/* Concentra Goal - Digital Marketing Agency Theme */

:root {
    /* Brand Colors - Clean & Professional */
    --primary-color: #2563eb; /* Royal Blue */
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --secondary-color: #f59e0b; /* Amber/Orange for CTA */
    --accent-color: #10b981; /* Emerald Green */

    /* Light Theme Backgrounds */
    --bg-body: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-2: #f1f5f9;
    --bg-glass: rgba(255, 255, 255, 0.9);

    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Text Colors */
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    /* Shadows & Effects */
    --glow-primary: 0 10px 25px -5px rgba(37, 99, 235, 0.3);
    --glow-secondary: 0 10px 25px -5px rgba(245, 158, 11, 0.3);
    --glass-border: 1px solid rgba(0, 0, 0, 0.05);

    --transition: all 0.3s ease-in-out;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    padding: 1rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: var(--glow-primary);
}

.brand-text {
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    margin: 0 5px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(37, 99, 235, 0.05);
}

/* Hero Section */
.hero-section-new {
    min-height: 100vh;
    padding-top: 120px;
    position: relative;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 40%);
}

.hero-content-new {
    position: relative;
    z-index: 2;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title-new {
    font-size: 4.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 800;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description-new {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

/* Buttons */
.btn-primary-new {
    background: var(--primary-gradient);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--glow-primary);
    border: none;
    transition: var(--transition);
}

.btn-primary-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-secondary-new {
    background: white;
    color: var(--text-main);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--text-light);
    transition: var(--transition);
}

.btn-secondary-new:hover {
    background: var(--bg-surface-2);
    transform: translateY(-2px);
    color: var(--text-main);
}

/* Services */
.section-new {
    padding: 100px 0;
}

.section-badge-new {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 12px;
}

.section-title-new {
    font-size: 3rem;
    margin-bottom: 24px;
}

.service-card-new {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 24px;
    border: var(--glass-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-icon-new {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-card-new h4 {
    margin-bottom: 16px;
}

.service-card-new p {
    color: var(--text-muted);
}

/* Contact Styles */
.contact-split-wrapper {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 100px;
    background: var(--bg-body);
}

.glass-form-card {
    background: var(--bg-surface);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
}

.glass-info-card {
    background: var(--bg-surface-2);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 24px;
    border: var(--glass-border);
}

.form-control, .form-select {
    background: var(--bg-body);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-main);
    padding: 14px 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    background: var(--bg-surface);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    color: var(--text-main);
}

.form-label {
    font-weight: 500;
    color: var(--text-main);
}

/* Footer */
.footer-new {
    padding: 80px 0 30px;
    border-top: var(--glass-border);
    background: var(--bg-surface);
}

.footer-bottom-new {
    margin-top: 50px;
    padding-top: 30px;
    border-top: var(--glass-border);
    text-align: center;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .hero-title-new {
        font-size: 3rem;
    }
}