/* css/style.css */
:root {
    --bg-color: #050505;
    --surface-color: #121212;
    --surface-color-light: #1e1e1e;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --accent-color: #4FC3F7;
    --accent-hover: #29b6f6;
    --border-color: rgba(255, 255, 255, 0.1);
    
    --font-primary: 'Outfit', sans-serif;
    --font-script: 'Great Vibes', cursive;
    
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shiny-text {
    position: relative;
    display: inline-block;
}

.shiny-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent 0%, 
        transparent 40%, 
        rgba(255, 255, 255, 0.9) 50%, 
        transparent 60%, 
        transparent 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: shine-sweep 6s infinite linear;
    pointer-events: none;
}

@keyframes shine-sweep {
    0% { background-position: -200% 0; }
    15% { background-position: 200% 0; }
    100% { background-position: 200% 0; } /* Wait before next sweep */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.5s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 200%;
}

.btn span, .btn i {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    /* Removed box-shadow as requested */
}

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

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    pointer-events: none; /* Let clicks pass through to columns beneath if needed */
}

.logo-img {
    height: 160px;
    width: auto;
    margin-top: -10px;
    margin-bottom: -100px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    pointer-events: auto; /* Logo image itself is clickable if it was a link, but container isn't blocking */
}

.header.scrolled .logo-img {
    height: 70px;
    margin-bottom: 0;
    margin-top: 0;
    filter: none;
}

/* Redundant nav hidden */
.nav {
    display: none;
}

.header-left {
    z-index: 1200;
}

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

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 22px;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.menu-toggle i {
    font-size: 1.4rem;
}

/* Fullscreen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.5);
}

.menu-overlay.active .menu-close {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.5s;
}

.menu-close:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.menu-overlay-logo {
    height: 80px;
    width: auto;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease 0.2s;
}

.menu-overlay.active .menu-overlay-logo {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay-links {
    list-style: none;
    text-align: center;
    margin-bottom: 50px;
}

.menu-overlay-links li {
    margin-bottom: 25px;
    overflow: hidden;
}

.menu-overlay-links a {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-overlay.active .menu-overlay-links a {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay-links li:nth-child(1) a { transition-delay: 0.3s; }
.menu-overlay-links li:nth-child(2) a { transition-delay: 0.4s; }
.menu-overlay-links li:nth-child(3) a { transition-delay: 0.5s; }
.menu-overlay-links li:nth-child(4) a { transition-delay: 0.6s; }
.menu-overlay-links li:nth-child(5) a { transition-delay: 0.7s; }
.menu-overlay-links li:nth-child(6) a { transition-delay: 0.8s; }

.menu-overlay-links a:hover,
.menu-overlay-links a.active {
    color: var(--accent-color);
}

.menu-overlay-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.9s; /* Pushed by 0.1s */
}

.menu-overlay.active .menu-overlay-actions {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay-socials {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 1.0s; /* Pushed by 0.1s */
}

.menu-overlay.active .menu-overlay-socials {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay-socials a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.menu-overlay-socials a:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
}

.menu-overlay .btn {
    min-width: 250px;
    justify-content: center;
}

.nav {
    display: none; /* Hidden on all devices, replaced by menu-overlay */
}

/* Base Sections */
.section {
    padding: 100px 0;
}

/* Footer */
.footer {
    background-color: var(--surface-color);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 2rem;
}

.footer-logo:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--surface-color-light);
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.3);
}

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

.footer-links a {
    color: var(--text-muted);
    display: inline-block;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-muted);
}

.contact-info li i {
    color: var(--accent-color);
    margin-top: 5px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

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

.footer-bottom {
    background-color: #000;
    padding: 25px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid #1a1a1a;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition);
}

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

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(var(--accent-color-rgb), 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer-content {
    padding: 0 25px 25px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Large enough for content */
}

/* Reviews Marquee */
.reviews-section {
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Full width break out */
    position: relative;
    padding: 20px 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.marquee-row {
    display: flex;
    width: max-content;
}

.marquee-group {
    display: flex;
    flex-shrink: 0;
    gap: 30px;
    padding-right: 30px;
    animation: marquee-scroll 45s linear infinite;
}

.marquee-row.reverse .marquee-group {
    animation-direction: reverse;
}

.marquee-row:hover .marquee-group {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    width: 380px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(79, 195, 247, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.review-stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
}

.review-card:nth-child(even) .author-avatar {
    background: var(--accent-color);
    color: #000;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 195, 247, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.pricing-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.pricing-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: block;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
    flex-grow: 1; /* Pushes button to bottom */
}

.pricing-features li {
    margin-bottom: 15px;
    color: #ddd;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pricing-features li i {
    color: var(--accent-color);
    margin-top: 4px;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utilities */
.mt-3 { margin-top: 1rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }

/* --- Homepage Sections --- */
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--surface-color); /* Fallback */
    padding-top: 80px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 100%);
    z-index: 1;
}

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

.hero-content {
    max-width: 700px;
}

.text-left {
    text-align: left !important;
}

.mt-5 {
    margin-top: 4rem !important;
}

.mt-4 {
    margin-top: 2.5rem !important;
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(79, 195, 247, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #ccc;
}

.stat-item i {
    color: var(--accent-color);
}

/* Services Sections */
.bg-surface {
    background-color: var(--surface-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 60px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.service-card-bg {
    background-size: cover;
    background-position: center;
    border: none;
}

.service-card-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.95) 100%);
    z-index: -1;
    transition: var(--transition);
}

.service-card-bg:hover::after {
    background: linear-gradient(to bottom, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.85) 100%);
}

.service-card-bg * {
    position: relative;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 195, 247, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

/* Before / After Slider */
.ba-section {
    background-color: var(--bg-color);
}

.ba-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.ba-content .section-subtitle {
    text-transform: none;
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.ba-benefits {
    margin-bottom: 2rem;
}

.ba-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.ba-benefits i {
    color: #000;
    background: var(--accent-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.ba-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.ba-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #222;
}

.ba-before {
    width: 100%;
    z-index: 2;
    overflow: hidden;
    clip-path: inset(0 50% 0 0);
}

.placeholder-img {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.after-bg { background: linear-gradient(45deg, #111, #2a2a2a); }
.before-bg { background: linear-gradient(45deg, #2a2a2a, #444); width: 200%; }

.ba-slider-input {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%; height: 100%;
    background: transparent;
    outline: none;
    margin: 0;
    z-index: 5;
    cursor: ew-resize;
}

.ba-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 4px; height: 100%;
    background: transparent;
    cursor: ew-resize;
}

.ba-slider-line {
    position: absolute;
    top: 0; bottom: 0;
    width: 4px;
    background: var(--accent-color);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

.ba-slider-button {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    border: 3px solid #fff;
}

/* About Snippet */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start; /* Changed from center to allow sticky to work from top */
}

.about-img {
    position: sticky;
    top: 120px; /* Distance from top of screen */
}

.image-wrapper {
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.img-placeholder {
    width: 100%; height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #333;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-color);
    color: #000;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
}

.experience-badge .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.quote-box {
    padding: 20px 25px;
    border-left: 4px solid var(--accent-color);
    background: var(--surface-color-light);
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
}

.quote-box p {
    margin-bottom: 0;
    color: #fff;
    font-size: 1.1rem;
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.85)), url('../img/hemrikacarcleaning_hero1.jpg') center/cover no-repeat fixed;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* --- Diensten Page --- */
.page-header {
    background: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.9)), url('../img/hero-bg.jpg') center/cover no-repeat;
    padding: 200px 0 80px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail-row.reverse {
    direction: rtl;
}

.service-detail-row.reverse > * {
    direction: ltr;
}

.service-icon-large {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: #e0e0e0;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.features-list {
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.features-list i {
    color: var(--accent-color);
}

.service-detail-img {
    height: 100%;
}

.service-detail-img .placeholder-img {
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.action-banner {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1) 0%, rgba(5, 5, 5, 1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 60px;
    margin-top: 50px;
}

.action-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.action-card {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 195, 247, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.action-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.action-card h3 small {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.action-list {
    margin-bottom: 30px;
}

.action-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: #ddd;
}

.action-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.action-price {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.action-combo {
    background: rgba(255,255,255,0.03);
    border-left: 4px solid var(--accent-color);
    padding: 25px;
    border-radius: 0 8px 8px 0;
}

/* --- Portfolio Page --- */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

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

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

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

.portfolio-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.portfolio-overlay span {
    color: var(--accent-color);
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* --- Contact Page --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.info-box i {
    font-size: 2rem;
    color: var(--accent-color);
}

.info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-box p, .info-box a {
    color: var(--text-muted);
}

.contact-form {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255,255,255,0.08);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

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

.map-container {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 50px;
    border: 1px solid var(--border-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
        z-index: 1000;
    }
    
    .nav.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

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

    .header-actions .btn {
        display: flex;
        padding: 10px 15px;
    }

    .header-actions .btn span {
        display: none;
    }

    .header-actions .btn i {
        margin: 0;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem !important;
    }

    .logo-img {
        height: 80px;
        margin-bottom: -40px;
    }

    .header.scrolled .logo-img {
        height: 50px;
    }

    .menu-toggle {
        padding: 10px 15px;
    }

    .menu-toggle span {
        display: none;
    }

    .hero {
        text-align: center;
        padding-top: 150px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        align-items: center;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-grid,
    .contact-container,
    .action-grid,
    .ba-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 50px; /* More space between button and image as requested */
        margin-bottom: 40px; /* Further reduced space between services (above titles) */
        direction: ltr !important;
    }

    .service-detail-row.reverse {
        direction: ltr !important;
    }

    .action-combo {
        border-left: none;
        border-top: 4px solid var(--accent-color);
        border-radius: 8px;
        margin-top: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Menu Overlay Mobile Fixes */
    .menu-overlay {
        justify-content: flex-start;
        padding-top: 20px;
    }

    .menu-overlay-header {
        position: absolute;
        top: 30px;
        left: 30px;
        margin: 0;
    }

    .menu-close {
        top: 30px;
        right: 30px;
    }

    .menu-overlay-logo {
        height: 50px;
    }

    .menu-overlay-links {
        margin-top: 120px;
        gap: 5px;
        margin-bottom: 20px;
    }

    .menu-overlay-links a {
        font-size: 1.5rem;
        padding: 5px 0;
    }

    .menu-overlay-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        gap: 10px;
    }

    .menu-overlay-actions .btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .menu-overlay-socials {
        margin-top: 20px;
        gap: 20px;
    }

    /* Review Carousel Mobile Fixes */
    .marquee-wrapper {
        margin-left: 0;
        width: 100%;
        padding: 0;
        gap: 20px;
    }

    .marquee-wrapper::before,
    .marquee-wrapper::after {
        display: none; /* Remove shadows to make it cleaner on small screens */
    }

    .marquee-row {
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 10px 0 20px;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

    .marquee-row::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }

    .marquee-group {
        animation: none !important;
        padding-right: 20px;
        padding-left: 20px; /* Offset first card slightly */
    }

    .marquee-group[aria-hidden="true"] {
        display: none !important; /* Hide duplicate row on mobile */
    }

    .review-card {
        width: 85vw; /* Almost full width for better readability */
        max-width: 320px;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
}
