/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

:root {
    --primary: #083163;
    /* Corporate Navy from Logo */
    --primary-light: #144f96;
    /* Corporate Royal Blue from Logo */
    --accent-heat: #f6c31b;
    /* Logo Flame Gold */
    --accent-cool: #38bdf8;
    /* Logo Snowflake Sky Blue */
    --bg-light: #fcfcfd;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    --border-color: rgba(226, 232, 240, 0.6);

    /* Premium Glassmorphism */
    --glass: rgba(255, 255, 255, 0.7);
    --glass-dark: rgba(8, 49, 99, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);

    /* Multi-layered Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-premium: 0 10px 30px -10px rgba(8, 49, 99, 0.1);

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    font-weight: 700;
}

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

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

/* GLASS UTILITIES */
.glass-effect {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.glass-dark {
    background: var(--glass-dark);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* BACKGROUND BLOBS */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
    animation: float-blob 15s infinite alternate ease-in-out;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background-color: rgba(59, 130, 246, 0.4);
    top: -100px;
    left: -150px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(245, 158, 11, 0.4);
    bottom: -50px;
    right: -100px;
    animation-delay: -7s;
}

@keyframes float-blob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 100px) scale(1.1);
    }
}

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

ul {
    list-style: none;
}

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

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cool) 0%, #0077b6 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 168, 232, 0.4);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-heat) 0%, #e67e22 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 159, 28, 0.4);
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    transition: 0.8s;
    opacity: 0;
}

.btn:hover::after {
    left: 100%;
    opacity: 1;
}

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

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

.btn-block {
    display: flex;
    width: 100%;
}

/* LAYOUT */
.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER - LARGER LOGO */
#main-header {
    height: 90px;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.phone-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: 2px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.phone-label {
    font-size: 0.65rem !important;
    color: var(--text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin: 0 0 1px 0 !important;
    padding: 0 !important;
}

.phone-number {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: var(--accent-cool) !important;
    transition: var(--transition) !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
}

.phone-number:hover {
    color: var(--accent-heat) !important;
}

.emergency-badge {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse-badge 2s infinite;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
}

@keyframes pulse-badge {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* CONTENT WRAPPER */
.content-wrapper {
    display: flex;
    flex: 1;
}

/* SIDENAV */
#sidenav {
    width: 280px;
    background-color: var(--primary);
    color: var(--white);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: sticky;
    top: 90px;
    height: calc(100vh - 90px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 900;
}

#sidenav nav ul li {
    margin-bottom: 1.25rem;
}

#sidenav nav ul li a {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

#sidenav nav ul li a:hover,
#sidenav nav ul li a.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-heat);
    transform: translateX(8px);
}

#sidenav nav ul li a i {
    width: 24px;
    text-align: center;
    color: var(--accent-heat);
    font-size: 1.25rem;
    filter: drop-shadow(0 0 5px rgba(255, 159, 28, 0.3));
}



/* MAIN CONTENT */
#main-content {
    flex: 1;
    overflow-y: auto;
}

/* HERO SLIDER */
.hero-slider {
    height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: hero-move 30s infinite alternate ease-in-out;
    z-index: 1;
    opacity: 0.6;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(8, 49, 99, 0.4) 0%, rgba(8, 49, 99, 0.8) 100%);
    z-index: 2;
}

@keyframes hero-move {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(-2%, -2%);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* TRUST BADGES */
.trust-badges {
    background-color: var(--primary-light);
    color: var(--white);
    padding: 2rem 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.badge-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.badge-item i {
    font-size: 2rem;
    color: var(--accent-heat);
}

/* ABOUT SECTION */
.about-section {
    padding: 5rem 3rem;
    background-color: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ANIMATED STATS */
.stats-container {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item div {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.stat-item h4,
.stat-item span {
    font-size: 3rem;
    color: var(--accent-cool);
    margin: 0;
    line-height: 1;
}

.stat-item span {
    font-size: 2.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-top: 0.5rem;
}

.about-images {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: var(--transition);
}

.about-image-wrapper:hover {
    transform: rotate(0) scale(1.02);
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

/* PRODUCT SECTIONS */
.product-section {
    padding: 5rem 3rem;
}

.product-section.alternate {
    background-color: var(--white);
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 3 / 4;
    background-color: var(--border-color);
    transition: var(--transition);
}

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

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -12px rgba(8, 49, 99, 0.12), 0 18px 36px -18px rgba(8, 49, 99, 0.1);
    border-color: var(--accent-cool);
}

.product-image {
    height: 280px;
    overflow: hidden;
    background-color: #f1f5f9;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(-2deg);
}

.product-info {
    padding: 2.5rem;
}

.product-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.price {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--accent-cool);
    margin-bottom: 2rem;
    display: block;
}

.features {
    margin-bottom: 1rem;
    /* Reduced margin since button is gone */
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
}

.features li.promo-feature::before {
    content: none !important;
    display: none !important;
}

/* REVIEWS SECTION */
.reviews-section {
    padding: 6rem 3rem;
    background-color: var(--bg-light);
}

.google-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.google-brand i {
    color: #4285F4;
    font-size: 1.2rem;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.rating-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.rating-summary .stars i {
    color: #fbbc04;
    /* Google Star Color */
    font-size: 1.5rem;
}

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

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.review-card.google-style {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-card.google-style:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified-icon {
    color: #4285F4;
    font-size: 0.9rem;
}

.review-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.local-guide {
    color: #E37400;
    /* Google Local Guide Color */
    font-weight: 600;
}

.google-icon-corner {
    position: absolute;
    top: 0;
    right: 0;
    color: #4285F4;
    font-size: 1.25rem;
    opacity: 0.8;
}

.review-card.google-style .stars {
    color: #fbbc04;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.review-card.google-style .review-text {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.view-original {
    color: #4285F4;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.view-original:hover {
    text-decoration: underline;
}

.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-outline-google {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 1rem 2rem;
}

.btn-outline-google i {
    color: #4285F4;
    font-size: 1.2rem;
}

.btn-outline-google:hover {
    border-color: #d1d5db;
    background: #f8fafc;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-outline-whatsapp {
    background: transparent;
    border: 2px solid #25d366;
    color: #25d366;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 1rem 2rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-whatsapp i {
    color: #25d366;
    font-size: 1.2rem;
}

.btn-outline-whatsapp:hover {
    border-color: #20ba5a;
    background: rgba(37, 211, 102, 0.05);
    color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* BRAND LOGOS SECTION */
.brand-logos {
    padding: 3.5rem 2rem;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.brand-logos-header {
    margin-bottom: 2.5rem;
}

.brand-logos-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 750;
    margin-bottom: 0.5rem;
}

.brand-logos-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.brand-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.brand-logo-item img {
    max-height: 40px;
    max-width: 140px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.brand-logo-item:hover img {
    transform: none;
}

/* Disable clicks on brand logos but keep visual hover scale */
.brand-logo-item,
.brand-logo-item img {
    cursor: default;
}
/* By default disable pointer events for brand links; enable only when link has .enabled */
.brand-logo-item a:not(.enabled) {
    pointer-events: none;
    cursor: default;
}
.brand-logo-item a.enabled {
    pointer-events: auto;
    cursor: pointer;
}

/* Enabled links can show a subtle hover scale */
.brand-logo-item a.enabled:hover img {
    transform: scale(1.05);
}

.fondital-text-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.9rem;
    color: #718096;
    letter-spacing: -1px;
    display: inline-flex;
    align-items: center;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.fondital-text-logo::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #718096;
    border-radius: 50%;
    margin-left: 2px;
    position: relative;
    top: 5px;
    transition: all 0.3s ease;
}

.brand-logo-item:hover .fondital-text-logo {
    /* disable hover animation for Fondital */
    filter: none;
    opacity: 1;
    color: #718096;
    transform: none;
}

.brand-logo-item:hover .fondital-text-logo::after {
    /* keep the dot color unchanged on hover */
    background-color: #718096;
}

/* FAQ SECTION */
.faq-section {
    padding: 5rem 3rem;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem 2rem;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    list-style: none;
    /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question i {
    color: var(--accent-cool);
    transition: var(--transition);
}

details[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding-top: 1rem;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.6;
}

/* FORM SECTION */
.form-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent-heat), var(--accent-cool));
}

.form-container {
    width: 100%;
    max-width: 720px;
    /* Reduced 10% from 800px */
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    background: var(--primary);
    padding: 2.5rem;
    /* Slightly reduced padding */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-header h2 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--accent-cool);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
}

.form-group textarea {
    width: 100%;
    resize: none;
}

.form-group.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.form-group.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--accent-cool);
}

.form-group.checkbox-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: none;
    letter-spacing: normal;
    cursor: pointer;
    display: inline;
}

.form-group.checkbox-group label a {
    color: var(--accent-cool);
    text-decoration: underline;
    font-weight: 600;
}

.form-group.checkbox-group label a:hover {
    color: var(--white);
}

.form-submit {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.form-submit .btn {
    max-width: 350px;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: var(--white);
    width: 72px;
    /* Increased by 20% from original 60px */
    height: 72px;
    /* Increased by 20% from original 60px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    /* Increased by 20% from original 35px */
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: whatsapp-bounce 5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(15deg);
    animation-play-state: paused;
}

@keyframes whatsapp-bounce {

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

    85% {
        transform: translateY(-15px) scale(1.05);
    }

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

    95% {
        transform: translateY(-7px) scale(1.02);
    }
}

/* MAIN FOOTER */
.main-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 3rem 1rem;
    margin-top: auto;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 120px;
    margin-bottom: 1rem;
    background-color: var(--white);
    padding: 5px;
    border-radius: 8px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-cool);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-col p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-col p i {
    color: var(--accent-cool);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* MOBILE STICKY CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

/* FORM FEEDBACK STATES */
.form-error-banner {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #f87171;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    animation: slideDown 0.3s ease-out;
}

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

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

.form-success-state {
    text-align: center;
    color: var(--white);
    padding: 2rem 0;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.success-icon {
    font-size: 5rem;
    color: var(--accent-cool);
    margin-bottom: 1.5rem;
}

.form-success-state h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-success-state p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
    #main-header {
        height: auto;
        padding: 1.5rem 1rem;
        flex-direction: column;
        gap: 1.2rem;
    }

    .logo {
        height: 50px;
    }

    .header-right {
        flex-direction: column;
        gap: 0.8rem;
    }

    .phone-link {
        align-items: center;
    }

    .phone-number {
        font-size: 1.15rem;
    }

    /* Important: Hide sidenav and stack content */
    #sidenav {
        display: none;
    }

    .content-wrapper {
        flex-direction: column;
    }

    /* Hero adjustments */
    .hero-slider {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    /* Sections padding */
    .about-section,
    .product-section,
    .reviews-section,
    .faq-section {
        padding: 3rem 1.5rem;
    }

    .about-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .stats-container {
        justify-content: center;
        gap: 1.5rem;
    }

    .stat-item h4,
    .stat-item span {
        font-size: 2rem;
    }

    .badge-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        padding-left: 1rem;
    }

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

    .form-container {
        padding: 2rem 1.5rem;
        aspect-ratio: auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .mobile-sticky-cta {
        display: flex;
        gap: 0.5rem;
    }

    .whatsapp-float {
        bottom: 100px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 35px;
    }
}

/* MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: rgba(255, 255, 255, 0.9);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .modal-content {
    background: rgba(30, 35, 45, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

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

#legal-text h1 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

#legal-text h2 {
    color: var(--primary-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

#legal-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

/* FIRE AND SNOW ANIMATIONS */
.fire-animation {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.5rem;
    height: 50px;
    margin-bottom: 1rem;
}

.flame {
    color: var(--accent-heat);
    filter: drop-shadow(0 0 10px rgba(255, 159, 28, 0.6));
    animation: flicker 1.5s infinite alternate ease-in-out;
}

.flame-1 {
    font-size: 2rem;
    animation-delay: 0s;
}

.flame-2 {
    font-size: 3rem;
    color: #e63946;
    animation-delay: 0.2s;
}

.flame-3 {
    font-size: 2rem;
    animation-delay: 0.4s;
}

@keyframes flicker {
    0% {
        transform: scale(1) translateY(0);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1) translateY(-5px) rotate(5deg);
        opacity: 1;
    }

    100% {
        transform: scale(0.95) translateY(2px) rotate(-5deg);
        opacity: 0.9;
    }
}

.snow-animation {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

#aire .section-header {
    position: relative;
    z-index: 1;
}

.snowflake {
    position: absolute;
    color: var(--accent-cool);
    opacity: 0.6;
    font-size: 1.5rem;
    animation: fall linear infinite;
    filter: drop-shadow(0 0 5px rgba(0, 168, 232, 0.4));
}

.snow-1 {
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
    font-size: 1rem;
}

.snow-2 {
    left: 30%;
    animation-duration: 6s;
    animation-delay: 2s;
    font-size: 1.5rem;
}

.snow-3 {
    left: 50%;
    animation-duration: 7s;
    animation-delay: 1s;
    font-size: 1.2rem;
}

.snow-4 {
    left: 70%;
    animation-duration: 9s;
    animation-delay: 3s;
    font-size: 1.8rem;
}

.snow-5 {
    left: 90%;
    animation-duration: 5s;
    animation-delay: 0.5s;
    font-size: 1.3rem;
}

@keyframes fall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(150px) rotate(360deg);
        opacity: 0;
    }
}

/* Boiler Products Pricing Display */
.price-box {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.catalog-price {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 600;
}

.renove-badge {
    background: linear-gradient(135deg, #ef5a24, #f6c31b);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(239, 90, 36, 0.3);
}

.renove-price {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--accent-cool);
    line-height: 1.1;
}

/* HEATING SECTION (CALEFACCIÓN COMPLETA) */
.heating-section {
    padding: 5rem 3rem;
    background-color: var(--white);
    position: relative;
}

.heating-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    align-items: stretch;
}

.heating-table-container {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.heating-title-badge {
    align-self: flex-start;
    background: rgba(20, 79, 150, 0.08);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(20, 79, 150, 0.15);
}

.heating-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    color: var(--text-main);
}

.heating-table th,
.heating-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.heating-table th {
    background-color: rgba(20, 79, 150, 0.05);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
    border-bottom: 2px solid rgba(20, 79, 150, 0.15);
}

.heating-table th:first-child {
    border-top-left-radius: 8px;
    text-align: left;
    padding-left: 1.5rem;
}

.heating-table th:last-child {
    border-top-right-radius: 8px;
}

.heating-table td:first-child {
    text-align: left;
    font-weight: 700;
    padding-left: 1.5rem;
    color: var(--text-main);
}

.heating-table td.price-cell {
    color: var(--primary-light);
    font-weight: 800;
    font-size: 1.3rem;
    transition: var(--transition);
}

.heating-table tr:hover td.price-cell {
    color: var(--accent-heat);
    transform: scale(1.05);
}

.heating-table td.empty-cell {
    color: rgba(0, 0, 0, 0.15);
    font-weight: 400;
    letter-spacing: 2px;
}

.heating-table tr:last-child td {
    border-bottom: none;
}

.heating-table tr:hover {
    background-color: rgba(0, 0, 0, 0.01);
}

.heating-table-footer {
    margin-top: 1.5rem;
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Radiators Showcase Column */
.radiators-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
}

.radiator-img-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radiator-img-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(8, 49, 99, 0.08);
    border-color: rgba(20, 79, 150, 0.2);
}

.radiator-img-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    transition: var(--transition);
}

.radiator-img-card:hover img {
    transform: scale(1.03);
}

.radiator-colors-info {
    text-align: center;
    background: rgba(8, 49, 99, 0.03);
    border: 1px solid rgba(8, 49, 99, 0.06);
    border-radius: 12px;
    padding: 1rem 1.5rem;
}

.radiator-colors-info h4 {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.color-dots-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.color-dot:hover {
    transform: scale(1.3);
    border-color: var(--primary);
}

.color-dot.white {
    background-color: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.15);
}

.color-dot.light-grey {
    background-color: #bbbbbb;
}

.color-dot.dark-grey {
    background-color: #4b5563;
}

.color-dot.black {
    background-color: #111827;
}

.color-dot.beige {
    background-color: #d7ccc8;
}

/* Tooltip for color dots */
.color-dot::after {
    content: attr(title);
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.color-dot:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Bottom Promo Card */
.heating-promo-card {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    box-shadow: var(--shadow-md);
}

.promo-details-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    flex: 1.2;
}

.promo-detail-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--white);
    font-size: 1.1rem;
}

.promo-detail-item i {
    color: var(--accent-cool);
    font-size: 1.3rem;
}

.promo-detail-item strong {
    color: var(--accent-heat);
}

.promo-finance-badge {
    flex: 0.8;
    background: linear-gradient(135deg, #ef5a24, #f6c31b);
    color: var(--white);
    font-weight: 800;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(239, 90, 36, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.promo-finance-badge:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(239, 90, 36, 0.5);
}

@media (max-width: 992px) {
    .heating-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .radiators-showcase {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .heating-section {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
    }

    .heating-table-container {
        padding: 1.5rem;
    }

    .heating-table th,
    .heating-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }

    .heating-table td.price-cell {
        font-size: 1.05rem;
    }

    .heating-promo-card {
        padding: 1.5rem;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .promo-detail-item {
        justify-content: center;
        font-size: 0.95rem;
    }

    .promo-finance-badge {
        justify-content: center;
        align-self: center;
        width: 100%;
        max-width: 320px;
    }
}