@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Pantone Colors */
    --color-primary: #BA3A32;       /* Pantone Red */
    --color-primary-rgb: 186, 58, 50;
    --color-secondary: #61CE70;     /* Pantone Green */
    --color-secondary-rgb: 97, 206, 112;
    
    /* Nature-Inspired Dark/Light Theme */
    --bg-main: #f5f8f6;
    --bg-surface: #ffffff;
    --bg-surface-elevated: #f9fbf9;
    --text-main: #2b3531;
    --text-muted: #62726b;
    --border-color: rgba(97, 206, 112, 0.15);
    --border-glow: rgba(186, 58, 50, 0.1);
    --shadow-main: 0 10px 30px -10px rgba(43, 53, 49, 0.08);
    --shadow-hover: 0 20px 40px -15px rgba(43, 53, 49, 0.15);
    
    --font-sans: 'Inter', sans-serif;
    --font-title: 'Outfit', sans-serif;
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Overrides */
[data-theme="dark"] {
    --bg-main: #0c120f;
    --bg-surface: #131b17;
    --bg-surface-elevated: #1a241f;
    --text-main: #e8ecea;
    --text-muted: #a3b2ab;
    --border-color: rgba(97, 206, 112, 0.1);
    --border-glow: rgba(186, 58, 50, 0.15);
    --shadow-main: 0 10px 40px -15px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 50px -10px rgba(0, 0, 0, 0.7);
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.25;
}

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

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: rgba(97, 206, 112, 0.3);
    border-radius: var(--border-radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-title);
    font-weight: 600;
    border-radius: var(--border-radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(186, 58, 50, 0.4);
}

.btn-primary:hover {
    background-color: #9d2f28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(186, 58, 50, 0.5);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: #131b17;
    box-shadow: 0 4px 14px rgba(97, 206, 112, 0.3);
}

.btn-secondary:hover {
    background-color: #4eb85d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(97, 206, 112, 0.4);
}

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

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(var(--color-secondary-rgb), 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(var(--bg-surface), 0.85);
    box-shadow: var(--shadow-main);
    padding: 8px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
    height: 70px;
}

.logo img {
    height: 48px;
    width: auto;
    transition: var(--transition-smooth);
}

.header.scrolled .logo img {
    height: 42px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

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

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

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

.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    background-color: rgba(97, 206, 112, 0.1);
}

.theme-toggle:hover {
    background-color: var(--color-secondary);
    color: #131b17;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('camping web/local camping.jpg');
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
    animation: zoomHero 20s infinite alternate;
}

@keyframes zoomHero {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(12, 18, 15, 0.85) 0%, rgba(12, 18, 15, 0.5) 50%, rgba(12, 18, 15, 0.8) 100%);
}

.hero-content {
    color: #ffffff;
    max-width: 700px;
}

.hero-tagline {
    background-color: rgba(97, 206, 112, 0.25);
    color: var(--color-secondary);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: var(--border-radius-full);
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(97, 206, 112, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-title span {
    color: var(--color-secondary);
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 16px;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
}

/* Locales Section */
.locales-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.locale-card {
    background-color: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-main);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.locale-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(186, 58, 50, 0.3);
}

.locale-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.locale-card:hover .locale-img {
    transform: scale(1.05);
}

.locale-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 6px 16px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: var(--border-radius-full);
}

.locale-gallery-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(19, 27, 23, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.locale-gallery-link:hover {
    background-color: var(--color-secondary);
    color: #131b17;
}

.locale-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.locale-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.locale-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.locale-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    list-style: none;
}

.locale-features li {
    background-color: rgba(97, 206, 112, 0.1);
    color: var(--text-main);
    padding: 6px 14px;
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.locale-features li i {
    color: var(--color-secondary);
}

.locale-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.locale-price {
    font-family: var(--font-title);
}

.locale-price span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Gallery Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 18, 15, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: #ffffff;
    text-align: center;
    margin-top: 16px;
    font-family: var(--font-title);
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    background: rgba(0,0,0,0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.lightbox-nav:hover {
    background: var(--color-primary);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* Calculator Section */
.calculator-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.calculator-card {
    background-color: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-main);
    border: 1px solid var(--border-color);
}

.calc-group {
    margin-bottom: 32px;
}

.calc-group-title {
    font-size: 1.15rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 4px solid var(--color-primary);
    padding-left: 12px;
}

.calc-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.calc-radio-btn {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.calc-radio-btn:hover {
    border-color: rgba(97, 206, 112, 0.4);
    background-color: rgba(97, 206, 112, 0.02);
}

.calc-radio-btn input {
    accent-color: var(--color-primary);
}

.calc-radio-btn.selected {
    border-color: var(--color-primary);
    background-color: rgba(186, 58, 50, 0.03);
}

.calc-radio-label {
    display: flex;
    flex-direction: column;
}

.calc-radio-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.calc-radio-price {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Sliders */
.range-slider-wrapper {
    background-color: var(--bg-surface-elevated);
    border-radius: var(--border-radius-md);
    padding: 24px;
    border: 1px solid var(--border-color);
}

.range-slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.range-label {
    font-weight: 500;
    color: var(--text-main);
}

.range-value {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-primary);
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
}

input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 8px;
    border-radius: var(--border-radius-full);
    background: rgba(97, 206, 112, 0.2);
    outline: none;
    transition: var(--transition-smooth);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(186, 58, 50, 0.3);
    transition: var(--transition-smooth);
    border: 2px solid var(--bg-surface);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: #9d2f28;
}

/* Accordion for Step 3 */
.accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: var(--bg-surface-elevated);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    border-color: rgba(97, 206, 112, 0.4);
    background-color: rgba(97, 206, 112, 0.02);
}

.accordion-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.4s ease;
    opacity: 0;
}

.accordion-group.active .accordion-content {
    max-height: 600px; /* High enough to fit the checkboxes */
    opacity: 1;
    margin-top: 16px;
}

.accordion-group.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.accordion-group.active .accordion-header {
    border-color: var(--color-primary);
    background-color: rgba(186, 58, 50, 0.03);
}

/* Service Checkboxes */
.checkbox-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    background-color: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.checkbox-item:hover {
    border-color: rgba(97, 206, 112, 0.4);
}

.checkbox-item input {
    width: 20px;
    height: 20px;
    accent-color: var(--color-secondary);
    margin-right: 16px;
    cursor: pointer;
}

.checkbox-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.checkbox-text {
    display: flex;
    flex-direction: column;
}

.checkbox-title {
    font-weight: 600;
    font-size: 0.95rem;
}

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

.checkbox-price {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-secondary);
}

/* Summary Box */
.summary-card {
    background-color: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-main);
    border: 2px solid var(--color-secondary);
    position: sticky;
    top: 110px;
}

.summary-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-list {
    list-style: none;
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(97, 206, 112, 0.1);
}

.summary-item.hidden {
    display: none;
}

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

.summary-item-value {
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px dashed var(--border-color);
    margin-bottom: 32px;
}

.summary-total-label {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.25rem;
}

.summary-total-amount {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--color-primary);
}

.whatsapp-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--color-secondary);
    color: #131b17;
    border: none;
    border-radius: var(--border-radius-full);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(97, 206, 112, 0.3);
}

.whatsapp-btn:hover {
    background-color: #4eb85d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(97, 206, 112, 0.4);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

.summary-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
    display: block;
}

/* Nosotros Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-highlight {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.4;
    border-left: 4px solid var(--color-secondary);
    padding-left: 20px;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    text-align: justify;
}

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

.stat-item {
    text-align: center;
    background-color: var(--bg-surface);
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-main);
    border: 1px solid var(--border-color);
}

.stat-num {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 2rem;
    color: var(--color-primary);
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius-lg);
    z-index: 1;
    pointer-events: none;
}

/* Complementary Info (Partners) */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.partner-card {
    background-color: var(--bg-surface);
    border-radius: var(--border-radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-main);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(97, 206, 112, 0.4);
}

.partner-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(97, 206, 112, 0.1);
    color: var(--color-secondary);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.partner-card:hover .partner-icon-box {
    background-color: var(--color-secondary);
    color: #131b17;
}

.partner-logo-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.partner-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.partner-badge {
    background-color: rgba(186, 58, 50, 0.1);
    color: var(--color-primary);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    margin-bottom: 16px;
}

.partner-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.partner-btn {
    width: 100%;
    padding: 10px;
    border-radius: var(--border-radius-full);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--border-color);
}

.partner-btn:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-full);
    background-color: rgba(97, 206, 112, 0.1);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-item-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.map-wrapper {
    height: 250px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-main);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-card {
    background-color: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-main);
    border: 1px solid var(--border-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.form-group-full {
    grid-column: span 2;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--border-radius-md);
    background-color: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--color-primary);
    background-color: var(--bg-surface);
    box-shadow: 0 0 0 4px rgba(186, 58, 50, 0.1);
}

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

/* Footer */
.footer {
    background-color: #0c120f;
    color: #e8ecea;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(97, 206, 112, 0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .logo img {
    height: 54px;
    width: auto;
}

.footer-brand-desc {
    color: #a3b2ab;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
    list-style: none;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a3b2ab;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-col h3 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-secondary);
}

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

.footer-links a {
    color: #a3b2ab;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a3b2ab;
    font-size: 0.85rem;
}

.footer-logo-text {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

/* Animations */
.reveal {
    position: relative;
    transition: all 0.8s ease-out;
}

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(30px);
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
    .summary-card {
        position: static;
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-surface);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition-smooth);
        z-index: 999;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .locales-grid {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        order: -1;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    .calc-options-grid {
        grid-template-columns: 1fr;
    }
    .partners-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
}
