/* Variables */
:root {
    --primary: #007bff; /* Vibrant Blue */
    --dark: #111111;
    --light: #f8f9fa;
    --accent: #ff4d4d; /* Emergency Red */
    --text: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.75rem; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Layout */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--dark);
}

.btn-light:hover {
    background: var(--primary);
    color: var(--white);
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

.top-bar a:hover {
    color: var(--primary);
}

/* Header */
.main-header {
    padding: 1.5rem 0;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--dark);
}

.logo span {
    color: var(--primary);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.desktop-nav a {
    font-weight: 600;
    color: var(--dark);
}

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

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
}

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

/* Hero Split */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    padding: 0;
    background: var(--light);
}

.hero-text {
    padding: 6rem 4rem 6rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trust Bar */
.trust-bar {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0;
}

.trust-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item strong {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Services Modern Grid */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-item {
    padding: 3rem;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
}

.service-item:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 123, 255, 0.05);
    position: absolute;
    top: 1rem;
    right: 2rem;
}

/* Why Section */
.why-section {
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.sub-title {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.why-list {
    margin-top: 2.5rem;
}

.why-list li {
    margin-bottom: 2rem;
}

.why-list strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.why-image img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* About Minimal */
.about-card {
    background: var(--dark);
    color: var(--white);
    padding: 5rem;
    border-radius: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-card p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.owner-info strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary);
}

/* Contact Dark */
.contact-dark {
    background: #0a0a0a;
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.info-blocks {
    margin-top: 3rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.info-block a, .info-block p {
    font-size: 1.25rem;
    font-weight: 600;
}

.modern-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modern-form input, .modern-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    border-radius: 15px;
    color: var(--white);
    font-family: inherit;
    margin-bottom: 1.5rem;
}

.modern-form input:focus, .modern-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

/* Footer */
.main-footer {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid #eee;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr;
    }
    .hero-text {
        padding: 6rem 2rem;
        text-align: center;
        align-items: center;
    }
    .hero-visual {
        height: 400px;
    }
    .why-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .why-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .top-bar-email {
        display: none;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .about-card {
        padding: 3rem 1.5rem;
    }
    .about-card p {
        font-size: 1.2rem;
    }
}
