/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (TURO BELIX PREMIUM STYLESHEET)
   ========================================================================== */

:root {
    /* Harmonious Color Palette */
    --primary: #002D4A;        /* Deep Navy Ocean */
    --primary-light: #004D7A;  /* Lighter Ocean */
    --secondary: #00A896;      /* Vibrant Teal/Turquoise */
    --secondary-hover: #028074;
    --accent: #F79F1F;         /* Warm Gold/Amber */
    --accent-hover: #E18E12;
    --text-dark: #1E293B;      /* Slate 800 */
    --text-muted: #64748B;     /* Slate 500 */
    --bg-light: #F8FAFC;       /* Off-white background */
    --bg-card: #FFFFFF;        /* Card background */
    --whatsapp-green: #25D366; /* Standard WhatsApp Color */
    --whatsapp-hover: #128C7E;
    
    /* Typography */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Effects and Transitions */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.12), 0 10px 15px -3px rgba(0, 0, 0, 0.06);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Layout Constants */
    --header-height: 80px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

body.no-scroll {
    overflow: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #E2E8F0;
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 5px;
    border: 2px solid #E2E8F0;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* ==========================================================================
   UTILITY & LAYOUT COMPONENTS
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

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

.section-header {
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tagline {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-underline {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 0.5rem auto 1.5rem auto;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Icons */
.icon-inline {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
    display: inline-block;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background-color: var(--secondary);
    color: #FFFFFF;
}
.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    border-color: #FFFFFF;
    color: #FFFFFF;
}
.btn-secondary:hover {
    background-color: #FFFFFF;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.icon-whatsapp {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: currentColor;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}


/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: #FFFFFF;
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.main-header.scrolled .logo-svg {
    height: 44px;
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-fast);
}

.nav-link:hover, 
.nav-link.active {
    color: var(--secondary);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

/* Mobile Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger-menu span {
    width: 100%;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

@media (max-width: 992px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: #FFFFFF;
        box-shadow: var(--shadow-lg);
        padding: 6rem 2rem 2rem 2rem;
        transition: var(--transition-smooth);
        z-index: 1005;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
        display: block;
    }
    
    .nav-menu-cta {
        display: block;
        margin-top: auto;
        padding-bottom: 2rem;
    }
    
    /* Hamburger Active State */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .header-actions .btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-svg {
        height: 38px;
    }
    .main-header.scrolled .logo-svg {
        height: 32px;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 8rem;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    color: #FFFFFF;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 45, 74, 0.85) 0%, rgba(6, 28, 51, 0.7) 100%);
    z-index: 1;
}

.hero-container-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(0, 168, 150, 0.2);
    border: 1px solid rgba(0, 168, 150, 0.4);
    backdrop-filter: blur(4px);
    color: #00E5FF;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--accent);
    background: linear-gradient(to right, #FFD700, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 650px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 6rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: calc(var(--header-height) + 1.5rem);
        padding-bottom: 4rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */

.benefits-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
    position: relative;
    z-index: 4;
}

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

.benefit-card {
    background-color: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    opacity: 0;
    transition: var(--transition-fast);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon-container {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background-color: rgba(0, 168, 150, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.benefit-icon {
    width: 30px;
    height: 30px;
}

.benefit-card:hover .benefit-icon-container {
    background-color: var(--secondary);
    color: #FFFFFF;
    transform: scale(1.05) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   DESTINATIONS SECTION (THE GRID & CARDS)
   ========================================================================== */

.destinations-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

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

.destination-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
}

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

.card-image-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

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

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

/* Overlay gradient for resort texts */
.card-image-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 45, 74, 0.85) 0%, rgba(0, 45, 74, 0) 100%);
    z-index: 1;
}

.card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.badge-warning {
    background-color: var(--accent);
}

.badge-info {
    background-color: var(--secondary);
}

.badge-premium {
    background-color: #9061F9; /* Royal Purple */
}

.card-resort-overlay {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    color: #FFFFFF;
}

.resort-hotel {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.4rem;
    display: block;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.resort-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star {
    color: #FFD700;
    font-size: 0.9rem;
}

.all-inclusive-tag {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.75rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.1rem 0.5rem;
    border-radius: 3px;
    margin-left: 8px;
    letter-spacing: 0.5px;
}

.card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.destination-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.destination-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.destination-duration {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    background-color: rgba(0, 45, 74, 0.05);
    color: var(--primary);
    padding: 0.3rem 0.75rem;
    border-radius: 5px;
}

.destination-slogan {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Pricing Layout */
.price-container {
    background: linear-gradient(135deg, rgba(0, 45, 74, 0.03) 0%, rgba(0, 168, 150, 0.03) 100%);
    border: 1px solid rgba(0, 45, 74, 0.05);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.price-value-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 0.25rem 0;
}

.price-value-row .currency {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.price-value-row .amount {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 2.75rem;
    color: var(--primary);
    line-height: 1;
}

.price-info {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
}

/* Inclusions Grid */
.inclusions-section {
    margin-bottom: 1.5rem;
}

.inclusions-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inclusions-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
}

.inclusions-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.icon-inclusion {
    width: 16px;
    height: 16px;
    color: var(--secondary);
    flex-shrink: 0;
}

/* Highlights pills */
.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 2rem;
}

.highlight-tags .tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    background-color: rgba(0, 77, 122, 0.06);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.link-consultar-dest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    align-self: center;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--secondary);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 1.5rem;
    transition: var(--transition-fast);
}

.link-consultar-dest::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.link-consultar-dest:hover {
    color: var(--secondary-hover);
    transform: translateY(-2px);
}

.link-consultar-dest:hover::after {
    transform: scaleX(1);
    background-color: var(--secondary-hover);
}

@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .card-image-wrapper {
        height: 250px;
    }
    .resort-hotel {
        font-size: 1.2rem;
    }
    .card-body {
        padding: 1.5rem;
    }
    .link-consultar-dest {
        padding: 0.6rem 2rem;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .destination-header {
        flex-wrap: wrap;
        gap: 8px;
    }
    .destination-name {
        font-size: 1.5rem;
    }
    .price-value-row .amount {
        font-size: 2.25rem;
    }
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */

.about-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-headings);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

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

.about-image-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.floating-badge-experience {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(0, 45, 74, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-star {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.floating-badge-experience span {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-img {
        height: 350px;
    }
    
    .about-stats {
        gap: 1.5rem;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .about-img {
        height: 250px;
    }
    
    .floating-badge-experience {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 0.85rem;
    }
    
    .floating-badge-experience span {
        font-size: 0.8rem;
    }
    
    .floating-badge-experience .icon-star {
        width: 18px;
        height: 18px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .stat-item {
        background-color: rgba(0, 45, 74, 0.03);
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .stat-num {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary) 0%, #061C33 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    color: #FFFFFF;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
}

.contact-info-side {
    padding: 4rem;
}

.contact-info-side h3 {
    color: #FFFFFF;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-info-side p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.method-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    transform: translateX(5px);
}

.method-icon-container {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(0, 168, 150, 0.2);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon {
    width: 22px;
    height: 22px;
}

.method-lbl {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-val {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1.1rem;
    color: #FFFFFF;
}

.contact-action-side {
    background: rgba(255, 255, 255, 0.03);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-logo-wrap {
    margin-bottom: 2rem;
}

.logo-simple {
    width: 80px;
    height: 80px;
    animation: float 4s ease-in-out infinite;
}

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

.contact-action-side h4 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-action-side p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

@media (max-width: 992px) {
    .contact-card {
        grid-template-columns: 1fr;
    }
    
    .contact-info-side {
        padding: 3rem 2rem;
    }
    
    .contact-action-side {
        padding: 3rem 2rem;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 480px) {
    .contact-info-side {
        padding: 2rem 1.25rem;
    }
    
    .contact-info-side h3 {
        font-size: 1.75rem;
    }
    
    .contact-info-side p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .method-item {
        padding: 0.75rem;
        gap: 10px;
    }
    
    .method-icon-container {
        width: 38px;
        height: 38px;
    }
    
    .method-icon {
        width: 18px;
        height: 18px;
    }
    
    .method-val {
        font-size: 0.85rem;
        word-break: break-all;
    }
    
    .contact-action-side {
        padding: 2.5rem 1.25rem;
    }
}

/* ==========================================================================
   FOOTER AREA
   ========================================================================== */

.main-footer {
    background-color: #061C33;
    color: #A0AEC0;
    padding-top: 5rem;
    border-top: 3px solid var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.logo-svg-footer {
    height: 46px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(160, 174, 192, 0.8);
}

.footer-badge-legajo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 168, 150, 0.1);
    color: #00E5FF;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 168, 150, 0.2);
    font-size: 0.85rem;
}

.main-footer h4 {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-col-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col-links a {
    font-size: 0.95rem;
    color: #A0AEC0;
}

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

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

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.icon-inline-footer {
    width: 18px;
    height: 18px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-info a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    font-size: 0.85rem;
    color: rgba(160, 174, 192, 0.6);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(160, 174, 192, 0.6);
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   FLOATING WHATSAPP WIDGET
   ========================================================================== */

.whatsapp-floating-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-tooltip {
    background-color: #FFFFFF;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
}

.whatsapp-floating-widget:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: var(--whatsapp-hover);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-floating-btn svg {
    width: 32px;
    height: 32px;
    fill: #FFFFFF;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 576px) {
    .whatsapp-floating-widget {
        bottom: 1rem;
        right: 1rem;
    }
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on small mobile */
    }
    .whatsapp-floating-btn {
        width: 50px;
        height: 50px;
    }
    .whatsapp-floating-btn svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================================================
   SCROLL ANIMATIONS (INTERSECTION OBSERVER)
   ========================================================================== */

.animate-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section Custom Entrances */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

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