* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* --- BRAND COLORS --- */
    --dark-bg: #1e293b;
    /* Lighter Slate 800 */
    --darker-bg: #0f172a;
    /* Lighter Slate 900 */
    --accent-primary: #fbbf24;
    /* Gold */
    --accent-secondary: #d97706;
    --text-light: #f8fafc;
    --text-muted: #cbd5e1;
    --glow-gold: rgba(251, 191, 36, 0.15);
    --card-bg: rgba(51, 65, 85, 0.7);
    /* Lighter Slate 700 */
    --border-color: rgba(251, 191, 36, 0.3);
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ambient Glow */
body::before {
    content: '';
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--glow-gold) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: -1;
    pointer-events: none;
}

/* ============ HEADER ============ */
header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-primary);
}

.phone-btn {
    background: var(--accent-primary);
    color: var(--darker-bg);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--glow-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.phone-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* ============ HERO ============ */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    position: relative;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem auto;
    display: block;
    filter: drop-shadow(0 0 25px rgba(251, 191, 36, 0.2));
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin: 0.5rem;
    transition: 0.3s;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--darker-bg);
    box-shadow: 0 0 20px var(--glow-gold);
}

.btn-primary:hover {
    background: #fff;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
    background: rgba(251, 191, 36, 0.1);
}

/* ============ SECTIONS ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 3rem;
}

/* Trust Signals */
.trust-signals {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    color: var(--accent-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid Cards */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    transition: 0.3s;
    backdrop-filter: blur(5px);
    text-decoration: none;
    /* Cards are now links */
    display: block;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--text-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.card h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.card-link-text {
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: block;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.value-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid var(--accent-primary);
}

.value-letter {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-primary);
    display: block;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
    border-radius: 6px;
    color: #fff;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

/* Other Services Links */
.other-services {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid #334155;
    margin-top: 4rem;
}

.links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.service-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.service-link:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    background: rgba(251, 191, 36, 0.1);
}

footer {
    background: var(--darker-bg);
    border-top: 1px solid #334155;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    nav a:not(.phone-btn) {
        display: none;
    }

    .hero-logo {
        max-width: 180px;
    }
}

/* ============ REVIEWS MARQUEE ============ */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
    width: 350px;
    flex-shrink: 0;
    white-space: normal;
    backdrop-filter: blur(5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--darker-bg);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}