/* =========================================
   TOP WASH - Modern Premium Autopflege CSS
   ========================================= */

/* --- Variables --- */
:root {
    /* Colors */
    --color-primary: #004b99; /* Deeper Premium Blue */
    --color-primary-light: #0066cc;
    --color-primary-dark: #002d5c;
    --color-secondary: #00d2ff; /* Sleek Cyan / Water */
    --color-dark: #0d1321; /* Very dark rich blue */
    --color-dark-light: #1d2d44;
    --color-light: #f4f6f9;
    --color-white: #ffffff;
    --color-text: #2b2d42;
    --color-text-light: #5c677d;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    --gradient-water: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    
    /* Shadows - softer and more premium */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 45, 92, 0.15);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Smoother apple-like easing */
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--color-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition-fast);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-footer {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    transition: var(--transition-fast);
}

/* --- Hero Slider --- */
.hero-slider-section {
    position: relative;
    padding-top: 75px; /* offset for navbar */
    background: var(--color-dark);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh; /* Premium large slider */
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 19, 33, 0.9) 0%, rgba(13, 19, 33, 0.3) 100%);
    display: flex;
    align-items: center;
}

.slide-content {
    color: var(--color-white);
    max-width: 700px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-title {
    font-size: 4rem;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.text-gradient {
    background: var(--gradient-water);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    font-weight: 300;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active, .dot:hover {
    background: var(--color-secondary);
    transform: scale(1.2);
}

/* Trust Bar */
.trust-bar {
    background: var(--color-white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 20px 0;
    z-index: 3;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.trust-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.trust-container img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    transition: var(--transition-fast);
}

.trust-container img:hover {
    transform: translateY(-2px);
}


/* --- Method Section (3-Stufen) --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card.has-image {
    background: var(--color-white);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.step-card.has-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-image {
    position: relative;
    height: 220px;
    width: 100%;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.step-card.has-image:hover .step-image img {
    transform: scale(1.05);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-white);
    position: absolute;
    bottom: -20px;
    right: 20px;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 5;
}

.step-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.step-content h3 {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.step-title-highlight {
    font-size: 1.5rem;
    color: var(--color-dark);
    font-weight: 800;
    display: block;
    margin-top: 5px;
}

.step-content p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-modal {
    align-self: flex-start;
    padding: 10px 24px;
    font-size: 0.95rem;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-modal:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* --- Modals --- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(13, 19, 33, 0.8); 
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--color-white);
    margin: auto;
    padding: 50px;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: var(--color-text-light);
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--color-primary);
    text-decoration: none;
}

.modal-body h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    margin-top: 0;
}

.modal-body h3 {
    font-size: 1.4rem;
    color: var(--color-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.modal-highlight-title {
    color: var(--color-secondary) !important;
    text-transform: uppercase;
    font-size: 0.9rem !important;
    letter-spacing: 1px;
    margin-bottom: 10px !important;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.8;
}

.modal-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.modal-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-size: 1.05rem;
}

.modal-list li::before {
    content: '•';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.important-note {
    background: var(--color-light);
    border-left: 4px solid var(--color-primary);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.important-note h4 {
    margin-bottom: 10px;
    color: var(--color-dark);
    font-size: 1.2rem;
}

.important-note p {
    margin-bottom: 0;
}

/* --- Video Wrapper --- */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Locations Quick Access Section --- */
.locations-quick-section {
    padding: 60px 0;
    background-color: var(--color-white);
    text-align: center;
}

.locations-quick-header {
    margin-bottom: 30px;
}

.small-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.locations-quick-header h2 {
    font-size: 2.2rem;
    color: var(--color-dark);
}

.locations-quick-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.location-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--color-light);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition-normal);
    text-align: left;
    min-width: 180px;
}

.location-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.location-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.location-pill span {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
}

.location-pill small {
    font-weight: 400;
    color: var(--color-text-light);
    font-size: 0.8rem;
}

.locations-quick-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.info-link {
    color: var(--color-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.info-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.price-badge {
    background-color: #ff0000;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    line-height: 1.1;
}

.price-badge-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.price-badge-value {
    font-size: 1.8rem;
    font-weight: 800;
}

/* --- Benefits Section --- */
.benefits-section {
    padding: 80px 0;
    background-color: var(--color-white);
    text-align: center;
}

.benefits-title {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
}

.benefit-icon-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 5px;
    transition: var(--transition-normal);
}

.benefit-item:hover .benefit-icon-ring {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.2);
}

.benefit-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b-icon {
    width: 55px;
    height: 55px;
    color: var(--color-primary);
}

.benefit-item p {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 10px;
}

.benefit-link {
    color: var(--color-secondary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.benefit-link:hover {
    color: var(--color-primary);
}

/* --- Premium Locations Section --- */
.premium-locations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.premium-loc-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.premium-loc-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.loc-map {
    height: 160px;
    width: 100%;
    background-color: #e5e3df; /* fallback */
}

.loc-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loc-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.loc-content h3 {
    text-align: center;
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.loc-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.4;
}

.loc-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.loc-links p {
    margin: 0;
}

.loc-links a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.loc-links a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.loc-links .divider {
    color: #ccc;
    margin: 0 5px;
}

.hours-title {
    display: block;
    font-size: 0.95rem;
    color: var(--color-dark);
    margin-bottom: 5px;
}

.loc-hours p {
    margin: 0;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 12px;
    background-color: #003366; /* darker blue to match screenshot */
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-block:hover {
    background-color: var(--color-primary);
}

@media (max-width: 1200px) {
    .premium-locations {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-locations {
        grid-template-columns: 1fr;
    }
}

/* --- Einfahrt-Hinweise Section --- */
.hinweise-section {
    padding: 80px 0;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.rule-card {
    background: var(--color-white);
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.05);
}

.rule-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.rule-card img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-bottom: 15px;
}

.rule-card p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.3;
}

/* Dimensions Wrapper */
.dimensions-wrapper {
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dimensions-wrapper h3 {
    text-align: center;
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.dimensions-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.dimensions-text {
    flex: 1;
}

.dimensions-text h4 {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.dimensions-text p {
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 10px;
}

.highlight-contact {
    color: var(--color-secondary) !important;
    font-weight: 700;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.dimensions-images {
    flex: 1.5;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.dimensions-images img {
    max-width: 48%;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #ddd;
}

@media (max-width: 992px) {
    .rules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .dimensions-content {
        flex-direction: column;
    }
    .dimensions-images {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dimensions-images {
        flex-direction: column;
        align-items: center;
    }
    .dimensions-images img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .rules-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Reviews Section --- */
.reviews-section {
    padding: 80px 0;
    background-color: var(--color-white);
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.google-rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.google-rating-summary h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0;
}

.summary-stars {
    display: flex;
    gap: 4px;
}

.google-logo img {
    height: 30px;
    margin-top: 10px;
}

.reviews-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 20px;
}

.review-card {
    flex: 0 0 calc(33.333% - 14px);
    background: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.review-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.review-author .google-g {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
}

.author-info h4 {
    margin: 0;
    font-size: 16px;
    color: var(--color-secondary);
}

.author-info span {
    font-size: 12px;
    color: #666;
}

.review-stars {
    font-size: 16px;
    letter-spacing: 2px;
}

.review-stars .star {
    display: inline-block;
}

.review-stars .star.filled {
    color: #fbbc04;
}

.review-stars .star.empty {
    color: #e0e0e0;
}

.review-text-container {
    position: relative;
}

.review-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

.review-text.long-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.review-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    margin-top: 10px;
    cursor: pointer;
    text-decoration: underline;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-secondary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all 0.2s ease;
}

.slider-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 100%;
    }
    .reviews-slider-container {
        padding: 0 40px;
    }
}

/* --- Pricing Section --- */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 40px 30px;
    width: calc(33.333% - 30px);
    min-width: 300px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--color-primary);
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-15px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}

.pricing-card.premium {
    background: var(--color-dark);
    color: var(--color-white);
    background-image: linear-gradient(to bottom right, var(--color-dark), var(--color-dark-light));
}

.pricing-card.premium .card-header h3,
.pricing-card.premium .price,
.pricing-card.premium .features-list li {
    color: var(--color-white);
}

.pricing-card.premium .features-list li::before {
    color: var(--color-secondary);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.pricing-card.premium .card-header {
    border-bottom-color: rgba(255,255,255,0.1);
}

.card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card-header h3 small {
    font-size: 0.95rem;
    color: var(--color-secondary);
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.features-list {
    flex-grow: 1;
}

.features-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 35px;
    color: var(--color-text-light);
    font-size: 1rem;
    font-weight: 500;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- Locations Section --- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.location-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 6px solid var(--color-primary);
    transition: var(--transition-fast);
}

.location-card:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--color-secondary);
    transform: translateX(5px);
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.location-card .address {
    color: var(--color-text-light);
    margin-bottom: 25px;
    font-style: normal;
    font-size: 1.05rem;
    line-height: 1.8;
}

.location-card .hours p {
    margin-bottom: 8px;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    padding-bottom: 5px;
}

.location-card .hours p:last-child {
    border-bottom: none;
}

/* --- FAQ Section --- */
.faq-accordion-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
}

@media (max-width: 992px) {
    .faq-accordion-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--color-white);
    margin-bottom: 15px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 25px 30px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.icon-plus {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
}

.icon-plus::before,
.icon-plus::after {
    content: '';
    position: absolute;
    background-color: var(--color-primary);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.icon-plus::before {
    top: 11px;
    left: 0;
    width: 24px;
    height: 2px;
}

.icon-plus::after {
    top: 0;
    left: 11px;
    width: 2px;
    height: 24px;
}

.faq-item.active .icon-plus::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-question {
    color: var(--color-primary);
    background: rgba(0, 75, 153, 0.02);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: var(--color-white);
}

.faq-answer p, 
.faq-answer ul {
    padding: 0 30px 15px;
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.faq-answer p:last-child, 
.faq-answer ul:last-child {
    padding-bottom: 30px;
}

.faq-answer ul {
    padding-left: 50px;
    padding-right: 30px;
    list-style-type: disc;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* --- Footer --- */
.site-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 25px;
    max-width: 320px;
    font-size: 1.05rem;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--color-white);
    font-weight: 600;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 8px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.footer-contact a {
    color: var(--color-secondary);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.legal-links {
    display: flex;
    gap: 25px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.legal-links a:hover {
    color: var(--color-white);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .pricing-card {
        width: calc(50% - 30px);
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-15px);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .hero-slider {
        height: 65vh;
        min-height: 450px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .slide-content {
        padding: 0 55px;
    }
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 20px;
    }
    .trust-container {
        flex-direction: column;
        gap: 20px;
    }
    .trust-container img {
        height: 50px;
    }
}
