/* ============================================
        RESET & BASE STYLES
        ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark mode colors (default) */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f9fafb;
    --text-secondary: #e5e7eb;
    --text-tertiary: #9ca3af;
    --accent-primary: #10b981;
    --accent-hover: #059669;
    --border-color: rgba(16, 185, 129, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --card-bg: var(--bg-secondary, 0.5);
    --navbar-bg: var(--bg-primary, 0.95);
}

[data-theme="light"] {
    /* Light mode colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-tertiary: #64748b;
    --accent-primary: #10b981;
    --accent-hover: #059669;
    --border-color: rgba(16, 185, 129, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --card-bg: #ffffff;
    --navbar-bg: rgba(255, 255, 255, 0.95);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-secondary);
    overflow-x: hidden;
    background: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.cta-button, .btn, button {
    font-size: 1rem !important;
    font-family: 'Inter', sans-serif !important;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-tertiary);
    max-width: 700px;
    margin: 0 auto 60px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px var(--shadow-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 400;
}

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

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

.theme-icon {
    display: none;
}

[data-theme="light"] .theme-icon.sun,
[data-theme="dark"] .theme-icon.moon,
:root:not([data-theme]) .theme-icon.moon {
    display: block;
}


.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.phone-link:hover {
    transform: scale(1.05);
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION WITH PARALLAX
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--accent-primary);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #10b981;
    color: white;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: pulse 2s infinite;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    animation: none;
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.125rem;
    border: 2px solid var(--accent-primary);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-3px);
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.badge-content h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.badge-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.rating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fbbf24;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    animation: float 3s ease-in-out infinite;
}

.rating-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.rating-stars svg {
    width: 20px;
    height: 20px;
    fill: #78350f;
}

.rating-text {
    font-weight: 700;
    color: #78350f;
    font-size: 1.125rem;
}

.rating-count {
    font-size: 0.875rem;
    color: #92400e;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, #1e293b 0%, #152033 100%);
    padding: 60px 0;
}

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

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    border-color: rgba(16, 185, 129, 0.5);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

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

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.4);
    border-color: rgba(16, 185, 129, 0.5);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.service-icon svg {
    width: 38px;
    height: 38px;
    fill: white;
    stroke: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-tertiary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.125rem;
}

/* ============================================
   BEFORE/AFTER SECTION
   ============================================ */
.before-after-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.before-after-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    user-select: none;
}

.before-after-wrapper {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.before-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.after-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
    border-right: 3px solid #10b981;
    z-index: 2;
}

.after-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    width: 800px;
    height: 100%;
    object-fit: cover;
    max-width: none;
}

.slider-handle {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 0;
    z-index: 10;
    pointer-events: none;
}

.slider-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 44px;
    height: 44px;
    background: white;
    border: 3px solid #10b981;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.before-label, .after-label {
    position: absolute;
    top: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 15px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: bold;
    pointer-events: none;
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.price-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.price-card.featured {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    transform: scale(1.05);
    border-color: transparent;
}

.price-card.featured .price-title,
.price-card.featured .price-amount,
.price-card.featured .price-features li {
    color: white !important;
}

.price-card.featured .price-unit {
    color: rgba(255, 255, 255, 0.8) !important;
}

.price-badge {
    display: inline-block;
    background: #fbbf24;
    color: #78350f;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.price-card.featured .price-icon {
    background: rgba(255, 255, 255, 0.2);
}

.price-icon svg {
    width: 34px;
    height: 34px;
    fill: white;
    stroke: white;
}

.price-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.price-description {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin-bottom: 25px;
}

.price-card.featured .price-description {
    color: rgba(255, 255, 255, 0.9);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.price-unit {
    font-size: 1rem;
    color: var(--text-tertiary);
    font-weight: 400;
}

.price-features {
    list-style: none;
    margin: 30px 0;
}

.price-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.price-card.featured .price-features li::before {
    color: white;
}

.btn-price {
    width: 100%;
    padding: 15px;
    background: #10b981;
    color: white;
    border-radius: 10px;
    font-size: 1rem !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-price:hover {
    background: #059669;
    transform: translateY(-2px);
}

.price-card.featured .btn-price {
    background: white;
    color: #10b981;
}

.price-card.featured .btn-price:hover {
    background: #f0fdf4;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: linear-gradient(135deg, #1e293b 0%, #152033 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.testimonial-info h4 {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: #fbbf24;
}

.testimonial-text {
    color: var(--text-tertiary);
    line-height: 1.8;
    font-style: italic;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-tertiary);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.2);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--accent-primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px;
}

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

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    background: var(--bg-primary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
}

.process-number {
    position: absolute;
    top: -35px;
    left: 35px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.process-icon {
    width: 60px;
    height: 60px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.process-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
    stroke: white;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-tertiary);
    line-height: 1.8;
}

/* ============================================
   AREAS SECTION
   ============================================ */
.areas-section {
    background: var(--bg-secondary);
}

.areas-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.areas-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 30px 0 15px;
}

.areas-text p {
    color: var(--text-tertiary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.areas-text ul {
    list-style: none;
    margin: 20px 0;
}

.areas-text ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
}

.areas-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.125rem;
}

.areas-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.area-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.2);
}

.area-box h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.area-box p {
    font-size: 0.9375rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us-section {
    background: var(--bg-primary);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.why-us-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.why-us-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.why-us-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.why-us-card p {
    color: var(--text-tertiary);
    line-height: 1.8;
}

/* ============================================
   CONTACT FORM MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-secondary);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 30px;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-header p {
    opacity: 0.9;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

.modal-body {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-label .required {
    color: #ef4444;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-secondary);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--bg-secondary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-submit.loading .spinner {
    display: block;
}

/* ============================================
   SUCCESS/ERROR DIALOGS
   ============================================ */
.dialog {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    z-index: 3000;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.dialog.active {
    display: block;
}

.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2999;
}

.dialog-overlay.active {
    display: block;
}

.dialog-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog-icon.success {
    background: #dcfce7;
}

.dialog-icon.error {
    background: #fee2e2;
}

.dialog-icon svg {
    width: 40px;
    height: 40px;
}

.dialog-icon.success svg {
    fill: #10b981;
}

.dialog-icon.error svg {
    fill: #ef4444;
}

.dialog h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.dialog p {
    color: var(--text-tertiary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-dialog {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-dialog.success {
    background: #10b981;
    color: white;
}

.btn-dialog.success:hover {
    background: #059669;
}

.btn-dialog.error {
    background: #ef4444;
    color: white;
}

.btn-dialog.error:hover {
    background: #dc2626;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 60px 0 30px;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-description {
    color: var(--text-tertiary);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-tertiary);
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-tertiary);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-primary);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    color: var(--text-tertiary);
}
.footer-services{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(16, 185, 129, 0.5);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

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

    .hero-badges {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .modal-body {
        padding: 30px 20px;
    }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--navbar-bg);
    box-shadow: 0 10px 30px var(--shadow-color);
    z-index: 999;
    padding: 20px;
    animation: slideDown 0.3s ease;
}

.mobile-menu.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-links {
    list-style: none;
    margin-bottom: 20px;
}

.mobile-menu-links li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-links a {
    display: block;
    padding: 15px 10px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--accent-primary);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-cta .phone-link {
    justify-content: center;
    padding: 12px;
    background: #f0fdf4;
    border-radius: 8px;
}

.mobile-menu-cta .btn-primary {
    text-align: center;
}
/* Additional Light Mode Improvements */
[data-theme="light"] {
    /* Update specific components for light mode */
}

[data-theme="light"] .service-card,
[data-theme="light"] .price-card,
[data-theme="light"] .testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
}

/* Featured card zůstává zelená v light mode */
[data-theme="light"] .price-card.featured {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border-color: transparent !important;
    color: white;
}

[data-theme="light"] .price-card.featured .price-title,
[data-theme="light"] .price-card.featured .price-amount,
[data-theme="light"] .price-card.featured .price-features li,
[data-theme="light"] .price-card.featured .price-description {
    color: white !important;
}

[data-theme="light"] .price-card.featured .price-unit {
    color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="light"] .price-card.featured .price-features li::before {
    color: white !important;
}

[data-theme="light"] .price-card.featured .btn-price {
    background: white !important;
    color: #10b981 !important;
}

[data-theme="light"] .price-card.featured .btn-price:hover {
    background: #f0fdf4 !important;
}

[data-theme="light"] .badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .stat-card {
    background: var(--card-bg);
    box-shadow: 0 2px 8px var(--shadow-color);
}

[data-theme="light"] .mobile-toggle span {
    background: var(--text-secondary);
}

[data-theme="light"] .hero {
    /* Gradient z bílé do světle šedé */
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

[data-theme="light"] .stats-section {
    /* Gradient ze světle šedé (kde hero skončil) do tmavší šedé */
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

[data-theme="light"] .faq-item {
    background: #ffffff;
    box-shadow: 0 2px 8px var(--shadow-color);
}

[data-theme="light"] .process-step {
    background: #ffffff;
    box-shadow: 0 2px 8px var(--shadow-color);
}

[data-theme="light"] .modal-content {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .service-card {
    box-shadow: 0 4px 12px var(--shadow-color);
}

[data-theme="light"] .service-card:hover {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-theme="light"] .why-us-card {
    background: #ffffff;
    box-shadow: 0 2px 8px var(--shadow-color);
}

[data-theme="light"] .testimonial-card {
    background: #ffffff;
    box-shadow: 0 2px 8px var(--shadow-color);
}

[data-theme="light"] .before-after-section {
    background: #f8fafc;
}

[data-theme="light"] .areas-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
[data-theme="light"] .testimonial-card {
    background: #ffffff;
    box-shadow: 0 2px 8px var(--shadow-color);
}

[data-theme="light"] .testimonials-section {
    background: #f8fafc;
}

[data-theme="light"] .before-after-section {
    background: #f8fafc;
}

/* ============================================
   SAFARI SPECIFIC FIXES
   ============================================ */
@supports (-webkit-hyphens:none) {
    /* Safari Desktop fix pro font-size v buttonech */
    button, .btn-primary, .btn-price, .btn-dialog, .btn-hero-primary, .btn-hero-secondary {
        font-size: 1rem !important;
    }

    .btn-hero-primary, .btn-hero-secondary, .btn-submit {
        font-size: 1.125rem !important;
    }
}