:root {
    --primary: #2c3e50;
    --accent: #f39c12;
    --accent-hover: #e67e22;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --glass: rgba(255, 255, 255, 0.9);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.highlight {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-large {
    padding: 16px 35px;
    font-size: 1.1rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.8rem;
    color: var(--white);
}

header.scrolled .brand {
    color: var(--primary);
}

.brand span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

header.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--accent);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

header.scrolled .phone-link {
    color: var(--primary);
}

/* Hero with Video */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 800px;
}

.tag {
    display: inline-block;
    background: rgba(243, 156, 18, 0.2);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-badges {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.feature-card { 
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

/* Services */
.services {
    padding: 80px 0 140px;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card { 
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.learn-more {
    margin-top: auto;
    padding-top: 20px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* CTA Banner */
.cta-banner {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* About */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.about-image .image-box {
    width: 100%;
    height: 400px;
    background: #ddd;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(45deg, var(--primary), #34495e);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-form { 
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .brand {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Gallery Preview */
.gallery-preview {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.gallery-item {
    text-align: center;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
    display: block;
    margin-bottom: 15px;
}

.gallery-item:hover img {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.gallery-caption {
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
}

/* Zone Navigation */
.zones-grid-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.zone-link-card {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    border: 1px solid #eee;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.zone-link-card:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.25);
}

.zone-link-card::before {
    content: '📍';
    font-size: 1.1rem;
}

.zone-text-full {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.social-links {
    margin-top: 15px;
}

.facebook-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid var(--accent);
    border-radius: 5px;
    transition: var(--transition);
}

.facebook-link:hover {
    background: var(--accent);
    color: var(--white);
}

/* Service & Zone Detail Pages */
.service-detail-hero, .zone-hero {
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.service-detail-hero::before, .zone-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.service-detail-hero .container, .zone-hero .container {
    position: relative;
    z-index: 1;
}

.content-section {
    padding: 80px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center; /* This will crop the edges including potential black bars */
}

.text-content h2 {
    margin-bottom: 20px;
    color: var(--primary);
}

.text-content ul {
    list-style: none;
    margin: 20px 0;
}

.text-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.text-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    .about-content, .contact-grid {
        grid-template-columns: 1fr;
    }
    .features {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
    .nav-links, .header-contact .phone-link {
        display: none;
    }
    .menu-toggle {
        display: block;
        cursor: pointer;
    }
    .menu-toggle span {
        display: block;
        width: 30px;
        height: 3px;
        background: var(--white);
        margin: 6px 0;
        transition: var(--transition);
    }
    header.scrolled .menu-toggle span {
        background: var(--primary);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .hero-actions {
        flex-direction: column;
    }
    .hero {
        text-align: center;
        justify-content: center;
    }
    .hero-badges {
        justify-content: center;
    }
}

/* Animations */
.animate-up {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up { opacity: 1 !important; }

.gallery-caption { text-align: center; margin-top: 10px; font-weight: 600; font-size: 0.9rem; color: #fff; opacity: 0.8; }

/* Check List Styling */
.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 15px;
    align-items: baseline;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.check-list li strong {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .check-list li {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

/* Back to Home Button */
.back-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.back-home:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateX(-5px);
}

/* Floating back button for subpages */
.floating-back {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 1000;
    background: var(--white);
    color: var(--primary);
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 1px solid #eee;
}

.floating-back:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.back-home {
    display: none; /* Hide the secondary text link if the floating one is present */
}

@media (max-width: 1200px) {
    .floating-back {
        position: static;
        margin: 20px;
        display: inline-flex;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Footer SEO Enhancement */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
}

.nap-info {
    list-style: none;
    margin-top: 20px;
}

.nap-info li {
    margin-bottom: 12px;
    color: #ccc;
}

.nap-info a {
    color: var(--accent);
    text-decoration: none;
}

.footer-links h4, .footer-zones h4 {
    color: var(--accent);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links ul, .footer-zones ul {
    list-style: none;
}

.footer-links li, .footer-zones li {
    margin-bottom: 12px;
}

.footer-links a, .footer-zones a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover, .footer-zones a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    background: #111;
    padding: 30px 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #777;
}

.footer-bottom a {
    color: #999;
    margin: 0 10px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* --- NEW OPTIMIZED STYLES --- */

/* Pricing & Included Styles */
.pricing-section {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.price-card h3 {
    margin-bottom: 10px;
}

.price-value {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 800;
    margin: 15px 0;
}

.price-unit {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.price-card ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    text-align: left;
}

.price-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.price-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Included in prestation styles */
.included-list {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: left;
}

.included-list h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.included-list ul {
    list-style: none;
    padding: 0;
}

.included-list li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
}

.included-list li::before {
    content: '●';
    color: var(--accent);
    font-size: 0.6rem;
}

/* Reviews Styling */
.detailed-reviews {
    padding: 100px 0;
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.review-stars {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.review-location {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Trust Badges */
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.trust-badge-mini {
    background: rgba(255,255,255,0.15);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Aids Section */
.aides-section {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
}

.aides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.aide-card {
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 15px;
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}

.aide-card:hover {
    background: rgba(255,255,255,0.1);
}

.aide-card h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .pricing-grid, .reviews-grid, .aides-grid {
        grid-template-columns: 1fr;
    }
}
