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

:root {
    --primary-color: #111827;
    --secondary-color: #f15b2a;
    --accent-color: #0ea5e9;
    --light-color: #f7f8fb;
    --text-color: #0f172a;
    --text-light: #4b5563;
    --white: #ffffff;
    --shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
    --shadow-strong: 0 16px 40px rgba(15, 23, 42, 0.1);
    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-color);
}

h1 { font-size: clamp(2.4rem, 4vw, 3.4rem); }
h2 { font-size: clamp(2rem, 3vw, 2.6rem); }
h3 { font-size: 1.4rem; }

p {
    max-width: 70ch;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-strong);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-icon {
    width: 30px;
    height: 30px;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(17, 24, 39, 0.05);
}

.nav-cta {
    margin-left: 0.75rem;
}

.nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1.4rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 14px 30px rgba(241, 91, 42, 0.25);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(241, 91, 42, 0.28);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 6px;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.btn,
.nav-link,
.nav-cta-btn,
.contact-btn {
    outline: none;
}

.btn:focus-visible,
.nav-link:focus-visible,
.nav-cta-btn:focus-visible,
.contact-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.35);
}

/* Buttons */
.btn {
    padding: 0.95rem 1.6rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    border: none;
    font-family: 'Manrope', sans-serif;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(241, 91, 42, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(241, 91, 42, 0.32);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

/* Hero */
.hero {
    position: relative;
    padding: 10rem 0 7rem;
    background: linear-gradient(135deg, #0b1221 0%, #0f172a 50%, rgba(15, 23, 42, 0.85) 100%), url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.85) 35%, rgba(17, 24, 39, 0.55) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-text {
    padding-right: 1rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-headline {
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.headline-line {
    display: block;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.headline-line.highlight {
    color: var(--secondary-color);
    text-shadow: 0 2px 8px rgba(241, 91, 42, 0.4);
}

.hero-subheadline {
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.meta-chip {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 420px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-header span {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.hero-card-header strong {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.hero-card-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.hero-card-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.hero-card-cta .btn.full {
    width: 100%;
    justify-content: center;
}

.text-link {
    display: inline-block;
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: var(--secondary-color);
}

.hero-card-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.contact-phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.contact-phone-link:hover {
    color: var(--secondary-color);
}

.contact-phone-link svg {
    color: var(--secondary-color);
}

.contact-divider {
    color: var(--text-light);
    font-weight: 400;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: left;
    margin-bottom: 3rem;
    max-width: 800px;
}

.section-badge {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    background: rgba(17, 24, 39, 0.07);
    color: var(--primary-color);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Services */
.services {
    background: var(--white);
    border-radius: 24px;
    margin: 0 1rem;
    box-shadow: var(--shadow);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.service-card {
    height: 100%;
}

.service-card-inner {
    position: relative;
    background: #f9fafb;
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.service-card:hover .service-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(241, 91, 42, 0.4);
    background: var(--white);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.service-icon-2 { background: linear-gradient(135deg, #ff6b35, #ff8c5a); }
.service-icon-3 { background: linear-gradient(135deg, #ea4335, #ff6b35); }
.service-icon-4 { background: linear-gradient(135deg, #34a853, #4caf50); }
.service-icon-7 { background: linear-gradient(135deg, #0ea5e9, #2563eb); }

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0.15rem 0 0;
    flex: 1;
    font-size: 0.98rem;
}

.service-feature {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: rgba(241, 91, 42, 0.12);
    color: var(--secondary-color);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-top: auto;
}

/* Testimonials */
.testimonials {
    background: transparent;
}

.testimonials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.testimonial-card {
    height: 100%;
}

.testimonial-card-inner {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-card-inner {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--primary-color);
    margin-bottom: 1.75rem;
    font-weight: 600;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.author-info strong {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

/* About */
.about {
    background: var(--white);
    border-radius: 24px;
    margin: 0 1rem;
    box-shadow: var(--shadow);
}

.about-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: start;
}

.about-text-block {
    background: #f9fafb;
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

.about-list li {
    position: relative;
    padding-left: 1.2rem;
}

.about-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 900;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.stat-item {
    text-align: left;
    padding: 1.2rem 1.1rem;
    background: #0f172a;
    border-radius: var(--radius);
    color: var(--white);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact */
.contact {
    background: var(--white);
    border-radius: 24px;
    margin: 0 1rem;
    box-shadow: var(--shadow);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
    align-items: stretch;
}

.contact-info {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.contact-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: var(--radius);
    display: flex;
    gap: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: rgba(241, 91, 42, 0.2);
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(241, 91, 42, 0.12);
    color: var(--secondary-color);
}

.contact-details h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.contact-text {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
}

.contact-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-tag {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    background: rgba(241, 91, 42, 0.12);
    color: var(--secondary-color);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
}

.contact-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: #0b1221;
    color: var(--white);
    padding: 3rem 0 1.25rem;
}

.footer-top-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 800;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 0.9rem;
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
}

.footer-rating {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars .star {
    color: #fbbf24;
    font-size: 1.1rem;
}

.rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.65rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 600;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 700;
}

.footer-hours {
    display: grid;
    gap: 0.35rem;
}

.footer-bottom {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p,
.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 100%;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1.5rem 1rem;
        gap: 0.5rem;
        box-shadow: var(--shadow-strong);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 5rem;
    }

    section {
        padding: 4.5rem 0;
    }

    .nav-wrapper {
        padding: 0.9rem 0;
    }

    .services,
    .about,
    .contact {
        margin: 0;
        border-radius: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-meta {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .hero-headline {
        font-size: 2.4rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .hero-card {
        padding: 1.25rem;
    }

    .service-card-inner,
    .testimonial-card-inner,
    .about-text-block {
        padding: 1.25rem 1rem;
    }
}

