/* Root Variables - Pixel Pushers Colors */
:root {
    --bg-page: #1a1c1b;
    --bg-card: #302f2c;
    --bg-light: #dfddd6;
    --text-primary: #d9fb06;
    --text-secondary: #888680;
    --text-muted: #302f2c;
    --text-inverse: #1a1c1b;
    --border-light: rgba(63, 72, 22, 0.5);
    --border-medium: #3f4816;
    --border-strong: #888680;
    --brand-primary: #d9fb06;
    --brand-hover: rgba(217, 251, 6, 0.8);
    --brand-active: rgba(217, 251, 6, 0.6);
    --secondary-olive: #3f4816;
    --secondary-yellow: #f8d47a;
    --secondary-blue: #0073e6;
    --neutral-white: white;
    --neutral-light: #dfddd6;
}

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

body {
    font-family: 'Inter', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-page);
    color: var(--text-primary);
    min-height: 100vh;
}

/* Navigation */
.navigation {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.nav-container {
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 70px;
    width: auto;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    font-size: 24px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: var(--brand-hover);
}

.nav-cta {
    background: var(--brand-primary);
    color: var(--text-inverse);
    padding: 10px 24px;
    border-radius: 10rem;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--brand-hover);
    color: var(--text-inverse);
    transform: scale(1.02);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-light);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--secondary-olive);
    color: var(--brand-primary);
    padding-left: 24px;
}

/* Hero Section */
.hero-section {
    background: var(--bg-page);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.hero-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.hero-overlay {
    opacity: 0.7;
    background-image: linear-gradient(135deg, #000, transparent);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 50rem;
    margin: 0 auto;
    text-align: center;
}

.hero-logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.logo-image {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.hero-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.02em;
}

.hero-description {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--neutral-light);
    margin-bottom: 40px;
    text-align: center;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: var(--brand-primary);
    color: var(--text-inverse);
    border: none;
    border-radius: 10rem;
    padding: 1em 2em;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 56px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1em;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    border-radius: 10rem;
    padding: 1em 2em;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 56px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1em;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: var(--brand-primary);
    color: var(--text-inverse);
    transform: scale(1.02);
}

/* Services Section */
.services-section {
    background: var(--bg-page);
    padding: 96px 40px;
}

.services-container {
    max-width: 87.5rem;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 120px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.category-description {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 50rem;
    margin: 0 auto;
}

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

.service-card {
    background: var(--bg-card);
    padding: 40px;
    border: 1px solid var(--border-medium);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card:hover {
    background: var(--secondary-olive);
    transform: translateY(-4px);
    border-color: var(--brand-primary);
}

.service-icon {
    color: var(--brand-primary);
    font-size: 40px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-description {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.service-areas {
    margin-top: 60px;
    text-align: center;
}

.areas-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.area-badge {
    background: var(--secondary-olive);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 10rem;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    border: 1px solid var(--border-medium);
    transition: all 0.3s ease;
}

.area-badge:hover {
    background: var(--brand-primary);
    color: var(--text-inverse);
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 60px 40px 40px;
    border-top: 1px solid var(--border-medium);
}

.footer-container {
    max-width: 87.5rem;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    min-width: 250px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.footer-contact,
.footer-areas,
.footer-reviews {
    min-width: 250px;
}

.footer-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--brand-primary);
    transform: translateX(4px);
}

.contact-item i {
    color: var(--brand-primary);
    font-size: 20px;
}

.footer-areas-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-area-item {
    color: var(--text-secondary);
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.footer-area-item:hover {
    color: var(--brand-primary);
    padding-left: 8px;
}

.footer-bark-widget {
    margin-top: 8px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-medium);
    text-align: center;
}

.footer-company {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.footer-registration {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.footer-link {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--brand-primary);
}

.footer-separator {
    color: var(--text-secondary);
}

.footer-copyright {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px 40px;
        border-top: 1px solid var(--border-medium);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        max-height: calc(100vh - 76px);
        opacity: 1;
        overflow-y: auto;
    }

    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 0;
        border: none;
        box-shadow: none;
        background: var(--bg-page);
        padding-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-item {
        padding: 12px 0;
    }

    .nav-cta {
        margin-top: 12px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 80px 20px 60px;
        min-height: 90vh;
    }

    .logo-image {
        max-width: 280px;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .hero-description {
        font-size: 1.1rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .services-section {
        padding: 60px 20px;
    }

    .service-category {
        margin-bottom: 80px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .footer {
        padding: 40px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }

    .footer-logo {
        max-width: 180px;
    }
}