/* ===================================
   CLIMACONTROL CANARIAS - STYLES
   Premium Dark Luxury Theme
   Emerald Green + Cream Palette
=================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --clima-dark: #0A0F14;
    --clima-dark-2: #111820;
    --clima-dark-3: #1A2332;
    --clima-emerald: #10B981;
    --clima-emerald-dark: #059669;
    --clima-emerald-glow: #34D399;
    --clima-cream: #F5F0E8;
    --clima-cream-soft: #FAF7F2;
    --clima-cream-muted: #E8E0D0;
    --clima-cream-dim: rgba(245, 240, 232, 0.5);
    --clima-cream-faint: rgba(245, 240, 232, 0.08);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--clima-dark);
    color: var(--clima-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Custom Cursor --- */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--clima-emerald);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.2s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(16, 185, 129, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-ring.hover {
    width: 56px;
    height: 56px;
    border-color: rgba(16, 185, 129, 0.8);
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--clima-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-bar {
    width: 120px;
    height: 2px;
    background: var(--clima-dark-3);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--clima-emerald-dark), var(--clima-emerald-glow));
    border-radius: 2px;
    animation: preloaderFill 1.5s ease forwards;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

/* --- Navigation --- */
.nav {
    background: rgba(10, 15, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 240, 232, 0.05);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 15, 20, 0.95);
    border-bottom-color: rgba(16, 185, 129, 0.1);
}

.nav.scrolled .nav-link {
    color: var(--clima-cream);
}

.nav-link {
    color: var(--clima-cream-dim);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clima-emerald);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--clima-emerald);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    color: var(--clima-emerald) !important;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--clima-emerald);
}

.nav-cta::after {
    display: none;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--clima-emerald-dark), var(--clima-emerald));
    color: var(--clima-dark);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--clima-emerald), var(--clima-emerald-glow));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--clima-cream);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(245, 240, 232, 0.2);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn-secondary:hover {
    border-color: var(--clima-emerald);
    color: var(--clima-emerald);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.1rem 2.4rem;
    font-size: 0.95rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 20, 0.92) 0%,
        rgba(10, 15, 20, 0.85) 40%,
        rgba(10, 15, 20, 0.6) 70%,
        rgba(10, 15, 20, 0.4) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.04) 0%, transparent 40%);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-decor-1 {
    top: 15%;
    right: 5%;
}

.decor-circle {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-decor-2 {
    bottom: 20%;
    left: 3%;
}

.decor-dots {
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(16, 185, 129, 0.3) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.6;
}

.hero-decor-3 {
    top: 30%;
    left: 8%;
}

.decor-line {
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(16, 185, 129, 0.4), transparent);
    animation: float 6s ease-in-out infinite;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--clima-emerald);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--clima-emerald);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--clima-cream);
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--clima-cream-muted);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.trust-text {
    font-size: 0.85rem;
}

/* Floating Stat Cards */
.hero-cards {
    position: relative;
    height: 520px;
}

.stat-card {
    position: absolute;
}

.stat-card-main {
    top: 0;
    right: 0;
    width: 280px;
}

.stat-card-projects {
    top: 160px;
    right: 200px;
    width: 220px;
}

.stat-card-clients {
    bottom: 140px;
    right: 40px;
    width: 220px;
}

.stat-card-urgent {
    bottom: 0;
    right: 180px;
    width: 180px;
}

.stat-card-inner {
    background: rgba(17, 24, 32, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 240, 232, 0.08);
    border-radius: 20px;
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

.stat-card:hover .stat-card-inner {
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(16, 185, 129, 0.1);
}

.stat-card-urgent-inner {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.stat-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 14px;
    color: var(--clima-emerald);
    margin-bottom: 1rem;
}

.stat-card-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--clima-cream);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-card-urgent-number {
    font-size: 2rem;
}

.stat-card-label {
    font-size: 0.8rem;
    color: var(--clima-cream-muted);
    letter-spacing: 0.05em;
}

.stat-card-bg-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    color: rgba(16, 185, 129, 0.06);
    transform: rotate(-15deg);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clima-cream-dim);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(245, 240, 232, 0.15);
    position: relative;
    overflow: hidden;
}

.scroll-line-fill {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clima-emerald);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--clima-dark));
    z-index: 5;
}

/* --- Sections --- */
.section {
    position: relative;
    padding: 6rem 0;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--clima-emerald);
}

.section-label span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clima-emerald);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--clima-cream);
    margin-bottom: 1.2rem;
}

.section-title em {
    font-style: italic;
    color: var(--clima-emerald);
}

.section-description {
    font-size: 1.05rem;
    color: var(--clima-cream-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- Services --- */
.services {
    background: var(--clima-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background: var(--clima-dark-2);
    border: 1px solid rgba(245, 240, 232, 0.06);
    border-radius: 20px;
    transition: var(--transition);
}

.service-card:hover .service-card-bg {
    border-color: rgba(16, 185, 129, 0.2);
    background: var(--clima-dark-3);
}

.service-card-featured {
    grid-row: span 2;
}

.service-card-featured .service-card-bg {
    background: linear-gradient(135deg, var(--clima-dark-3), var(--clima-dark-2));
}

.service-featured-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 10;
    padding: 0.35rem 0.8rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--clima-emerald);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-card-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-featured .service-card-content {
    padding-top: 3rem;
}

.service-icon-wrap {
    position: relative;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    color: var(--clima-emerald);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    transform: scale(1.05);
}

.service-icon-glow {
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon-glow {
    opacity: 1;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clima-cream);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.service-description {
    font-size: 0.9rem;
    color: var(--clima-cream-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--clima-cream-muted);
    padding: 0.4rem 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clima-emerald);
    transition: var(--transition-fast);
    margin-top: auto;
}

.service-link:hover {
    gap: 0.8rem;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* --- About --- */
.about {
    background: var(--clima-dark-2);
}

.about-images {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 20, 0.4), transparent 50%);
    border-radius: 24px;
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--clima-dark-2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-img-secondary {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(10, 15, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 14px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.badge-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clima-emerald);
}

.badge-text {
    font-size: 0.75rem;
    color: var(--clima-cream-muted);
    line-height: 1.3;
}

.about-decor {
    position: absolute;
    top: -20px;
    left: -20px;
    pointer-events: none;
}

.about-decor-circle {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
}

.about-decor-dots {
    position: absolute;
    top: 80px;
    right: -10px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, rgba(16, 185, 129, 0.3) 1px, transparent 1px);
    background-size: 10px 10px;
}

/* About Content */
.about-content {
    padding-top: 2rem;
}

.about-text {
    font-size: 1rem;
    color: var(--clima-cream-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-values {
    gap: 1.5rem;
}

.value-item {
    position: relative;
}

.value-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: rgba(16, 185, 129, 0.2);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.value-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clima-cream);
    margin-bottom: 0.3rem;
}

.value-desc {
    line-height: 1.6;
}

/* --- Projects --- */
.projects {
    background: var(--clima-dark);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 20, 0.9) 0%, rgba(10, 15, 20, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clima-emerald);
    margin-bottom: 0.4rem;
}

.project-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--clima-cream);
    margin-bottom: 0.3rem;
}

.project-desc {
    font-size: 0.85rem;
    color: var(--clima-cream-muted);
    margin-bottom: 0.8rem;
}

.project-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    color: var(--clima-emerald);
    transition: var(--transition-fast);
}

.project-card:hover .project-arrow {
    background: var(--clima-emerald);
    color: var(--clima-dark);
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 20, 0.92) 0%,
        rgba(10, 15, 20, 0.88) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--clima-emerald);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.cta-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--clima-emerald);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--clima-cream);
    margin-bottom: 1.2rem;
}

.cta-title em {
    font-style: italic;
    color: var(--clima-emerald);
}

.cta-description {
    font-size: 1.05rem;
    color: var(--clima-cream-muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* --- Contact --- */
.contact {
    background: var(--clima-dark-2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--clima-dark-3);
    border: 1px solid rgba(245, 240, 232, 0.05);
    border-radius: 16px;
    transition: var(--transition);
}

.info-card:hover {
    border-color: rgba(16, 185, 129, 0.15);
    transform: translateX(5px);
}

.info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clima-cream);
    margin-bottom: 0.2rem;
}

.info-text {
    font-size: 0.85rem;
    color: var(--clima-cream-muted);
    line-height: 1.6;
}

.info-link {
    color: var(--clima-emerald);
    transition: var(--transition-fast);
}

.info-link:hover {
    color: var(--clima-emerald-glow);
}

.map-container {
    margin-top: 0.5rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(245, 240, 232, 0.05);
}

.map-container iframe {
    border-radius: 16px;
    filter: grayscale(0.5) brightness(0.8) contrast(1.1);
    transition: filter 0.4s ease;
}

.map-container:hover iframe {
    filter: grayscale(0) brightness(0.9) contrast(1.05);
}

/* Contact Form */
.contact-form-card {
    background: var(--clima-dark-3);
    border: 1px solid rgba(245, 240, 232, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--clima-cream);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--clima-cream-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

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

.form-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--clima-cream-muted);
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--clima-dark);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 12px;
    color: var(--clima-cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: rgba(245, 240, 232, 0.3);
}

.form-input:focus {
    border-color: var(--clima-emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.form-select option {
    background: var(--clima-dark-3);
    color: var(--clima-cream);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--clima-emerald);
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-checkbox-label {
    font-size: 0.8rem;
    color: var(--clima-cream-muted);
    line-height: 1.5;
    cursor: pointer;
}

.form-link {
    color: var(--clima-emerald);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-submit {
    margin-top: 0.5rem;
}

.form-submit svg {
    position: relative;
    z-index: 1;
}

/* Success Message */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.success-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--clima-cream);
    margin-bottom: 0.5rem;
}

.success-text {
    font-size: 0.95rem;
    color: var(--clima-cream-muted);
}

/* --- Footer --- */
.footer {
    background: var(--clima-dark);
    position: relative;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--clima-dark), var(--clima-dark-2));
}

.footer-container {
    position: relative;
    z-index: 10;
}

.footer-logo {
    transition: var(--transition-fast);
}

.footer-logo:hover .logo-name {
    color: var(--clima-cream);
}

.footer-desc {
    line-height: 1.8;
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clima-cream);
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links li a,
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.footer-link {
    font-size: 0.85rem;
    color: var(--clima-cream-muted);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--clima-emerald);
}

.footer-contact li {
    padding: 0.4rem 0;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact span {
    font-size: 0.85rem;
    color: var(--clima-cream-muted);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 32, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 14px;
    color: var(--clima-emerald);
    z-index: 100;
