/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: hsl(189.68deg 74.7% 32.55%);
    --primary-foreground: hsl(0, 0%, 100%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(210, 11%, 15%);
    --muted: hsl(210, 20%, 98%);
    --muted-foreground: hsl(210, 8%, 50%);
    --accent: hsl(189.68deg 74.7% 95%);
    --accent-foreground: hsl(189.68deg 74.7% 30%);
    --border: hsl(210, 20%, 92%);
    --card: hsl(0, 0%, 100%);
    --secondary: hsl(210, 20%, 96%);
    
    --gradient-primary: linear-gradient(135deg, hsl(189.68deg 74.7% 32.55%), hsl(189.68deg 74.7% 42.55%));
    --gradient-hero: linear-gradient(135deg, hsl(189.68deg 74.7% 95%), hsl(0, 0%, 100%));
    --shadow-soft: 0 4px 20px hsl(189.68deg 30% 85%, 0.3);
    --shadow-hover: 0 8px 30px hsl(189.68deg 30% 80%, 0.4);
    
    --border-radius: 0.75rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.icon {
    width: 1rem;
    height: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 50;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    gap: 2rem;
    position: relative;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.logo-img {
    height: 14.5rem;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    margin: 15px 0 0 0;
}

/* Navigation Menu */
.nav-menu {
    display: none;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 1rem 0;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.25rem;
    padding: 0;
}

.hamburger {
    width: 1.25rem;
    height: 2px;
    background: var(--foreground);
    transition: var(--transition);
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(0.25rem, 0.25rem);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(0.25rem, -0.25rem);
}

/* Mobile Navigation */
.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    z-index: 40;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav.active {
    max-height: 20rem;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    color: var(--foreground);
    text-decoration: none;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: var(--muted);
    color: var(--primary);
}

.mobile-nav-link.active {
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
}

.phone-block {
    display: none;
}

.phone-number {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.phone-desc {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
}

.btn-outline {
    background: var(--background);
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--muted);
}

.btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-main {
    color: var(--foreground);
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.title-location {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85em;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 40rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-foreground);
}

.feature-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-title {
    font-weight: 600;
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-image {
    position: relative;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
}

.hero-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--background);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--shadow-soft);
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.badge-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--muted);
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.service-image {
    position: relative;
    height: 12rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-price {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-content {
    padding: 2rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.problems-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.problems-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.problems-list li {
    font-size: 1rem;
    color: var(--foreground);
    font-weight: 500;
    line-height: 1.5;
}

.service-problems {
    background: var(--muted);
    border-radius: calc(var(--border-radius) / 2);
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Prices Section */
.prices {
    padding: 4rem 0;
}

.prices-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.price-card {
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
}

.price-category {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.price-item:last-child {
    border-bottom: none;
}

.price {
    font-weight: 600;
    color: var(--primary);
}

.benefits {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit {
    text-align: center;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent-foreground);
}

.benefit-icon .icon {
    width: 2rem;
    height: 2rem;
}

.benefit-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.urgent-call {
    background: var(--accent);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
}

.urgent-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.urgent-desc {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.urgent-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Reviews Section */
.reviews {
    background: var(--muted);
    padding: 4rem 0;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1rem;
}

.star-icon {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.rating-text {
    color: var(--muted-foreground);
}

.reviews-grid {
    display: grid;
    gap: 1.5rem;
}

.review-card {
    background: var(--background);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: 600;
}

.review-date {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.quote-icon {
    color: var(--primary);
    opacity: 0.5;
}

.quote-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.review-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
}

.contact-method {
    background: var(--background);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.contact-method:hover {
    box-shadow: var(--shadow-hover);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.method-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.method-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-primary {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.working-hours {
    background: var(--background);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1.5rem;
}

.working-hours h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.hours-item span:last-child {
    font-weight: 600;
    color: var(--primary);
}

.emergency-contact {
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
}

.emergency-contact h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.emergency-phone {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.emergency-desc {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--foreground);
    color: var(--background);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.footer-logo-img {
    height: 10rem;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin: 0px;
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-legal {
    font-size: 0.875rem;
}

.legal-name {
    font-weight: 600;
    color: var(--primary);
}

.legal-number {
    color: rgba(255, 255, 255, 0.7);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact .icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.footer-schedule {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--background);
}

/* Responsive Design */

/* Mobile styles for very small screens */
@media (max-width: 480px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .title-main {
        font-size: 1em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .title-location {
        font-size: 0.75em;
        white-space: nowrap;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-img {
        width: 100%;
        height: auto;
        min-height: 250px;
        object-fit: cover;
    }
}

/* Mobile styles for small screens */
@media (max-width: 640px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .title-main {
        font-size: 1em;
    }
    
    .title-location {
        font-size: 0.8em;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-img {
        width: 100%;
        height: auto;
        min-height: 300px;
        object-fit: cover;
    }
}

@media (min-width: 640px) {
    .phone-block {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-main {
        font-size: 1em;
    }
    
    .title-location {
        font-size: 0.8em;
    }
    
    .benefits {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Show navigation menu on tablets and up */
    .nav-menu {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-list {
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .title-main {
        font-size: 1em;
    }
    
    .title-location {
        font-size: 0.75em;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-list {
        gap: 3rem;
    }
}

/* Smooth animations */
.btn, .service-card, .contact-method {
    transition: var(--transition);
}

.service-card:hover, .contact-method:hover {
    transform: translateY(-2px);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}