/* ==================== PREMIUM CSS VARIABLES ==================== */
:root {
    --primary-color: hsl(123 33% 28%);
    --accent-color: hsl(123 33% 28%);
    --gold-color: hsl(42 71% 55%);
    --gold-light: hsl(42 71% 65%);
    --gold-dark: hsl(42 71% 40%);
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --light-text: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.15);
    
    /* Premium Easing */
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-luxury: cubic-bezier(0.23, 1, 0.320, 1);
    --ease-entrance: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="3" fill="%23d4a373"/><circle cx="16" cy="16" r="8" fill="none" stroke="%23d4a373" stroke-width="1" opacity="0.5"/></svg>') 16 16, auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    scroll-margin-top: 90px;
}

/* ==================== GLOBAL ANIMATIONS & REFLOW-FREE TRANSFORMS ==================== */
/* These animations use ONLY transform and opacity to prevent layout recalculations */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate3d(0, 60px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale3d(0.95, 0.95, 1);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale3d(1, 1, 1); }
    50% { transform: scale3d(1.05, 1.05, 1); }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 163, 115, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 163, 115, 0.6);
    }
}

@keyframes expandUnderline {
    from {
        width: 0;
        transform: translateX(-50%);
    }
    to {
        width: 100%;
        transform: translateX(0);
    }
}

@keyframes floatParticles {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes progressFill {
    0% { width: 0%; }
    90% { width: 90%; }
    100% { width: 100%; }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 1;
    }
    50% {
        transform: translateY(-15px);
        opacity: 0.8;
    }
}

.slide-up { animation: slideUp 0.8s var(--ease-smooth) forwards; }
.fade-in { animation: fadeIn 0.6s var(--ease-smooth) forwards; }
.scale-in { animation: scaleIn 0.8s var(--ease-smooth) forwards; }

/* ==================== LOADING SCREEN ==================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #1d3d2e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s var(--ease-smooth);
    pointer-events: auto;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-logo {
    font-size: 3rem;
    margin-bottom: 2rem;
    animation: logoFloat 2s var(--ease-smooth) infinite;
}

.loader-pulse {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(212, 163, 115, 0.2);
    border-top: 3px solid var(--gold-color);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-color), var(--gold-light));
    border-radius: 2px;
    width: 0%;
    animation: progressFill 2s var(--ease-smooth) forwards;
}

.loader-text {
    color: var(--white);
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ==================== NAVIGATION - GLASSMORPHISM ==================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
    transition: all 0.3s var(--ease-smooth);
    border-bottom: 1px solid rgba(212, 163, 115, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    text-decoration: none;
    will-change: transform;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    will-change: transform;
    transition: all 0.3s var(--ease-smooth);
    animation: logoFloat 3s var(--ease-smooth) infinite;
}

.nav-logo:hover .logo-icon {
    transform: rotate(8deg) scale3d(1.1, 1.1, 1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    transition: color 0.3s var(--ease-smooth);
    will-change: color;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-color), var(--gold-light));
    transform: translateX(-50%);
    transition: width 0.3s var(--ease-smooth);
    will-change: width;
}

.nav-link:hover {
    color: var(--gold-color);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-link {
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s var(--ease-smooth);
    will-change: transform, box-shadow;
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.25);
}

.cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 163, 115, 0.35);
}

.cta-link::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
    will-change: transform, opacity;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d3d2e 100%);
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-color);
    border-radius: 50%;
    opacity: 0.3;
}

.particle.animating {
    animation: floatParticles 8s linear forwards;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: 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='%23ffffff' fill-opacity='0.1'%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");
    will-change: opacity;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    padding: 20px;
}

.hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(212, 163, 115, 0.15);
    border: 1px solid var(--gold-color);
    border-radius: 50px;
    color: var(--gold-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s var(--ease-smooth) forwards, glowPulse 3s var(--ease-smooth) infinite;
    opacity: 0;
    animation-delay: 0s, 2s;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
    will-change: transform, opacity;
    opacity: 0;
    animation: slideUp 0.8s var(--ease-smooth) forwards;
    animation-delay: 0.2s;
}

.hero-title-highlight {
    background: linear-gradient(90deg, var(--gold-color), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    will-change: transform, opacity;
    opacity: 0;
    animation: slideUp 0.8s var(--ease-smooth) forwards;
    animation-delay: 0.4s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    will-change: transform, opacity;
    opacity: 0;
    animation: slideUp 0.8s var(--ease-smooth) forwards;
    animation-delay: 0.6s;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    opacity: 0;
    animation: slideUp 0.8s var(--ease-smooth) forwards;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-color);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.stat-item:nth-child(1) { animation-delay: 0.8s; }
.stat-item:nth-child(2) { animation-delay: 1s; }
.stat-item:nth-child(3) { animation-delay: 1.2s; }

/* ==================== BUTTONS ==================== */
.cta-button {
    padding: 15px 35px;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    will-change: transform, box-shadow, filter;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.cta-button:active::before {
    width: 300px;
    height: 300px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(212, 163, 115, 0.45);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--gold-color);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(212, 163, 115, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(212, 163, 115, 0.25);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: 100px 20px;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    will-change: transform, opacity;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-color), var(--gold-light));
    margin: 1rem auto 0;
    border-radius: 2px;
    animation: expandUnderline 0.6s var(--ease-smooth) forwards;
}

.section-subtitle {
    font-size: 1.15rem;
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
    will-change: transform, opacity;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s var(--ease-smooth);
    will-change: transform, box-shadow, filter;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-smooth);
}

.testimonial-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.05);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.quote-mark {
    font-size: 3rem;
    color: var(--gold-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-header {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(212, 163, 115, 0.3);
    transition: all 0.3s var(--ease-smooth);
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale3d(1.15, 1.15, 1);
}

.testimonial-info h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--light-text);
}

.stars {
    color: #ffc107;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
}

.stat {
    text-align: center;
}

.stat-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-top: 0.3rem;
}

/* ==================== PROCESS TIMELINE ==================== */
.how-it-works {
    padding: 100px 20px;
    background: var(--white);
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
}

.process-step {
    text-align: center;
    padding: 2.5rem;
    border-radius: 16px;
    background: var(--light-gray);
    transition: all 0.4s var(--ease-smooth);
    will-change: transform, background, box-shadow;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-color), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-smooth);
}

.process-step:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-color), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.process-step h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--light-text);
    line-height: 1.7;
}

.step-icon {
    font-size: 3.5rem;
    margin-top: 1.5rem;
    will-change: transform;
    transition: transform 0.4s var(--ease-smooth);
    display: inline-block;
}

.process-step:hover .step-icon {
    transform: scale3d(1.25, 1.25, 1) rotateZ(10deg);
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color), #1d3d2e);
    position: relative;
    overflow: hidden;
}

.about .section-title {
    color: var(--white);
    text-align: left;
}

.about .section-title::after {
    margin-left: 0;
}

.about .about-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.about-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

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

.about .stat h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-color);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.35rem;
}

.about .stat p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.about::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.1), transparent);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    animation: float 8s var(--ease-smooth) infinite;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
}

.about-list li {
    padding: 0.8rem 0;
    padding-left: 30px;
    color: var(--white);
    font-size: 1rem;
    will-change: transform;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-list li:hover {
    transform: translateX(12px);
    color: var(--gold-color);
}

.about-image {
    will-change: opacity, transform;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.15), rgba(212, 163, 115, 0.05));
    border: 2px solid rgba(212, 163, 115, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-smooth);
}

.image-placeholder:hover {
    transform: translateY(-10px);
    border-color: var(--gold-color);
    box-shadow: 0 20px 60px rgba(212, 163, 115, 0.2);
}

.placeholder-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.placeholder-text p {
    color: var(--gold-color);
    font-weight: 600;
    font-size: 1.2rem;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 100px 20px;
    background: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s var(--ease-smooth);
    will-change: transform, box-shadow;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.info-card:hover::before {
    opacity: 1;
}

.info-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    will-change: transform;
    transition: transform 0.4s var(--ease-smooth);
    display: inline-block;
}

.info-card:hover .info-icon {
    transform: scale3d(1.3, 1.3, 1) rotateY(10deg);
}

.info-card h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.info-card p {
    color: var(--light-text);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.info-card a {
    color: var(--gold-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s var(--ease-smooth);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.info-card a:hover {
    color: var(--primary-color);
}

.small-text {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* ==================== CONTACT FORM ==================== */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    will-change: opacity;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.4s var(--ease-smooth);
    will-change: border-color, box-shadow;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.15);
}

.form-group textarea {
    resize: vertical;
    font-family: 'Inter', sans-serif;
}

.form-button {
    width: 100%;
    position: relative;
    margin-top: 2rem;
}

.btn-text,
.btn-spinner {
    transition: opacity 0.3s var(--ease-smooth);
}

.btn-spinner.hidden {
    display: none !important;
}

.spinner {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    animation: spin 1s linear infinite;
}

.form-note {
    font-size: 0.85rem;
    color: var(--light-text);
    text-align: center;
    margin-top: 1rem;
}

.success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    z-index: 2000;
    transition: transform 0.5s var(--ease-out);
}

.success-modal.show {
    transform: translate(-50%, -50%) scale(1);
}

.success-modal h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.success-modal p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1999;
    transition: background 0.3s var(--ease-smooth);
    pointer-events: none;
}

.modal-overlay.show {
    background: rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3.5rem 20px 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-color), transparent, var(--gold-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--gold-color);
}

.footer-section a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: all 0.3s var(--ease-smooth);
    will-change: color, transform;
}

.footer-section a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.footer-section a:hover {
    color: var(--gold-color);
    transform: translateX(4px);
}

.footer-section a:hover::before {
    opacity: 1;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ==================== FLOATING ELEMENTS ==================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.3);
    transition: all 0.3s var(--ease-smooth);
    will-change: transform, box-shadow;
    z-index: 998;
    animation: slideInLeft 0.6s var(--ease-smooth) forwards;
}

.whatsapp-btn:hover {
    transform: scale3d(1.15, 1.15, 1);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    animation: pulse 2s var(--ease-smooth) infinite;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.3);
    transition: all 0.3s var(--ease-smooth);
    will-change: transform, opacity;
    z-index: 998;
    opacity: 0;
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 163, 115, 0.4);
}

/* ==================== SOCIAL SIDEBAR ==================== */
.social-sidebar {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s var(--ease-smooth);
    will-change: transform;
    animation: slideInRight 0.6s var(--ease-smooth) forwards;
}

.social-link:nth-child(1) { animation-delay: 0.1s; }
.social-link:nth-child(2) { animation-delay: 0.2s; }
.social-link:nth-child(3) { animation-delay: 0.3s; }

.social-link:hover {
    transform: translateX(10px) scale3d(1.1, 1.1, 1);
}

.social-link.facebook { background: #1877F2; }
.social-link.twitter { background: #1DA1F2; }
.social-link.instagram { background: linear-gradient(45deg, #FD1D1D, #F77737, #FEAE1D, #A1D82F, #23A1A1, #4D52F0); }

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 1100px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        scroll-margin-top: 80px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        gap: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s var(--ease-smooth);
    }

    .nav-menu.active {
        max-height: 400px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about .section-title {
        text-align: center;
    }

    .about .section-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .social-sidebar {
        flex-direction: row;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 90px;
        top: auto;
        gap: 8px;
    }

    .whatsapp-btn {
        bottom: 90px;
        left: 16px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .whatsapp-btn::before {
        display: none;
    }

    .scroll-to-top {
        bottom: 90px;
        right: 16px;
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
        line-height: 1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .testimonial-stats {
        grid-template-columns: 1fr;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}
