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

:root {
    /* Colors */
    --primary: #d4af37;
    --primary-dark: #b8951f;
    --primary-light: #e6c858;
    --secondary: #1a1a2e;
    --secondary-light: #16213e;
    --accent: #0f3460;
    --text-dark: #1a1a2e;
    --text-light: #ffffff;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-gold-dark: #b8951f;
    --bg-gold-darker: #9a7a1a;
    --success: #10b981;
    --whatsapp: #25d366;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #b8951f 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b8951f 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 52, 96, 0.85));

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.3);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --spacing-4xl: 8rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   Floating Action Buttons
   =================================== */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.fab-button svg {
    width: 28px;
    height: 28px;
}

.fab-phone {
    background: var(--gradient-primary);
}

.fab-whatsapp {
    background: var(--whatsapp);
}

.fab-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-2xl);
}

.fab-phone:hover {
    box-shadow: var(--shadow-gold);
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.95;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.hero-seo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    text-align: center;
    animation: fadeInDown 0.6s ease-out;
    opacity: 0.9;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.highlight-text {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl), var(--shadow-gold);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: var(--shadow-gold);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0), var(--shadow-gold);
    }
}

/* ===================================
   Sections
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    border-left: 4px solid var(--primary);
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--radius-md);
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #c19c26 5%,
            #c19c26 95%,
            #ffffff 100%);
    color: var(--text-light);
}

.services .section-title {
    color: var(--text-light);
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

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

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ===================================
   Why Choose Section
   =================================== */
.why-choose {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.why-choose-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-choose-text {
    text-align: left;
}

.benefits-list {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.benefit-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ===================================
   Location Section
   =================================== */
.location {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #c19c26 5%,
            #c19c26 95%,
            #1a1a2e 100%);
    color: var(--text-light);
}

.location .section-title {
    color: var(--text-light);
}

.location .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    gap: var(--spacing-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--secondary);
    color: var(--text-light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

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

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-attribution {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
}

.footer-attribution a {
    color: rgba(212, 175, 55, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-attribution a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ===================================
   Problems Section
   =================================== */
.problems {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-white);
}

.problems-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.problem-card {
    flex: 0 1 calc(33.333% - var(--spacing-md));
    min-width: 250px;
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

@media (max-width: 900px) {
    .problem-card {
        flex: 0 1 calc(50% - var(--spacing-md));
    }
}

@media (max-width: 600px) {
    .problems-grid {
        flex-direction: column;
    }

    .problem-card {
        flex: 1 1 100%;
    }
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.problem-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ===================================
   About Section (with image)
   =================================== */
.about-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.5), transparent);
    pointer-events: none;
}

.about-text {
    padding: var(--spacing-md);
}

.about-text .section-title {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
}

.about-description strong {
    color: var(--text-dark);
}

.about-text .btn {
    margin-top: var(--spacing-md);
}

/* ===================================
   Value Proposition Section (with image)
   =================================== */
.value-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #c19c26 5%,
            #c19c26 95%,
            #c19c26 100%);
    color: var(--text-light);
    position: relative;
}

.value-section .section-title {
    color: var(--text-light);
}

.value-text .value-description {
    color: rgba(255, 255, 255, 0.9);
}

.value-text .value-description strong {
    color: var(--text-light);
    font-weight: 700;
}

.value-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(207, 150, 45, 0.95);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.value-feature-icon {
    width: 40px;
    height: 40px;
    background: hex(#C19C26);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-feature-text {
    color: var(--text-light);
    font-weight: 600;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.value-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    order: 2;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.value-image:hover img {
    transform: scale(1.05);
}

.value-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.3), transparent);
    pointer-events: none;
}

.value-text {
    padding: var(--spacing-md);
    order: 1;
}

.value-text .section-title {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.value-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
}

.value-description strong {
    color: var(--text-dark);
}

.value-features {
    display: grid;
    gap: var(--spacing-md);
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
    padding: var(--spacing-4xl) 0;
    position: relative;
    background-color: var(--bg-white);
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background-image: url('assets/benefits-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
    will-change: transform;
    transform: translateY(var(--parallax-y, 0px));
}

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

.benefits-section .section-title {
    color: #1a1a2e;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
    font-weight: 800;
}

.benefits-section .section-subtitle {
    color: #2d2d44;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.benefit-card {
    flex: 0 1 calc(33.333% - var(--spacing-md));
    min-width: 280px;
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    display: flex;
    gap: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

@media (max-width: 900px) {
    .benefit-card {
        flex: 0 1 calc(50% - var(--spacing-md));
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        flex-direction: column;
    }

    .benefit-card {
        flex: 1 1 100%;
    }
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 1);
}

.benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #b8951f 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.benefit-card .benefit-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.benefit-card .benefit-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.benefits-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-xl);
}

/* WhatsApp button in benefits section - use green for visibility */
.benefits-cta .btn-secondary {
    background: var(--whatsapp);
    color: var(--text-light);
    border: 1px solid var(--whatsapp);
}

.benefits-cta .btn-secondary:hover {
    background: #1ea952;
    border-color: #1ea952;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 600px) {
    .benefits-cta {
        flex-direction: column;
    }

    .benefits-cta .btn {
        width: 100%;
    }
}

/* ===================================
   Purpose Section (with image)
   =================================== */
.purpose-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(to bottom,
            #c19c26 0%,
            #c19c26 95%,
            #ffffff 100%);
    color: var(--text-light);
    position: relative;
}

.purpose-section .section-title {
    color: var(--text-light);
}

.purpose-text .purpose-description {
    color: rgba(255, 255, 255, 0.9);
}

.purpose-text .purpose-description strong {
    color: var(--text-light);
    font-weight: 700;
}

.purpose-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.purpose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.purpose-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.purpose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.purpose-image:hover img {
    transform: scale(1.05);
}

.purpose-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.5), transparent);
    pointer-events: none;
}

.purpose-text {
    padding: var(--spacing-md);
}

.purpose-text .section-title {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.purpose-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
}

.purpose-description strong {
    color: var(--text-dark);
}

.purpose-values {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

/* ===================================
   Process Section
   =================================== */
.process-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {

    /* Reducir padding vertical en todas las secciones para móviles */
    section,
    .hero,
    .services,
    .value-section,
    .benefits-section,
    .purpose-section,
    .process,
    .why-us,
    .services-detail,
    .cta {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

.process-step {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 1rem;
        right: 1rem;
    }

    .fab-button {
        width: 50px;
        height: 50px;
    }

    .fab-button svg {
        width: 24px;
        height: 24px;
    }

    .hero-content {
        padding: var(--spacing-xl) var(--spacing-sm);
    }

    .hero-highlights {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Image sections responsive */
    .about-content,
    .value-content,
    .purpose-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .about-image,
    .purpose-image {
        order: 1;
        max-height: 400px;
    }

    .about-text,
    .purpose-text {
        order: 2;
    }

    .value-image {
        order: 1;
        max-height: 400px;
    }

    .value-text {
        order: 2;
    }

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

    .benefit-card {
        flex-direction: row;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-item:hover {
        transform: translateX(0) translateY(-5px);
    }

    .location-info {
        grid-template-columns: 1fr;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto var(--spacing-md) auto;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* ===================================
   Ajustes para pantallas muy pequeñas
   =================================== */
@media (max-width: 350px) {
    .hero-buttons .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}