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

:root {
    --gold: #D4AF37;
    --gold-light: #F4E5BC;
    --gold-dark: #B8941F;
    --black: #0A0A0A;
    --gray-dark: #1A1A1A;
    --gray-medium: #2D2D2D;
    --gray-light: #666666;
    --white: #FFFFFF;
    --cream: #FAF8F3;
    --success: #00C851;
    --error: #FF4444;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --shadow-xl: 0 16px 32px rgba(0,0,0,0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

.highlight {
    color: var(--gold);
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-large {
    padding: 22px 55px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.98);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 30px;
    font-weight: 900;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--gold-light);
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stat-number {
    display: inline-block;
}

.stat-percent {
    display: inline-block;
    font-size: 36px;
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.hero-scroll span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
    margin: 0 auto;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Trust Bar */
.trust-bar {
    background: var(--gray-dark);
    padding: 25px 0;
    border-bottom: 1px solid var(--gray-medium);
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

.trust-item span {
    font-size: 14px;
    color: var(--cream);
}

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

.section-title {
    text-align: center;
    margin-bottom: 80px;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 30px auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--cream);
    max-width: 800px;
    margin: -50px auto 60px;
    line-height: 1.8;
}

/* Value Proposition */
.value-prop {
    background: var(--gray-dark);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.comparison-card {
    background: var(--gray-medium);
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
}

.card-title {
    font-size: 28px;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.pain-card .card-title {
    color: var(--gold-light);
}

.solution-card .card-title {
    color: var(--gold);
}

.card-list {
    list-style: none;
}

.card-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: var(--cream);
    line-height: 1.8;
}

.card-list li::before {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 20px;
}

.pain-card li::before {
    content: '✕';
    color: var(--gold-light);
}

.solution-card li::before {
    content: '✓';
    color: var(--gold);
}

.cta-box {
    text-align: center;
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 60px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--cream);
}

/* Investment Model Section */
.investment-model {
    background: var(--black);
}

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

.investment-card {
    background: var(--gray-dark);
    padding: 50px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.investment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.investment-header h3 {
    font-size: 32px;
    color: var(--gold);
    margin: 0;
}

.investment-badge {
    background: var(--gold);
    color: var(--black);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.investment-features {
    list-style: none;
}

.investment-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.investment-features li:last-child {
    border-bottom: none;
}

.investment-features svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.investment-features span {
    color: var(--cream);
    font-size: 16px;
}

.roi-showcase {
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--gray-medium) 100%);
    padding: 50px;
    text-align: center;
    border: 1px solid var(--gold);
    position: relative;
}

.roi-showcase h3 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 30px;
}

.roi-total {
    margin-bottom: 30px;
}

.roi-label {
    display: block;
    font-size: 14px;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.roi-value {
    display: block;
    font-size: 56px;
    font-weight: 900;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.roi-description {
    font-size: 16px;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 40px;
}

.roi-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.breakdown-icon {
    font-size: 24px;
}

.breakdown-text {
    font-size: 14px;
    color: var(--cream);
}

.investment-cta {
    text-align: center;
    margin-top: 60px;
}

.investment-cta p {
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 30px;
}

/* ROI Calculator */
.roi-calculator {
    background: var(--gray-dark);
}

.calculator-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gray-medium);
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input,
.input-group select {
    padding: 15px;
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.result-item {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.result-label {
    display: block;
    font-size: 12px;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.result-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.calculator-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--gray-light);
    margin-top: 30px;
}

/* Location */
.location {
    background: var(--black);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--gold);
}

.location-info p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 40px;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--gray-dark);
    transition: all 0.3s ease;
}

.location-feature:hover {
    background: var(--gray-medium);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.feature-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--gold);
}

.feature-content p {
    font-size: 14px;
    color: var(--cream);
}

.map-container {
    height: 600px;
    background: var(--gray-medium);
    position: relative;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--black);
    padding: 20px 30px;
    border: 1px solid var(--gold);
}

.map-overlay h4 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 5px;
}

.map-overlay p {
    color: var(--cream);
}

/* Gallery */
.gallery {
    background: var(--gray-dark);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--gray-light);
    color: var(--cream);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

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

.gallery-item {
    height: 300px;
    background: var(--gray-medium);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item.hide {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: var(--cream);
    font-size: 14px;
}

.gallery-cta {
    text-align: center;
    margin-top: 60px;
}

/* Market Comparison */
.market-comparison {
    background: var(--black);
}

.comparison-table {
    overflow-x: auto;
    background: var(--gray-dark);
    border: 1px solid var(--gray-medium);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--gray-medium);
}

.comparison-table th {
    background: var(--gray-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    color: var(--gold);
}

.comparison-table td {
    font-size: 16px;
    color: var(--cream);
}

.highlight-column {
    background: rgba(212, 175, 55, 0.05);
    position: relative;
}

.highlight-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
}

/* FAQ */
.faq {
    background: var(--black);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--gray-dark);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--cream);
    line-height: 1.8;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black) 100%);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.urgency-text {
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-disclaimer {
    font-size: 14px;
    color: var(--gray-light);
}

/* Footer */
footer {
    background: var(--black);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-brand p {
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links li svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
}

.footer-links a {
    color: var(--cream);
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-dark);
    border: 1px solid var(--gray-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.social-links a:hover svg {
    fill: var(--black);
    stroke: var(--black);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    stroke: var(--gold);  
    transition: fill 0.3s ease, stroke 0.3s ease;  
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--gray-light);
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: underline;
}

/* Instagram icon special rule */
.social-links .instagram-link svg {
    fill: none !important;
}

.social-links .instagram-link svg circle:last-child {
    fill: var(--gold);
}

.social-links a:hover.instagram-link svg {
    stroke: var(--black);
}

.social-links a:hover.instagram-link svg circle:last-child {
    fill: var(--black);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--gray-dark);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    padding: 50px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow-y: auto;
    margin: auto;
    border-radius: 8px;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-content.modal-large {
    max-width: 900px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--gray-medium);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.modal h3 {
    margin-bottom: 20px;
    color: var(--gold);
}

.modal p {
    color: var(--cream);
    margin-bottom: 30px;
}

/* Forms */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    text-transform: none;
    font-size: 14px;
    color: var(--cream);
}

/* Map Modal */
.map-modal-container {
    margin-bottom: 30px;
}

.map-modal-container img {
    width: 100%;
    height: auto;
    display: block;
}

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

.map-info h4 {
    color: var(--gold);
    margin-bottom: 10px;
}

.map-info p {
    color: var(--cream);
    margin-bottom: 20px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number-wrapper {
        font-size: 42px;
    }
    
    .stat-percent {
        font-size: 32px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
        padding: 30px 20px;
        border-radius: 8px 8px 0 0;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        background: var(--gray-dark);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--gray-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number-wrapper {
        font-size: 36px;
    }
    
    .stat-percent {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-items {
        justify-content: center;
    }
    
    .investment-features {
        font-size: 14px;
    }
    
    .roi-value {
        font-size: 42px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-height: calc(100vh - 20px);
        border-radius: 16px 16px 0 0;
    }
    
    .modal h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .modal p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number-wrapper {
        font-size: 32px;
    }
    
    .stat-percent {
        font-size: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-card {
        padding: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .location-feature {
        padding: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-content h4 {
        font-size: 16px;
    }
    
    .feature-content p {
        font-size: 12px;
    }
}

/* ============================= RESPONSIVE FIXES - NO TOCAR DESKTOP ============================= */
/* Todos los cambios responsive van aquí para no afectar la versión desktop */

/* Mobile Navigation Overlay */
@media (max-width: 768px) {
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* WhatsApp Button Adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Modal Improvements */
@media (max-width: 480px) {
    .modal {
        padding: 0;
        align-items: flex-end;
    }
    
    .modal-content {
        width: 100%;
        max-height: 85vh;
        padding: 25px 20px;
        border-radius: 20px 20px 0 0;
        margin-bottom: 0;
    }
    
    /* Consider virtual keyboard */
    .modal.keyboard-open .modal-content {
        max-height: 50vh;
    }
}

/* Hero Stats Grid for Tablets */
@media (max-width: 900px) and (min-width: 600px) {
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 400px;
        margin: 0 auto 50px;
    }
}

/* Gallery Grid Fix */
@media (max-width: 400px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
}

/* Comparison Table Mobile */
@media (max-width: 768px) {
    .comparison-table {
        display: none;
    }
    
    .comparison-table-mobile {
        display: block;
    }
    
    /* Create mobile-friendly card layout */
    .comparison-card-mobile {
        background: var(--gray-dark);
        padding: 30px 20px;
        margin-bottom: 20px;
        border: 1px solid var(--gray-medium);
    }
    
    .comparison-card-mobile.highlight {
        border: 2px solid var(--gold);
    }
    
    .comparison-card-mobile h4 {
        color: var(--gold);
        margin-bottom: 20px;
        font-size: 20px;
    }
    
    .comparison-detail {
        display: flex;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .comparison-detail:last-child {
        border-bottom: none;
    }
    
    .comparison-label {
        color: var(--cream);
        font-size: 14px;
    }
    
    .comparison-value {
        color: var(--gold);
        font-weight: 600;
        text-align: right;
    }
}

/* Hide mobile table by default */
.comparison-table-mobile {
    display: none;
}

/* Investment Grid Tablet */
@media (max-width: 900px) and (min-width: 769px) {
    .investment-grid {
        gap: 40px;
    }
    
    .investment-card,
    .roi-showcase {
        padding: 40px;
    }
}

/* Calculator Input Improvements */
@media (max-width: 480px) {
    .calculator-wrapper {
        padding: 30px 20px;
    }
    
    .input-group input[type="number"] {
        -webkit-appearance: none;
        -moz-appearance: textfield;
    }
    
    /* Add custom increment/decrement buttons */
    .input-number-wrapper {
        position: relative;
    }
    
    .input-number-controls {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .input-number-controls button {
        width: 30px;
        height: 25px;
        background: var(--gold);
        color: var(--black);
        border: none;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Trust Bar Mobile Grid */
@media (max-width: 600px) {
    .trust-items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .trust-item {
        justify-content: center;
        padding: 10px;
    }
}

/* Location Features No Hover on Touch */
@media (hover: none) {
    .location-feature:hover {
        transform: none;
        background: var(--gray-dark);
    }
}

/* FAQ Dynamic Height Fix */
@media (max-width: 768px) {
    .faq-item.active .faq-answer {
        max-height: none;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }
}

/* Touch Target Improvements */
@media (max-width: 768px) {
    .filter-btn {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    .footer-links a {
        display: inline-block;
        padding: 5px 0;
        min-height: 44px;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
    }
}

/* Form Label Readability */
@media (max-width: 480px) {
    .form-group label {
        font-size: 16px;
        text-transform: none;
    }
}

/* Safe Area Considerations */
@supports (padding: env(safe-area-inset-bottom)) {
    @media (max-width: 768px) {
        .whatsapp-float {
            bottom: calc(20px + env(safe-area-inset-bottom));
            right: calc(20px + env(safe-area-inset-right));
        }
        
        header {
            padding-top: env(safe-area-inset-top);
        }
        
        .hero-scroll {
            bottom: calc(30px + env(safe-area-inset-bottom));
        }
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        margin-bottom: 30px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 40px;
    }
    
    .stat-number-wrapper {
        font-size: 32px;
    }
}

/* Comparison Grid Small Screens */
@media (max-width: 400px) {
    .comparison-grid {
        gap: 30px;
    }
    
    .comparison-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-title {
        font-size: 22px;
    }
}

/* ROI Showcase Mobile */
@media (max-width: 480px) {
    .roi-showcase {
        padding: 30px 20px;
    }
    
    .roi-value {
        font-size: 36px;
    }
    
    .breakdown-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .hero-scroll {
        animation: none;
    }
}

/* Large Desktop Optimization */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
    
    h1 {
        font-size: 5rem;
    }
    
    h2 {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .stat-number-wrapper {
        font-size: 60px;
    }
    
    .stat-percent {
        font-size: 48px;
    }
}

/* Samsung Fold Support */
@media (max-width: 280px) {
    .container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .nav-links {
        width: 100%;
        right: -100%;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        gap: 15px;
    }
    
    .comparison-card {
        padding: 20px 15px;
    }
}