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

:root {
    /* Primary colors - based on logo (golden/yellowish) */
    --primary-color: #C9A227;        /* Dark golden from gradient */
    --primary-dark: #B8860B;         /* Darker gold for hover states */
    --primary-light: #F6E27A;        /* Light golden for accents */
    --primary-bright: #F6E27A;        /* Bright golden for highlights */
    
    /* Accent colors - Golden gradient for CTAs and important elements */
    --accent-color: #C9A227;         /* Main golden color */
    --accent-dark: #B8860B;          /* Darker gold for hover */
    --accent-light: #F6E27A;         /* Lighter gold for highlights */
    
    /* Secondary colors */
    --secondary-color: #C9A227;      /* Golden as secondary */
    
    /* Background colors - matching logo background (black) */
    --bg-dark: #000000;              /* Main dark background (black - matching logo) */
    --bg-darker: #0a0a0a;            /* Slightly lighter black for sections */
    --bg-card: #1a1a1a;             /* Card background - very dark gray */
    --bg-card-hover: #2a2a2a;       /* Card hover state */
    
    /* Text colors */
    --text-light: #F1F5F9;          /* Light text */
    --text-muted: #94A3B8;          /* Muted/secondary text */
    --text-dark: #CBD5E1;           /* Dark text on light bg */
    
    /* Border and shadow */
    --border-color: #333333;        /* Border color - dark gray */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.7), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-dark);
    overflow-x: hidden;
    background-color: #000000; /* Pure black background matching logo */
}

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

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 0.75rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-actions .btn-header-call {
    margin-left: 1rem;
}

.btn-header-call {
    background: linear-gradient(135deg, #B8860B 0%, #F6E27A 50%, #B8860B 100%);
    color: #000000;
    font-weight: 700;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-header-call:hover {
    background: linear-gradient(135deg, #B8860B 0%, #F6E27A 50%, #B8860B 100%);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
    transform: translateY(-1px);
}

.call-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.call-icon-white {
    width: 24px;
    height: 24px;
    display: block;
    filter: brightness(0) invert(1);
}

.whatsapp-icon-white {
    width: 24px;
    height: 24px;
    display: block;
    filter: brightness(0) invert(1);
}

.btn .btn-icon[src*="whatsapp"] {
    filter: none;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.05);
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s;
}

/* Scroll margin for anchor links - accounts for sticky header */
section[id] {
    scroll-margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    color: var(--text-light);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #B8860B 0%, #F6E27A 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.btn-icon-small {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #B8860B 0%, #F6E27A 50%, #B8860B 100%);
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 14px 0 rgba(201, 162, 39, 0.4), 0 2px 8px 0 rgba(201, 162, 39, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(201, 162, 39, 0.5), 0 4px 12px 0 rgba(201, 162, 39, 0.4);
    background: linear-gradient(135deg, #B8860B 0%, #F6E27A 50%, #B8860B 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: #000000;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #000000;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.btn-icon-outline {
    filter: brightness(0) saturate(100%) invert(67%) sepia(95%) saturate(1352%) hue-rotate(15deg) brightness(98%) contrast(89%);
    opacity: 1;
}

.btn-outline:hover .btn-icon-outline {
    filter: brightness(0) invert(0);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.feature-icon {
    background: rgba(201, 162, 39, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.hero-phone {
    margin-top: 2rem;
}

.hero-phone-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s;
}

.hero-phone-link:hover {
    color: var(--primary-color);
}

/* Problems Section */
.problems {
    padding: 60px 0;
    background: var(--bg-darker);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--bg-card);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.problem-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.problem-card-link:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-card-hover);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(201, 162, 39, 0.2), 0 4px 10px rgba(0, 0, 0, 0.3);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-card-hover);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(201, 162, 39, 0.2), 0 4px 10px rgba(0, 0, 0, 0.3);
}

.problem-card-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.problem-card-button {
    margin-top: 0;
}

.problem-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.problem-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.problem-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0;
}

/* Service Area Section */
.service-area {
    padding: 60px 0;
    background: var(--bg-dark);
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.area-info {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.area-badge {
    display: inline-block;
    background: linear-gradient(135deg, #B8860B 0%, #F6E27A 50%, #B8860B 100%);
    color: #000000;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
}

.area-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.eta-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.eta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.eta-item strong {
    color: var(--text-light);
    font-size: 1.125rem;
}

.eta-item span {
    color: var(--text-muted);
}

.area-list h3 {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.cities-grid {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.city-group h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.city-group ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
}

.city-group li {
    color: var(--text-muted);
    padding: 0.5rem;
    background: var(--bg-dark);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background: var(--bg-darker);
}

.steps {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: var(--bg-card);
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s;
}

.step:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow);
}

.step-number {
    background: linear-gradient(135deg, #B8860B 0%, #F6E27A 50%, #B8860B 100%);
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
}

.step-content {
    flex: 1;
    min-width: 0;
}

.step-content h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.7;
    min-height: 3.4em;
}

/* Why Us Section */
.why-us {
    padding: 60px 0;
    background: var(--bg-dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    background: var(--bg-card);
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow);
}

.trust-icon {
    background: rgba(201, 162, 39, 0.2);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--accent-color);
}

.trust-item h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trust-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #B8860B 0%, #F6E27A 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* What We Do Sections */
.what-we-do {
    padding: 100px 0;
}

.automotive {
    background: var(--bg-darker);
}

.residential {
    background: var(--bg-dark);
}

.commercial {
    background: var(--bg-darker);
}

.services-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.services-list h3,
.pricing-box h3 {
    color: var(--text-light);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.services-list ul {
    list-style: none;
}

.services-list li {
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.services-list li strong {
    color: var(--text-light);
}

.service-note {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.pricing-box {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.price-item span {
    color: var(--text-muted);
}

.price-item strong {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.price-note {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.car-brands {
    margin-top: 4rem;
}

.car-brands h3 {
    color: var(--text-light);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.brands-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.brands-grid {
    display: grid;
    gap: 2rem;
}

.brand-group {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.brand-group h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.brand-group ul {
    list-style: none;
}

.brand-group li {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.brand-group li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

.brand-group li strong {
    color: var(--text-light);
}

.brand-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.brand-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.brand-logo-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.brand-logo {
    max-width: 160px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(0.95) contrast(1.1);
    transition: all 0.3s;
    padding: 0.5rem;
    display: block;
}

.brand-logo-light {
    filter: brightness(1.8) contrast(1.4);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.75rem;
}

.brand-logo-white {
    filter: brightness(0) invert(1);
}

.brand-logo-colored {
    filter: none;
    max-width: 120px;
    max-height: 70px;
}

.brand-logo-item:hover .brand-logo-light {
    filter: brightness(2) contrast(1.5);
    background: rgba(255, 255, 255, 0.18);
}

.brand-logo-item:hover .brand-logo-white {
    filter: brightness(0) invert(1) brightness(1.1);
}

.brand-logo-item:hover .brand-logo-colored {
    filter: none;
    transform: scale(1.05);
}

.brand-logo-item:hover .brand-logo {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.brand-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-radius: 10px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    min-width: 120px;
    text-align: center;
    transition: all 0.3s;
    align-items: center;
    justify-content: center;
}

.brand-logo-item:hover .brand-logo-text {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.1) 100%);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.brand-logo-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.brand-callout {
    background: var(--bg-card);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.15);
}

.brand-callout-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.brand-callout-content {
    flex: 1;
}

.brand-callout-content strong {
    display: block;
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.brand-callout-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.brand-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}

.brand-group.not-supported {
    opacity: 0.8;
}

.brand-group.not-supported .brand-logo {
    filter: grayscale(100%) brightness(0.5);
    opacity: 0.6;
}

.brand-group.not-supported .brand-logo-text {
    opacity: 0.5;
    color: var(--text-muted);
    border-color: var(--border-color);
}

/* Prices Section */
.prices {
    padding: 60px 0;
    background: var(--bg-dark);
}

.prices-content {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.prices-promise {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.prices-promise h3 {
    color: var(--text-light);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.prices-promise p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.prices-promise strong {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.prices-policy {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.prices-policy h3 {
    color: var(--text-light);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.prices-policy ul {
    list-style: none;
}

.prices-policy li {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.prices-policy li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.prices-policy li strong {
    color: var(--text-light);
}

.prices-table {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.prices-table h3 {
    color: var(--text-light);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-row:last-of-type {
    border-bottom: none;
}

.price-row span {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.price-row strong {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Discounts Section */
.discounts {
    padding: 100px 0;
    background: var(--bg-darker);
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.discount-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.discount-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow);
}

.discount-badge {
    background: linear-gradient(135deg, #B8860B 0%, #F6E27A 50%, #B8860B 100%);
    color: #000000;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.discount-card h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
}

.discount-note {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

/* Guarantees Section */
.guarantees {
    padding: 100px 0;
    background: var(--bg-dark);
}

.guarantees-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.guarantees-list,
.safety-list {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.guarantees-list h3,
.safety-list h3 {
    color: var(--text-light);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.guarantees-list ul,
.safety-list ul {
    list-style: none;
}

.guarantees-list li,
.safety-list li {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.guarantees-list li::before,
.safety-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.guarantees-list li strong,
.safety-list li strong {
    color: var(--text-light);
}

/* Case Studies Section */
.cases {
    padding: 60px 0;
    background: var(--bg-dark);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.case-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.case-image {
    width: 100%;
    height: 220px;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
    font-size: 4rem;
}

.case-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.case-tag {
    display: inline-block;
    background: linear-gradient(135deg, #B8860B 0%, #F6E27A 50%, #B8860B 100%);
    color: #000000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    width: fit-content;
}

.case-content h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.case-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.case-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.case-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.case-stat strong {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.case-stat span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: var(--bg-darker);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-card);
    padding: 0;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
    text-align: left;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: var(--bg-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    max-width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--bg-dark);
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #EF4444;
}

.form-group input.error,
.form-group select.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
    display: none;
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.error-message.show {
    display: block;
}

.form-group textarea {
    resize: vertical;
}

.form-group input[type="file"] {
    padding: 12px;
    border: 2px dashed var(--border-color);
    background: var(--bg-dark);
    cursor: pointer;
}

.file-preview {
    margin-top: 1rem;
    display: none;
}

.file-preview.active {
    display: block;
}

.file-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 10px;
    margin-top: 0.5rem;
    border: 2px solid var(--border-color);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #B8860B 0%, #F6E27A 50%, #B8860B 100%);
    color: #000000;
    font-weight: 700;
    padding: 16px;
    font-size: 1.125rem;
    margin-top: 1rem;
    box-shadow: 0 4px 14px 0 rgba(201, 162, 39, 0.4);
    justify-content: center;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #B8860B 0%, #F6E27A 50%, #B8860B 100%);
    box-shadow: 0 6px 20px 0 rgba(201, 162, 39, 0.5);
}

.btn-availability {
    white-space: nowrap;
    width: 100%;
    justify-content: center;
}

.form-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.info-item p {
    color: var(--text-muted);
    margin: 0;
}

.info-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--accent-light);
}

.availability-badge {
    background: var(--bg-card);
    border: 2px solid var(--accent-color);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    color: var(--text-light);
    box-shadow: 0 10px 25px rgba(201, 162, 39, 0.2);
}

.availability-badge h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.availability-badge p {
    color: var(--text-muted);
    margin-top: 1rem;
}

.availability-badge .small-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.availability-badge h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.availability-badge p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
}

.availability-badge .small-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

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

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

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

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn-call {
    background: linear-gradient(135deg, #B8860B 0%, #F6E27A 50%, #B8860B 100%);
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.4);
}

.floating-btn-call:hover {
    background: linear-gradient(135deg, #B8860B 0%, #F6E27A 50%, #B8860B 100%);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
}

.floating-btn-call .call-icon-white {
    filter: brightness(0);
}

.floating-btn-whatsapp {
    background: #25D366;
}

.floating-btn-whatsapp:hover {
    background: #20BA5A;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-detail {
        grid-template-columns: 1fr;
    }
    
    .pricing-box {
        position: static;
    }
    
    .service-area-content {
        grid-template-columns: 1fr;
    }
    
    .guarantees-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--bg-card);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .btn-header-call {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        justify-content: center;
        text-align: center;
    }

    .logo-img {
        height: 50px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .contact-info {
        order: 1;
        margin-bottom: 2rem;
    }

    .contact-form-container {
        order: 2;
    }

    .contact-form {
        padding: 2rem;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-image {
        height: 200px;
    }

    .case-content {
        padding: 1.5rem;
    }

    .case-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .steps {
        gap: 1.5rem;
    }
    
    .step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    
    .step-content {
        text-align: left;
    }
    
    .step:hover {
        transform: translateY(-5px);
    }
}

/* Legal Pages (Privacy Policy, Terms of Use) */
.legal-page {
    padding: 120px 0 100px;
    background: var(--bg-dark);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.legal-content h1 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    color: var(--text-light);
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-content h3 {
    color: var(--accent-color);
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-content p strong {
    color: var(--text-light);
    font-weight: 600;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 0.75rem;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.contact-info-box {
    background: var(--bg-darker);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin: 1.5rem 0;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.legal-note {
    background: var(--bg-darker);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }

    .legal-content ul {
        margin-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .problems,
    .service-area,
    .how-it-works,
    .why-us,
    .automotive,
    .residential,
    .commercial,
    .prices,
    .cases,
    .faq,
    .contact {
        padding: 40px 0;
    }
    
    .section-subtitle {
        margin-bottom: 2rem;
    }
    
    .problems-grid,
    .steps,
    .trust-grid,
    .prices-content,
    .cases-grid,
    .faq-list {
        margin-top: 2rem;
    }
    
    .service-area-content {
        margin-top: 2rem;
    }
    
    /* Умеренное уменьшение для планшетов */
    .problem-card {
        padding: 1.5rem;
    }
    
    .step {
        padding: 1.125rem;
        gap: 1.25rem;
    }
    
    .trust-item {
        padding: 1.75rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }
    
    .pricing-box {
        padding: 1.75rem;
    }
    
    .guarantees-list,
    .safety-list {
        padding: 2rem;
    }
    
    .prices-table {
        padding: 2rem;
    }
    
    .problems-grid,
    .steps,
    .trust-grid,
    .cases-grid {
        gap: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 30px;
    }
    
    .problems,
    .service-area,
    .how-it-works,
    .why-us,
    .automotive,
    .residential,
    .commercial,
    .prices,
    .cases,
    .faq,
    .contact {
        padding: 30px 0;
    }

    .logo-img {
        height: 45px;
    }

    .btn-header-call {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
        justify-content: center;
        text-align: center;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .btn-header-call {
        justify-content: center;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .problems-grid,
    .steps,
    .trust-grid,
    .prices-content,
    .cases-grid,
    .faq-list {
        margin-top: 1.5rem;
    }
    
    .service-area-content {
        margin-top: 1.5rem;
    }
    
    /* Уменьшаем отступы в карточках */
    .problem-card {
        padding: 1.25rem;
    }
    
    .problem-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .problem-card p {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }
    
    .step {
        padding: 1rem;
        gap: 1rem;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .step-content {
        text-align: left;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .trust-item {
        padding: 1.5rem;
    }
    
    .trust-item h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .trust-item p {
        font-size: 0.9rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 0.875rem 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.125rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 0.875rem;
    }
    
    /* Уменьшаем gap между элементами */
    .problems-grid {
        gap: 1.5rem;
    }
    
    .steps {
        gap: 1.5rem;
    }
    
    .trust-grid {
        gap: 1.5rem;
    }
    
    .cases-grid {
        gap: 1.5rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
    
    /* Уменьшаем отступы в других элементах */
    .hero-subtitle {
        margin-bottom: 1.5rem;
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .prices-table,
    .cities-grid {
        padding: 1.5rem;
    }
    
    .pricing-box {
        padding: 1.5rem;
    }
    
    .guarantees-list,
    .safety-list {
        padding: 1.5rem;
    }
}
