/* DLC Carservice - Statische Website Styling */
/* Premium Dark Theme met Montserrat Display Font */

/* Import Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

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

:root {
    /* Premium Dark Theme - DLC Blue Branding */
    --primary: #0a0a0a;
    --primary-light: #1a1a1a;
    --primary-medium: #141414;
    --accent: #0077cc;
    --accent-hover: #0088e8;
    --accent-glow: rgba(0, 119, 204, 0.3);
    --accent-red: #e63333;
    --secondary: #2a2a2a;
    --light: #f5f5f5;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --text-on-dark: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --success: #28a745;
    --border: #e0e0e0;
    --border-dark: rgba(255, 255, 255, 0.1);
    --card-dark: #1a1a1a;
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #0077cc 0%, #0099ee 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-on-dark);
    background: var(--primary);
    overflow-x: hidden;
}

/* Typography - Premium Display Font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Header - Premium Dark */
.header {
    background: var(--primary);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
    border-bottom: 1px solid var(--border-dark);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.logo span {
    color: var(--accent);
}

.logo:hover {
    text-shadow: 0 0 20px var(--accent-glow);
}

@media (min-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
}

/* Logo image styling (when white logo is available) */
.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.02);
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

@media (min-width: 768px) {
    .logo-img {
        height: 45px;
    }
}

.main-nav {
    display: none;
    gap: 2rem;
}

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

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.header-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.phone-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: none;
}

@media (min-width: 768px) {
    .phone-link {
        display: inline-block;
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-light);
    box-shadow: 0 5px 30px rgba(0,0,0,0.4);
    padding: 1rem;
}

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

.mobile-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border-dark);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    background: var(--primary-medium);
    color: var(--accent);
}

/* Buttons - Premium */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 119, 204, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Hero Section - Premium Dark */
.hero {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 119, 204, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 140, 66, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

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

@media (min-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 4rem;
    }
}

.hero-text .highlight {
    color: var(--accent);
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.trust-badge .stars {
    color: #ffc107;
    font-size: 1.25rem;
}

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

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Page Hero (voor subpagina's) - Premium Dark */
.page-hero {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 119, 204, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .page-hero h1 {
        font-size: 3rem;
    }
}

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Service Hero (voor detail pagina's) - Premium Dark */
.service-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(26,26,26,0.88) 100%);
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 119, 204, 0.08), transparent);
    pointer-events: none;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .service-hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .service-hero h1 {
        font-size: 3.5rem;
    }
}

.service-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
}

/* Services Section - Premium Dark */
.services {
    padding: 5rem 0;
    background: var(--primary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(0, 119, 204, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 80%, rgba(0, 119, 204, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.services .section-header h2,
.services-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services .section-header p {
    color: var(--text-muted);
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--card-dark);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(0, 119, 204, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.service-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

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

.service-price {
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Content Section - Premium Dark */
.content-section {
    padding: 5rem 0;
    background: var(--primary-light);
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 119, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.content-section.alt {
    background: var(--primary);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.content-text h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

/* Feature List - Premium Dark */
.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted);
}

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

/* Info Box - Premium Dark */
.info-box {
    background: var(--card-dark);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    margin: 1.5rem 0;
}

.info-box h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

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

/* Why Us Section - Premium Dark */
.why-us {
    padding: 5rem 0;
    background: var(--primary-light);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 119, 204, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-us .section-header h2 {
    color: var(--white);
}

.why-us .section-header p {
    color: var(--text-muted);
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-dark);
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(0, 119, 204, 0.3);
    transform: translateY(-3px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    border: 2px solid rgba(0, 119, 204, 0.3);
}

.feature-item h3 {
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Testimonials - Premium Dark */
.testimonials {
    padding: 5rem 0;
    background: var(--primary);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(0, 119, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: var(--text-muted);
}

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

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--card-dark);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    position: relative;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(0, 119, 204, 0.3);
}

.testimonial-stars {
    color: #FBBC04;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent);
}

/* Before After Gallery - Premium Dark */
.before-after {
    padding: 5rem 0;
    background: var(--primary-light);
    position: relative;
}

.before-after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(0, 119, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.before-after .container {
    position: relative;
    z-index: 1;
}

.before-after .section-header h2 {
    color: var(--white);
}

.before-after .section-header p {
    color: var(--text-muted);
}

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

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--border-dark);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
}

/* FAQ Section - Premium Dark */
.faq {
    padding: 5rem 0;
    background: var(--primary);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(0, 119, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq .section-header h2 {
    color: var(--white);
}

.faq .section-header p {
    color: var(--text-muted);
}

.faq.alt {
    background: var(--primary-light);
}

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

.faq-item {
    background: var(--card-dark);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 119, 204, 0.3);
}

.faq.alt .faq-item {
    background: var(--card-dark);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 119, 204, 0.1);
}

.faq.alt .faq-question:hover {
    background: rgba(0, 119, 204, 0.1);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--accent);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

/* FAQ Categories - Premium Dark */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.faq-category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-dark);
    border-radius: 50px;
    background: var(--card-dark);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* Contact Section - Premium Dark */
.contact-section {
    padding: 5rem 0;
    background: var(--primary-light);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 119, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section .section-header h2 {
    color: var(--white);
}

.contact-section .section-header p {
    color: var(--text-muted);
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: var(--card-dark);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(0, 119, 204, 0.3);
    transform: translateY(-3px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.contact-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Quote Form Section - Premium Dark */
.quote-section {
    padding: 5rem 0;
    background: var(--primary);
    color: var(--white);
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 119, 204, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.quote-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.quote-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quote-header h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.quote-header p {
    color: var(--text-light);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.875rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    margin-top: 1rem;
}

.success-message {
    display: none;
    background: var(--success);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1rem;
}

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

/* Booking Section - Premium Dark */
.booking-section {
    padding: 5rem 0;
    background: var(--primary-light);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 119, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.booking-section .container {
    position: relative;
    z-index: 1;
}

.booking-section .section-header h2 {
    color: var(--white);
}

.booking-section .section-header p {
    color: var(--text-muted);
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.4);
}

.booking-container iframe {
    width: 100%;
    border: none;
    border-radius: 8px;
}

/* CTA Section - Premium Accent */
.cta-section {
    padding: 4rem 0;
    background: var(--gradient-accent);
    color: var(--white);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
}

.cta-section .btn {
    position: relative;
}

.cta-section .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--accent);
}

/* Footer - Premium Dark */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(0, 119, 204, 0.2);
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.8;
    display: block;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.btn-primary.loading .spinner {
    display: inline-block;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Default link styling for dark theme */
a {
    color: var(--accent);
    transition: color 0.3s ease;
}

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

/* Links inside content sections */
.content-section a,
.info-box a,
.feature-list a,
.faq-answer a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-section a:hover,
.info-box a:hover,
.feature-list a:hover,
.faq-answer a:hover {
    color: var(--accent-hover);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Breadcrumbs - Premium Dark */
.breadcrumbs {
    padding: 1rem 0;
    background: var(--primary-medium);
    font-size: 0.875rem;
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
}

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

.breadcrumbs span {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

/* Trust Bar - Premium Accent */
.trust-bar {
    background: var(--accent);
    color: var(--white);
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-bar span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 640px) {
    .trust-bar .container {
        gap: 1rem;
        font-size: 0.8rem;
    }
}

/* Service Badges - Premium Dark */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge.popular {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--primary);
    border-color: #FFD700;
}

.badge.specialist {
    background: var(--primary-light);
    color: var(--accent);
    border-color: var(--accent);
}

/* Booking Intro - Premium Dark */
.booking-intro {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--card-dark);
    border-radius: 15px;
    border: 1px solid var(--border-dark);
}

.booking-intro h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.booking-intro > p {
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1rem;
}

.booking-intro ol {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    counter-reset: booking-steps;
}

.booking-intro li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    counter-increment: booking-steps;
    color: var(--text-muted);
}

.booking-intro li::before {
    content: counter(booking-steps);
    background: var(--accent);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

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

.booking-fallback {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
}

.booking-fallback p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .booking-intro ol {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Booking Card */
.booking-card-wrapper {
    display: block;
}

.booking-card {
    background: var(--card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.booking-mobile-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.booking-mobile-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.booking-mobile-card > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.booking-mobile-card .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 1rem;
}

.booking-mobile-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
    margin: 0;
}

/* Responsive: Show mobile card, hide iframe on small screens */
@media (max-width: 768px) {
    .booking-mobile {
        display: block;
    }

    .booking-desktop {
        display: none;
    }

    /* Also hide intro steps on mobile since the external page has its own */
    .booking-intro ol {
        display: none;
    }

    .booking-intro > p:first-of-type {
        display: none;
    }
}

/* Accessibility - Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    z-index: 10000;
    transition: top 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Accessibility - Better Focus States */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Accessibility - Error states with icon */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23dc3545' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-group.error .error-message {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.form-group.error .error-message::before {
    content: "⚠";
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Quick Win: Urgency Badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    animation: pulse-urgency 2s ease-in-out infinite;
    margin-bottom: 1rem;
}

.urgency-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes pulse-urgency {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Quick Win: Sticky Mobile CTA - Premium Dark */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 1rem;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
    z-index: 999;
    border-top: 1px solid var(--border-dark);
}

.sticky-mobile-cta .container {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.sticky-mobile-cta .btn {
    flex: 1;
    max-width: 200px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.sticky-mobile-cta .phone-btn {
    background: var(--white);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-width: 48px;
    height: 48px;
    border: 2px solid var(--white);
    font-size: 1.25rem;
}

.sticky-mobile-cta .phone-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: block;
    }

    /* Add padding to body to prevent content from being hidden behind sticky CTA */
    body {
        padding-bottom: 80px;
    }

    /* Hide header CTA on mobile when sticky is visible */
    .header-cta .btn {
        display: none;
    }
}

@media (min-width: 769px) {
    .sticky-mobile-cta {
        display: none !important;
    }
}

/* Portfolio Page Styles - Premium Dark */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-dark);
    border-radius: 50px;
    background: var(--card-dark);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.portfolio-section {
    padding: 3rem 0 5rem;
    background: var(--primary);
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(0, 119, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-section .container {
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--card-dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-dark);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    border-color: rgba(0, 119, 204, 0.3);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.portfolio-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Service Area Section - Premium Dark */
.service-area {
    padding: 4rem 0;
    background: var(--primary-light);
    position: relative;
}

.service-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 119, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.service-area .container {
    position: relative;
    z-index: 1;
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .service-area-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.service-area h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-area p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.area-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.area-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

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

.area-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--card-dark);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Stats Counter - Premium Dark */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
    padding: 2rem 0;
}

.stat-item {
    padding: 1.5rem;
    background: var(--card-dark);
    border-radius: 15px;
    border: 1px solid var(--border-dark);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

/* Team/About Section - Premium Dark */
.about-story {
    padding: 5rem 0;
    background: var(--primary);
    position: relative;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(0, 119, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-story .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.4);
    border: 1px solid var(--border-dark);
}

.about-text h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Values Grid - Premium Dark */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-dark);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: rgba(0, 119, 204, 0.3);
    transform: translateY(-3px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Google Reviews Widget */
.google-reviews-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--border);
}

.google-reviews-widget .google-logo {
    height: 30px;
    margin-bottom: 1rem;
}

.google-reviews-widget .rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.google-reviews-widget .rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.google-reviews-widget .rating-stars {
    color: #FBBC04;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.google-reviews-widget .review-count {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.google-reviews-widget .google-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #4285F4;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.google-reviews-widget .google-btn:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4);
}

.google-reviews-widget .google-btn svg {
    width: 18px;
    height: 18px;
}

/* Google Reviews Container (with real reviews) - Premium Dark */
.google-reviews-container {
    background: var(--card-dark);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--border-dark);
}

.google-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gr-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--white);
}

.gr-summary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gr-rating {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.gr-stars {
    color: #FBBC04;
    font-size: 1.1rem;
}

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

.gr-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gr-review {
    padding: 1rem;
    background: var(--primary);
    border-radius: 10px;
    border: 1px solid var(--border-dark);
}

.gr-review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.gr-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.gr-reviewer {
    flex: 1;
    min-width: 120px;
}

.gr-name {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.gr-date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.gr-review-stars {
    color: #FBBC04;
    font-size: 0.9rem;
}

.gr-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.gr-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gr-link:hover {
    background: var(--accent-hover);
}

/* Reviews Section with Widget */
.reviews-with-widget {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .reviews-with-widget {
        grid-template-columns: 1fr 350px;
    }
}

/* Google Reviews Badge - Premium Dark */
.google-reviews-badge {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.gr-badge-link {
    display: block;
    text-decoration: none;
    background: var(--card-dark);
    border: 2px solid var(--border-dark);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.gr-badge-link:hover {
    border-color: var(--accent);
    box-shadow: 0 5px 30px rgba(0, 119, 204, 0.2);
    transform: translateY(-2px);
}

.gr-badge-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.gr-badge-logo svg {
    display: block;
}

.gr-badge-info {
    flex: 1;
}

.gr-badge-title {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.gr-badge-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.gr-badge-score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.gr-badge-stars {
    color: #FBBC04;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.gr-badge-text {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
}

.gr-badge-arrow {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.gr-badge-link:hover .gr-badge-arrow {
    transform: translateX(5px);
}

@media (max-width: 500px) {
    .gr-badge-content {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .gr-badge-arrow {
        display: none;
    }
}

/* Avatar Initials - Premium */
.gr-avatar-initial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 10px var(--accent-glow);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--primary);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Before/After Slider Component */
.ba-slider-section {
    padding: 5rem 0;
    background: var(--primary);
    position: relative;
}

.ba-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 119, 204, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.ba-slider-section .container {
    position: relative;
    z-index: 1;
}

.ba-slider-section .section-header h2 {
    color: var(--white);
}

.ba-slider-section .section-header p {
    color: var(--text-muted);
}

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

@media (min-width: 768px) {
    .ba-sliders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ba-slider-wrapper {
    background: var(--card-dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.ba-slider-wrapper:hover {
    border-color: rgba(0, 119, 204, 0.3);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.ba-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-slider .ba-before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.ba-slider .ba-after {
    z-index: 0;
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--accent);
    z-index: 10;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--accent-glow);
}

.ba-slider-handle::before,
.ba-slider-handle::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    transform: translateX(-50%);
}

.ba-slider-handle::before {
    top: 50%;
    margin-top: -30px;
    border-bottom: 12px solid var(--accent);
}

.ba-slider-handle::after {
    top: 50%;
    margin-top: 18px;
    border-top: 12px solid var(--accent);
}

.ba-slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--accent-glow);
    z-index: 11;
}

.ba-slider-button::before {
    content: '⟨  ⟩';
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.ba-slider-label {
    position: absolute;
    bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.7);
    color: white;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.ba-slider-label.before {
    left: 1rem;
}

.ba-slider-label.after {
    right: 1rem;
}

.ba-slider-info {
    padding: 1.25rem 1.5rem;
}

.ba-slider-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.ba-slider-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Single Large Slider Variant */
.ba-slider-wrapper.large {
    max-width: 900px;
    margin: 0 auto;
}

.ba-slider-wrapper.large .ba-slider {
    aspect-ratio: 16/9;
}

/* Touch-friendly enhancements */
@media (hover: none) and (pointer: coarse) {
    .ba-slider-button {
        width: 60px;
        height: 60px;
    }

    .ba-slider-handle {
        width: 6px;
    }
}

/* Enhanced Pricing Cards */
.pricing-section {
    padding: 5rem 0;
    background: var(--primary);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 119, 204, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 119, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

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

.pricing-card {
    background: var(--card-dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 119, 204, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.pricing-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
}

.pricing-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    background: var(--primary);
    color: var(--text-muted);
    border: 1px solid var(--border-dark);
}

.pricing-badge.popular {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    animation: pulse-badge 2s ease-in-out infinite;
}

.pricing-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--primary);
    border-color: #FFD700;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { box-shadow: 0 0 20px 5px var(--accent-glow); }
}

.pricing-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

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

.pricing-price {
    padding: 1.5rem 2rem;
    text-align: center;
    background: var(--primary);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.pricing-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.pricing-features {
    padding: 1.5rem 2rem;
    flex: 1;
}

.pricing-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

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

.pricing-features li.highlight {
    color: var(--white);
    font-weight: 500;
}

.pricing-cta {
    padding: 1.5rem 2rem 2rem;
}

.pricing-cta .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* Compact service features for service cards */
.service-features {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-dark);
    border-top: 1px solid var(--border-dark);
    padding: 1rem 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    display: block;
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex: 1;
    min-width: 250px;
}

.cookie-banner a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 70px; /* Above sticky mobile CTA */
    }

    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner p {
        min-width: auto;
    }
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 25%, #FFD700 50%, #FFA500 75%, #FFD700 100%);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
    color: #000000;
    padding: 1rem 0;
    position: relative;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.5);
    border-bottom: 3px solid #FF6600;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.promo-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-badge {
    background: #FF0000;
    color: #FFFFFF;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-promo 1s ease-in-out infinite;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
}

@keyframes pulse-promo {
    0%, 100% { transform: scale(1); box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4); }
    50% { transform: scale(1.08); box-shadow: 0 4px 20px rgba(255, 0, 0, 0.6); }
}

.promo-text {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    color: #000000;
}

.promo-text strong {
    font-weight: 900;
    font-size: 1.2rem;
}

.promo-code {
    background: #000000;
    color: #FFD700;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    font-family: 'Montserrat', monospace;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 2px;
    border: 2px solid #000000;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.promo-code:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
}

.promo-validity {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333333;
    padding-left: 1rem;
    border-left: 2px solid rgba(0, 0, 0, 0.3);
}

.promo-cta {
    background: #FF0000;
    color: #FFFFFF;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.promo-cta:hover {
    background: #CC0000;
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
}

.promo-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.promo-close:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.promo-banner.hidden {
    display: none;
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 0.6rem 0;
    }

    .promo-banner .container {
        padding: 0 0.75rem;
    }

    .promo-content {
        flex-direction: column;
        gap: 0.4rem;
        padding-right: 2rem;
        align-items: center;
    }

    .promo-badge {
        display: none;
    }

    .promo-text {
        font-size: 0.85rem;
        text-align: center;
        gap: 0.4rem;
    }

    .promo-text strong {
        font-size: 0.95rem;
    }

    .promo-code {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
        letter-spacing: 1px;
    }

    .promo-validity {
        display: none;
    }

    .promo-cta {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
        margin-top: 0.2rem;
    }

    .promo-close {
        right: 0.4rem;
        top: 0.5rem;
        transform: none;
        width: 24px;
        height: 24px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        padding: 0.5rem 0;
    }

    .promo-content {
        padding-right: 1.75rem;
    }

    .promo-text {
        font-size: 0.8rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .promo-text strong {
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }

    .promo-code {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .promo-cta {
        width: auto;
        padding: 0.35rem 0.9rem;
        font-size: 0.65rem;
    }

    .promo-close {
        right: 0.3rem;
        top: 0.4rem;
        width: 22px;
        height: 22px;
        font-size: 1rem;
    }
}
