/* Design System - Mountain Dusk */
:root {
    --primary: #ff6b00;
    /* Vivid Orange - Security & Action */
    --primary-hover: #e65f00;
    --background: #0f0f10;
    /* Deep Obsidian */
    --surface: #1a1a1b;
    --text: #ffffff;
    --text-muted: #a0a0a5;
    --accent: #3e3e42;
    /* Slate Gray */
    --glass: rgba(26, 26, 27, 0.7);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--background);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

ul {
    list-style: none;
}

button,
.btn {
    cursor: pointer;
    border: none;
    outline: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

/* Shine Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: none;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 150%;
    transition: all 0.6s ease-in-out;
}

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

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

/* Glassmorphism */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    /* Reduced as protrusion is gone */
    display: flex;
    justify-content: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 75px;
    /* Widened slightly as requested */
    border-radius: 50px;
    width: 95%;
    max-width: 1300px;
    transition: var(--transition);
    flex: 0 0 95%; /* Prevent shrinking in flex header */
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

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

.logo img {
    height: 69px;
    object-fit: cover;
    object-position: top;
    /* Fits exactly with 3px margin top and bottom within 75px bar */
    transition: var(--transition);
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

.logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 4px;
    /* "Separadas" (more spaced out) */
    text-transform: uppercase;
}

.logo .primary-text {
    color: var(--primary);
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
}

.nav-links li a:hover {
    color: var(--primary);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 20px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 32px;
    /* Slimmer switcher */
}

.lang-btn {
    padding: 0 16px;
    height: 100%;
    min-width: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 25px;
    background: transparent;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.lang-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.2);
}

.lang-btn:hover:not(.active) {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient tint using brand colors: Obsidian and a touch of Orange */
    background: linear-gradient(135deg, rgba(15, 15, 16, 0.8) 20%, rgba(255, 107, 0, 0.15) 100%),
        url('../img/hero_climbing_spain.webp');
    background-size: cover;
    /* Mirror effect without extra zoom */
    transform: scaleX(-1) translateY(var(--parallax-y, 0));
    height: 120%;
    top: -10%;
    filter: blur(3px) brightness(0.6) contrast(1.1);
    z-index: -1;
    will-change: transform;
}

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

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center; /* Aligns them by the center line */
    flex-wrap: wrap;
}

.hero-cta .btn {
    margin: 0; /* Clear previous manual margins */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 55px; /* Ensure they have the same minimum height */
    flex: 0 1 auto;
}

.hero-logo {
    height: 300px; /* Slightly smaller to fit better */
    max-width: 90vw;
    object-fit: cover;
    object-position: top;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

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

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Sections */
section {
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section>*:not(.section-title):not(.hero-content) {
    width: 100%;
    max-width: 1300px;
}

@media (max-width: 850px) {
    section {
        padding: 60px 20px;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

.service-card {
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 30px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 200px);
    /* Height of the info area = total - img height */
}

.service-info h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.service-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.service-pricing {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 107, 0, 0.15);
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.price-label {
    color: var(--text-muted);
}

.price-value {
    color: var(--primary);
    font-weight: 800;
}

/* Pricing Section */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .pricing-table {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-table {
        grid-template-columns: 1fr;
    }
}

.price-card {
    background: var(--surface);
    padding: 40px 15px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.price-card h3 {
    min-height: 3rem;
    /* Align titles */
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    min-height: 4rem;
    /* Align prices */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-features {
    margin: 30px 0;
    text-align: left;
    flex-grow: 1;
}

.price-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.price-card h3 {
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-features {
    margin: 30px 0;
    text-align: left;
}

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    background: var(--surface);
    padding: 40px;
    border-radius: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 600px) {
    .contact-container {
        gap: 30px;
    }

    .contact-info {
        padding: 25px;
    }
}

input,
textarea,
.form-select {
    background: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    color: white;
    font-family: inherit;
    width: 100%;
}

.form-row-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 600px) {
    .form-row-three {
        grid-template-columns: 1fr;
    }
}

input:focus,
textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    content: '+';
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    transition: var(--transition);
}

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

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        height: 250px;
    }
}

.gallery-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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



.gallery-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: 3;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-item:hover .gallery-label {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* Video Styling */
.video-item {
    position: relative;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding-left: 5px;
    /* Adjust triangle alignment */
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    transition: var(--transition);
}

.gallery-item:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
}

/* Reviews Slider */
.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.reviews-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.review-card {
    min-width: calc(33.333% - 20px);
    background: var(--background);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-gallery-title {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.modal-gallery .gallery-item {
    height: 120px;
    border-radius: 10px;
}

.modal-gallery .play-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
}

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

.review-avatar,
.review-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-avatar-placeholder {
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.review-meta h4 {
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
}

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

.stars {
    color: #fbbc04;
    /* Google Star Color */
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .review-card {
        min-width: calc(50% - 15px);
    }
}

/* Skeleton Loading */
.skeleton-review {
    min-width: calc(33.333% - 20px);
    background: var(--surface);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skeleton-item {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.03) 25%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite linear;
    border-radius: 4px;
}

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

.skeleton-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.skeleton-line {
    height: 12px;
    margin-bottom: 10px;
    width: 100%;
}

.skeleton-line.short {
    width: 60%;
}

@media (max-width: 1024px) {
    .skeleton-review {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 850px) {
    .skeleton-review {
        min-width: 100%;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #f1f1f1;
    font-size: 60px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 3001;
}

.close-lightbox:hover {
    color: var(--primary);
    transform: scale(1.1);
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-size: 1.2rem;
}

/* Service Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 4000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 15px; /* Reduced padding for mobile */
}

.modal-content {
    max-width: 600px;
    width: 100%;
    padding: 40px 25px; /* Reduced padding for mobile */
    border-radius: 25px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    max-height: 90vh; /* Ensure it doesn't exceed viewport height */
    overflow-y: auto; /* Allow scrolling if content is long */
    animation: modalScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScaleUp {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Adjust padding for larger screens */
@media (min-width: 768px) {
    .modal-content {
        padding: 50px;
    }
    .modal {
        padding: 40px;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.close-modal:hover {
    color: var(--primary);
}

.modal-body h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.modal-body .desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.modal-pricing-grid {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px; /* Reduced padding */
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    margin-top: 20px;
}

.modal-price-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-price-item:last-child {
    border-bottom: none;
}

.modal-price-item .tag {
    font-weight: 600;
}

.modal-price-item .val {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 30px 15px;
    }
    .modal-price-item .tag {
        font-size: 0.9rem;
    }
    .modal-price-item .val {
        font-size: 1rem;
    }
}

.social-mini,
.social-footer {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-footer {
    justify-content: center;
    margin-bottom: 20px;
}

.social-icon {
    width: 55px;
    /* Increased size */
    height: 55px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 107, 0, 0.2);
    /* Subtle persistent brand border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
    border-color: var(--primary);
}

.social-icon:hover svg {
    fill: white;
    transform: rotate(8deg);
}

/* Responsive */
@media (max-width: 1100px) {
    nav {
        width: 95%;
        flex: 0 0 95%;
        padding: 5px 25px;
    }

    .nav-links {
        gap: 15px;
    }

    .lang-switcher {
        margin: 0 10px;
    }
}

.nav-cta {
    padding: 12px 24px;
    font-size: 1rem;
}

.mobile-cta-item {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
}

@media (max-width: 950px) {
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--surface);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: 0.5s ease-in-out;
        z-index: 2001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-container.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        display: flex;
    }

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

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 2002;
        width: 30px;
        height: 25px;
        position: relative;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background-color: var(--text);
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-cta {
        display: none !important;
    }

    .mobile-cta-item {
        display: block !important;
        margin-top: 20px;
    }
}

@media (max-width: 850px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero {
        padding-top: 80px;
    }

    nav {
        padding: 0 15px;
        height: 65px;
        flex: 0 0 95%;
    }

    .logo {
        gap: 8px;
    }

    .logo span {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .logo img {
        height: 35px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    padding: 20px 30px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-radius: 15px;
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 20px;
}

@media (max-width: 600px) {
    .cookie-banner.show {
        bottom: 80px; /* Push it higher on mobile to avoid overlapping with system bars or WhatsApp */
    }
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text);
}

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

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    width: 65px;
    height: 65px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    background-color: #128C7E;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

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

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