:root {
    /* Original Vibrant Orange Branding (#FF9900) */
    --color-primary-50: #fff8ec;
    --color-primary-100: #ffeed3;
    --color-primary-200: #ffd8a6;
    --color-primary-300: #ffb86b;
    --color-primary-400: #ff992b;
    --color-primary-500: #FF9900;
    /* Main Orange */
    --color-primary-600: #FF9900;
    /* Force Vibrant */
    --color-primary-700: #e68a00;
    --color-primary-800: #cc7a00;
    --color-primary-900: #995c00;
    --color-primary-950: #663d00;

    /* Legacy compatibility / Mapping */
    --primary-color: var(--color-primary-500);
    --primary-dark: var(--color-primary-600);
    --primary-glow: rgba(212, 147, 42, 0.2);

    /* LIGHT MINIMALIST THEME */
    --bg-body: #ffffff;
    --bg-section: #ffffff;
    --bg-card: #ffffff;
    --bg-input: #ffffff;

    --text-heading: #121212;
    --text-body: #333333;
    --text-muted: #666666;

    --white: #ffffff;
    --black: #000000;

    --border-color: rgba(0, 0, 0, 0.08);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.05);

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--text-heading);
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.small-container {
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.text-orange {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    height: 48px;
    line-height: 48px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    gap: 8px;
    box-sizing: border-box;
}

/* Fix for JS dynamic display overriding */
.btn[style*="display: none"] {
    display: none !important;
}

.btn-premium-cta {
    background-color: #ffffff !important;
    color: var(--color-primary-500) !important;
    border: 1px solid var(--color-primary-500) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.btn-primary {
    background-color: var(--color-primary-500);
    color: var(--white);
    box-shadow: 0 4px 15px var(--primary-glow);
    position: relative;
    z-index: 1;
}

.btn-primary::before,
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: -1;
    opacity: 1;
}

.btn-primary::before {
    animation: buttonRipple 3s infinite;
}

.btn-primary::after {
    animation: buttonRipple 3s infinite 1.5s;
}

@keyframes buttonRipple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.08, 1.15);
        opacity: 0;
    }
}

.btn-primary:hover {
    background-color: var(--color-primary-300);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--color-primary-500);
    border: 1px solid var(--color-primary-500);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.btn-secondary:hover {
    background-color: var(--color-primary-50);
    border-color: var(--color-primary-600);
    color: var(--color-primary-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.btn.large {
    height: 48px;
    padding: 0 40px;
}

.full-width {
    width: 100%;
}

/* Navbar */
/* Navbar Base */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 40px 0;
    transition: var(--transition);
}

.main-nav {
    display: flex;
    justify-content: center;
    /* Centered */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Floating Pill Menu */
.nav-pill {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    padding: 6px 6px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav-links {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-links li a {
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-heading);
    transition: var(--transition);
}

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

/* Text Logo Styles */
.logo-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

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

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

.nav-links .btn {
    color: #000;
}

/* Hero Section */
.hero {
    height: calc(100vh - 40px);
    margin: 20px;
    border-radius: 40px;
    background-image: url('Espacio Cocinas/hero-bg.jpg');
    /* Optimized high-quality JPG */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    perspective: 1000px;
    /* Enable 3D depth */
}

.hero-title {
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    /* 40% dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    transform-style: preserve-3d;
    /* Maintain 3D for children if needed */
    will-change: transform;
}

.eyebrow {
    color: #ffffff;
    /* White text */
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #ffffff;
    /* White text */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-title .highlight {
    background: transparent;
    color: #ffffff;
    /* White text */
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    /* White text */
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Problem Section */
/* Stacking Section Cards Effect */
.section {
    padding: 120px 0;
    /* Respecting the "Exclusive Space" padding rule (min 64px, using 120px for luxury feel) */
}

/* Ensure background consistency */
.section:nth-child(even) {
    background-color: #fafafa;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px auto;
}

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

.problem-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.icon-box {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.problem-card p {
    color: var(--text-muted);
}

/* Solution Section */
.solution-section {
    background-color: var(--bg-section);
}

.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .reversed-layout .content-col {
        order: 1;
    }

    .reversed-layout .image-col {
        order: 2;
    }
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #000;
    padding: 8px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    animation: floatVertical 5s ease-in-out infinite;
}

.floating-card i {
    color: var(--color-primary-600);
    font-size: 1.2rem;
}

.eyebrow-dark {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.content-col h2 {
    margin-bottom: 20px;
}

.solution-list {
    margin: 30px 0;
}

.solution-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.check-icon {
    min-width: 24px;
    height: 24px;
    background-color: var(--color-primary-100);
    color: var(--color-primary-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.list-text strong {
    color: var(--text-heading);
}

.list-text {
    color: var(--text-muted);
    flex: 1;
}

/* Benefits Showcase */
.benefits-showcase {
    display: grid;
    gap: 40px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    width: 100%;
}

.benefit-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-description {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-top: 10px;
}

/* Remove old overlay styles */
.benefit-content {
    display: none;
}

.benefit-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-box {
    text-align: center;
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

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

/* Testimonials */
.testimonials-section {
    background: var(--bg-section);
}

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

.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    border: 1px solid var(--border-color);
}

.quote-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-body);
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.author-info h4 {
    margin-bottom: 0;
    color: var(--white);
}

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

.stars {
    color: var(--primary-color);
}

/* FAQ */
.accordion {
    margin-top: 40px;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header i {
    transition: transform 0.3s;
    color: var(--primary-color);
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-item button:hover {
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: 20px;
}

.accordion-content p {
    color: var(--text-muted);
    padding-bottom: 20px;
}

/* REDESIGNED CTA SECTION */
.cta-redesign-section {
    padding: 100px 0;
    overflow: hidden;
}

.cta-premium-card {
    background: var(--white);
    border-radius: 48px;
    padding: 80px;
    position: relative;
    overflow: hidden;
    color: var(--text-heading);
    border: 1px solid var(--border-color);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

/* Decorative Background Grid - Removed per user request */
.cta-grid-pattern {
    display: none;
}

/* Glow Effect - Very Subtle in Light Mode */
.cta-glow-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.03) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.cta-card-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.cta-text-side {
    text-align: left;
}

.cta-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 153, 0, 0.1);
    border: 1px solid rgba(255, 153, 0, 0.2);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-text-side h2 {
    font-size: 3.5rem;
    color: #121212;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-text-side p {
    font-size: 1.15rem;
    color: #666666;
    max-width: 540px;
    margin-bottom: 40px;
}

.cta-action-row {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-premium-cta {
    background: var(--color-primary-600);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 100px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-premium-cta i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-premium-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--primary-glow);
    background: var(--color-primary-300);
}

.btn-premium-cta:hover i {
    transform: translateX(5px);
}

.cta-note-pill {
    font-size: 0.9rem;
    color: #999999;
    font-weight: 500;
}

/* Decorative side elements */
.cta-decor-side {
    position: relative;
    height: 100%;
}

.floating-notif {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    width: 280px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    animation: floatVertical 6s ease-in-out infinite;
}

.floating-notif i {
    width: 45px;
    height: 45px;
    background: rgba(255, 153, 0, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.notif-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-heading);
    margin-bottom: 2px;
}

.notif-text span {
    font-size: 0.8rem;
    color: #999999;
}

.notif-1 {
    top: 10%;
    right: 0%;
}

.notif-2 {
    bottom: 15%;
    right: 20%;
    animation-delay: -3s;
}

@keyframes floatVertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .cta-card-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }

    .cta-text-side {
        text-align: center;
    }

    .cta-text-side p {
        margin: 0 auto 40px;
    }

    .cta-action-row {
        justify-content: center;
    }

    .cta-decor-side {
        height: 300px;
    }

    .notif-1 {
        right: 50%;
        transform: translateX(50%);
        top: 0;
    }

    .notif-2 {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .cta-text-side h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .cta-premium-card {
        padding: 60px 30px;
        border-radius: 30px;
    }

    .cta-text-side h2 {
        font-size: 2.2rem;
    }

    .cta-eyebrow-badge {
        font-size: 0.75rem;
    }
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

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

.footer-links a {
    color: var(--text-muted);
}

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

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* --- IMPROVED FORM & MODAL UI --- */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    /* Stronger blur for focus */
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.show {
    display: flex;
    opacity: 1;
}

.popup-modal {
    background: rgba(30, 30, 30, 0.95);
    /* Glassmorphism background */
    width: 90%;
    max-width: 550px;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 153, 0, 0.2);
    /* Subtle orange border */
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-overlay.show .popup-modal {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid transparent;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.popup-text h3,
.contact-modal h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    text-align: center;
    font-size: 1.8rem;
}

.popup-text p,
.contact-modal p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.form-group-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.half-width {
    flex: 1;
}

.popup-form input,
.popup-form select,
.contact-modal form input,
.contact-modal form select,
.contact-modal form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #121212;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.popup-form input::placeholder,
.contact-modal form input::placeholder {
    color: #999;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #f8f8f8;
    border: 2px dashed #e0e0e0;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
    gap: 12px;
}

.file-upload-label i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.file-upload-label span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.file-upload-label:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.08);
}

.contact-modal form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 153, 0, 0.05);
    /* Slight orange tint on focus */
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.1);
}

/* Specific styling for Select dropdowns */
select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

/* File Input Styling */
input[type="file"] {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button {
    background: var(--primary-color);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    color: #000;
    font-weight: 600;
    margin-right: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

input[type="file"]::-webkit-file-upload-button:hover {
    background: var(--primary-dark);
    color: white;
}

/* Layout Selection Grid */
.layout-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.layout-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.layout-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.layout-option.selected {
    background: rgba(255, 153, 0, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.2);
}

.layout-option img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.layout-option span {
    font-size: 0.85rem;
    color: var(--text-heading);
    font-weight: 500;
}

/* Multi-Step Modal specific */
.multi-step-modal {
    max-width: 800px;
    width: 95%;
    padding: 60px 40px;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
    border-radius: 32px;
}

.multi-step-modal.white-theme {
    background: #ffffff;
    color: var(--text-heading);
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: var(--text-heading);
}

.form-step p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.form-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #f0f0f0;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Service Selector */
.service-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.service-option {
    border: none;
    border-radius: 24px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: #fcfcfc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.service-op.btn-secondary {
    background-color: #ffffff !important;
    color: var(--color-primary-500) !important;
    border: 1px solid var(--color-primary-500) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.btn-secondary:hover {
    background-color: var(--color-primary-50) !important;
    border-color: var(--color-primary-600) !important;
    color: var(--color-primary-600) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.service-option i {
    font-size: 2.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.service-option strong {
    font-size: 1rem;
    color: var(--text-heading);
    font-weight: 700;
}

.service-option:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-option:hover i {
    color: var(--primary-color);
}

.service-option:hover i {
    color: var(--primary-color);
}

.service-option.selected {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.12);
    border: 2px solid var(--primary-color);
}

.service-option.selected i {
    color: var(--primary-color);
}

/* Modal Content & Grid refinements */
.layout-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.layout-option-large {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.layout-option-large img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 24px;
    transition: var(--transition);
    background: #f8f8f8;
    margin-bottom: 18px;
    display: block;
}

.layout-option-large .option-content {
    padding: 0 5px;
    text-align: left;
}

.layout-option-large strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-heading);
    margin-bottom: 8px;
    font-weight: 800;
}

.layout-option-large span {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: block;
}

.layout-option-large:hover img {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.layout-option-large.selected img {
    border: 4px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 153, 0, 0.2);
}

.layout-option-large.selected strong {
    color: var(--primary-color);
}

/* Form Navigation */
.form-navigation {
    margin-top: auto;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.form-navigation .btn {
    flex: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .layout-grid-large {
        grid-template-columns: 1fr;
    }
}

/* Submit Button in Contact Form */
#multiStepForm button[type="submit"],
.contact-modal button[type="submit"] {
    margin-top: 20px;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Spam Notice */
.spam-notice {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 15px;
    text-align: center;
}

/* Scrollbar for Modal content if overflow */
.popup-modal::-webkit-scrollbar {
    width: 8px;
}

.popup-modal::-webkit-scrollbar-track {
    background: transparent;
}

.popup-modal::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.popup-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .two-col-layout {
        grid-template-columns: 1fr;
    }

    .testimonial-grid,
    .benefit-stats {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    .popup-modal {
        padding: 25px;
    }
}

/* Infinite Kitchen Carousel */
.carousel-section {
    padding: 80px 0;
    overflow: hidden;
    background-color: var(--bg-body);
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scroll-kitchen 50s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    flex: 0 0 320px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #f5f5f5;
}

.carousel-item:hover {
    transform: scale(1.02);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 260px;
        height: 260px;
        border-radius: 15px;
    }
}

/* --- Testimonials & Proyectos Highlight --- */
/* --- NEW TESTIMONIALS SHOWCASE --- */
.testimonials-showcase-section {
    padding: 100px 0;
    background-color: var(--bg-body);
    overflow: hidden;
}

.showcase-container {
    position: relative;
    width: 100%;
    height: 600px;
    /* Specific height for the showcase */
    background: #f0f0f0;
    margin-top: 40px;
}

/* Background carousel */
.project-bg-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.project-bg-track {
    display: flex;
    gap: 30px;
    /* Separación entre imágenes */
    width: max-content;
    height: 100%;
    animation: scroll-bg 120s linear infinite;
    padding: 0 15px;
}

.project-bg-item {
    flex: 0 0 560px;
    height: calc(100% - 40px);
    /* Leave room for shadow/top-bottom space */
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    /* Soft borders like the rest of the site */
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-bg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    /* Dimmed for contrast with bubbles */
    transition: var(--transition);
}

.project-bg-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* Floating Bubbles Overlay */
.bubbles-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    /* Allow clicks to pass to items if needed, but bubbles will be clickable individually */
}

.testimonial-bubble {
    position: absolute;
    width: 300px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 5;
}

.testimonial-bubble.active {
    animation: bubble-sequence 8s ease-in-out forwards;
}

@keyframes bubble-sequence {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    10% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    15% {
        transform: translate(0, 0) rotate(0deg);
    }

    40% {
        transform: translate(10px, -15px) rotate(1deg);
    }

    70% {
        transform: translate(-5px, 10px) rotate(-1deg);
    }

    90% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    100% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
}

.testimonial-bubble:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation-play-state: paused;
}

.bubble-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.bubble-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.bubble-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-heading);
    margin-bottom: 2px;
}

.bubble-stars {
    color: #FFD700;
    font-size: 0.75rem;
}

.testimonial-bubble p {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.4;
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .showcase-container {
        height: 700px;
    }

    .project-bg-item {
        flex: 0 0 320px;
    }

    .testimonial-bubble {
        width: 260px;
    }
}

/* Allies Section */
.allies-section {
    background-color: var(--bg-card);
    padding: 80px 0;
    overflow: hidden;
}

.allies-section .section-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-body);
}

.logo-ticker-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-ticker {
    display: flex;
    width: max-content;
    animation: scrollTicker 40s linear infinite;
}

.ticker-item {
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.ticker-item img {
    max-height: 50px;
    max-width: 150px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.ticker-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
        /* Move 1/3 of the width (since we have 3 sets) */
    }
}


/* --- Horizontal Winding Roadmap (Road Style) --- */
.process-section {
    background-color: var(--bg-body);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.roadmap-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* SVG Path Overlay (Desktop only) */
.roadmap-svg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 300px;
    transform: translateY(-50%);
    z-index: 1;
    display: none;
    pointer-events: none;
}

.roadmap-path-progress {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    transition: stroke-dashoffset 2s ease;
}

.roadmap-steps-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 5;
}

/* Step Styles */
.roadmap-step {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-marker {
    width: 85px;
    height: 85px;
    background: white;
    border: 3px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.step-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -1px;
}

.roadmap-step:hover .step-marker {
    transform: scale(1.15);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.roadmap-step.active .step-marker {
    background: var(--text-heading);
    border-color: var(--text-heading);
    transform: scale(1.1);
}

.roadmap-step.active .step-marker i,
.roadmap-step.active .step-marker .step-number {
    color: white;
}

.step-content h3 {
    font-size: 1.15rem;
    margin: 0;
    color: var(--text-heading);
    transition: var(--transition);
}

.roadmap-step.active .step-content h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.step-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.roadmap-step.active .step-details {
    max-height: 150px;
    opacity: 1;
    margin-top: 10px;
}

.step-details p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.5;
}

/* --- Desktop Horizontal Winding Road Layout (992px+) --- */
@media (min-width: 992px) {
    .roadmap-container {
        height: 500px;
        padding: 0;
    }

    .roadmap-svg {
        display: block;
    }

    .roadmap-steps-wrap {
        display: block;
        height: 100%;
        width: 100%;
    }

    .roadmap-step {
        position: absolute;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 200px;
        transform: translate(-50%, -50%);
        gap: 10px;
        /* Tightening the gap as requested */
        transition: all 0.3s ease;
    }

    /* Precisely centered along the SVG path coordinates (Mathematical alignment) */
    .roadmap-step[data-step="1"] {
        left: 0%;
        top: 50%;
    }

    .roadmap-step[data-step="2"] {
        left: 17%;
        top: 25%;
    }

    .roadmap-step[data-step="3"] {
        left: 33.5%;
        top: 32%;
        flex-direction: column-reverse;
    }

    /* Label above */
    .roadmap-step[data-step="4"] {
        left: 50%;
        top: 68%;
    }

    /* Raised significantly to hit valley */
    .roadmap-step[data-step="5"] {
        left: 66.5%;
        top: 28%;
        flex-direction: column-reverse;
    }

    /* Label above */
    .roadmap-step[data-step="6"] {
        left: 83%;
        top: 28%;
    }

    .roadmap-step[data-step="7"] {
        left: 100%;
        top: 50%;
    }

    /* Alternate content position: top steps have text above, bottom steps have text below */
    .roadmap-step:nth-child(even) {
        flex-direction: column-reverse;
    }

    .roadmap-step:nth-child(even) .step-content {
        margin-bottom: 10px;
        /* Tightening for text-above steps */
    }

    /* Step Details as Floating Bubbles on Desktop */
    .step-details {
        position: absolute;
        width: 280px;
        background: white;
        padding: 0;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        z-index: 100;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
    }

    /* Bubble pointer and position adjustments */
    .roadmap-step:nth-child(odd):not([data-step="4"]) .step-details {
        top: 100%;
        margin-top: 25px;
    }

    .roadmap-step:nth-child(even) .step-details,
    .roadmap-step[data-step="4"] .step-details {
        bottom: 100%;
        margin-bottom: 25px;
    }

    .roadmap-step.active .step-details {
        padding: 20px;
        opacity: 1;
        max-height: 250px;
        pointer-events: auto;
    }

    /* Decorative tail for bubbles */
    .step-details::after {
        content: '';
        position: absolute;
        width: 15px;
        height: 15px;
        background: white;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }

    .roadmap-step:nth-child(odd):not([data-step="4"]) .step-details::after {
        top: -7px;
        box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.03);
    }

    .roadmap-step:nth-child(even) .step-details::after,
    .roadmap-step[data-step="4"] .step-details::after {
        bottom: -7px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.03);
    }
}

/* --- Agent Chat Widget (WhatsApp Style) --- */

/* --- Glassmorphism Chat Redesign --- */
.agent-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Outfit', sans-serif;
}

/* Glass Chat Window */
.chat-window-glass {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    height: 520px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-window-glass.open {
    transform: scale(1);
    opacity: 1;
}

.chat-window-glass.expanded {
    width: 650px;
    height: 85vh;
    border-radius: 40px;
}

/* Glass Header */
.glass-header {
    padding: 25px 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.ai-badge {
    width: 45px;
    height: 45px;
    background: #4A4A4A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-right: auto;
    overflow: hidden;
}

.ai-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glass-expand {
    background: rgba(255, 255, 255, 0.2);
    color: #333;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.glass-expand:hover {
    background: rgba(18, 18, 18, 0.1);
    transform: scale(1.1);
}

.glass-close {
    background: #333;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.glass-close:hover {
    transform: scale(1.1) rotate(90deg);
}

/* Glass Body */
.glass-body {
    flex: 1;
    padding: 0 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    max-width: 85%;
    padding: 18px 22px;
    border-radius: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #121212;
    /* Brand Dark Gray */
    animation: glassMessageIn 0.4s ease forwards;
}

.agent-message {
    background: rgba(18, 18, 18, 0.08);
    /* Sophisticated subtle tint */
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.agent-message a.popup-trigger {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transition: all 0.2s ease;
}

.agent-message a.popup-trigger:hover {
    color: var(--color-primary-600);
    opacity: 0.8;
}

.user-message {
    background: rgba(255, 153, 0, 0.15);
    /* Subtle brand orange tint */
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.message-time {
    display: block;
    font-size: 0.7rem;
    opacity: 0.5;
    margin-top: 6px;
}

/* Glass Footer & Send Button */
.glass-footer {
    padding: 0 30px 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.input-wrap {
    flex: 1;
    background: rgba(18, 18, 18, 0.08);
    /* Sophisticated subtle tint */
    border-radius: 30px;
    padding: 18px 25px;
}

.input-wrap input {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #121212;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
}

.glass-send-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #4A4A4A;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.glass-send-btn i {
    font-size: 1.4rem;
    margin-left: -3px;
    transform: rotate(-15deg);
}

.glass-send-btn:hover {
    transform: scale(1.1);
    background: #121212;
}

/* Trigger Button Design */
.glass-trigger {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid white;
}

.glass-trigger:hover {
    transform: translateY(-5px) scale(1.05);
}

.glass-trigger img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.ai-status-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: glassPulse 2s infinite;
}

.notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background: #ff3b30;
    border: 2px solid white;
    border-radius: 50%;
}

/* Animations */
@keyframes glassPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes glassMessageIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimizations */
@media (max-width: 480px) {
    .chat-window-glass {
        width: calc(100vw - 40px);
        height: 70vh;
        right: -10px;
    }
}


/* --- Misc Helper for Static Logos --- */
.logo img,
.navbar-brand img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

/* Mobile Adjustments for Roadmap */
@media (max-width: 768px) {
    .roadmap-container::before {
        left: 20px;
    }

    .roadmap-step {
        justify-content: flex-start;
        padding-left: 0;
    }

    .step-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
        margin-right: 20px;
    }

    .step-info {
        position: relative;
        left: auto !important;
        right: auto !important;
        width: calc(100% - 70px);
        text-align: left !important;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-section);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--color-primary-300);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-heading);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--color-primary-500);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--color-primary-50);
}

.faq-answer p {
    padding: 0 30px 24px 30px;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px 20px;
    }
}