/* ============================================
   OCEAN EXPERIENCE - STYLES.CSS
   Version: 28
   Organized by: Global → Pages → Shared Components → Animations
   ============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --color-primary: #0a1628;
    --color-text: white;
    --color-accent: #ffc107;
    --color-success: #4caf50;
    --color-success-light: #8bc34a;
    --color-success-pale: #a5d6a7;
    --color-danger: #e53935;
    --color-google-blue: #4285F4;
    --color-google-green: #34A853;
    --color-google-yellow: #FBBC05;
    --color-google-red: #EA4335;

    --bg-overlay: rgba(0,0,0,0.35);
    --bg-overlay-light: rgba(0,0,0,0.3);
    --bg-overlay-transparent: rgba(0,0,0,0.15);
    --bg-white-transparent: rgba(255,255,255,0.2);
    --bg-white-light: rgba(255,255,255,0.4);

    --border-color-light: rgba(255,255,255,0.2);
    --border-color-lighter: rgba(255,255,255,0.3);

    --border-radius-sm: 5px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;

    --font-primary: system-ui, -apple-system, sans-serif;

    --z-content: 10;
    --z-badge: 20;
    --z-nav: 100;

    --gap-indicator: 12px;
    --gap-indicator-mobile: 8px;

    --transition-fast: 0.2s;
    --transition-medium: 0.3s;
}

/* ============================================
   2. GLOBAL RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    overscroll-behavior-y: contain;
    touch-action: pan-y;
    font-family: var(--font-primary);
}

/* ============================================
   3. LAYOUT CONTAINERS
   ============================================ */
.pages-container {
    height: 100vh;
    width: 100vw;
    position: relative;
    touch-action: pan-y;
}

.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: var(--color-primary);
    overflow: hidden;
}

.page.active {
    display: block;
}

/* ============================================
   4. BACKGROUND MEDIA (Shared)
   ============================================ */
.slideshow,
.video-background,
.static-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow img,
.static-background img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slideshow img.active {
    opacity: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   5. CONTENT CONTAINER
   ============================================ */
.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-content);
    pointer-events: none;
}

.content > * {
    pointer-events: auto;
}

/* ============================================
   6. SHARED: Hero Base Styles
   ============================================ */
.hero {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-text);
    text-align: center;
    position: absolute;
    top: 17%;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 50px;
    width: 70%;
    -webkit-text-stroke: 1.5px var(--color-text);
    text-shadow:
        2px 2px 8px rgba(0,0,0,0.8),
        0 0 20px rgba(0,0,0,0.5);
    background: var(--bg-overlay);
    border-radius: var(--border-radius-lg);
    padding: 16px 24px;
}

.hero.cta-hero {
    font-size: clamp(2.5rem, 7vw, 5rem);
}

/* ============================================
   7. PAGE 1: Hook
   ============================================ */
/* Hero uses shared .hero styles */

.page[data-page="1"] .subtext {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    color: var(--color-text);
    text-align: center;
    position: absolute;
    top: 31%;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 50px;
    width: 70%;
    line-height: 1.5;
    -webkit-text-stroke: 1px var(--color-text);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    background: var(--bg-overlay);
    border-radius: var(--border-radius-lg);
    padding: 16px 24px;
}

.text-carousel-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 50px;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-overlay);
    border-radius: var(--border-radius-md);
    padding: 16px 24px;
    gap: 20px;
    z-index: 50;
}

.text-carousel-prev,
.text-carousel-next {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
    padding: 6px;
}

.text-carousel-prev:hover,
.text-carousel-next:hover {
    color: rgba(255,255,255,1);
    transform: scale(1.2);
}

.text-carousel-prev.disabled,
.text-carousel-next.disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}

.text-carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.text-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: all var(--transition-medium);
}

.text-dot.active {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* Page 1 - Mobile */
@media (max-width: 480px) {
    .page[data-page="1"] .hero {
        font-size: 1.6rem;
        padding: 12px 16px;
        width: 80%;
        margin-left: 40px;
    }

    .page[data-page="1"] .subtext {
        font-size: 0.95rem;
        padding: 12px 16px;
        width: 80%;
        margin-left: 40px;
    }

    .text-carousel-nav {
        font-size: 0.85rem;
        padding: 12px 16px;
        gap: 16px;
        width: 80%;
        margin-left: 40px;
    }

    .text-carousel-prev,
    .text-carousel-next {
        font-size: 16px;
        padding: 4px;
    }

    .text-dot {
        width: 8px;
        height: 8px;
    }
}

/* ============================================
   8. PAGE 2: The Boat
   ============================================ */
/* Hero uses shared .hero styles */

.page[data-page="2"] .subtext {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    color: var(--color-text);
    text-align: center;
    position: absolute;
    top: 31%;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 50px;
    width: 70%;
    line-height: 1.5;
    -webkit-text-stroke: 1px var(--color-text);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    background: var(--bg-overlay);
    border-radius: var(--border-radius-lg);
    padding: 16px 24px;
}

.prohibition-badge {
    position: absolute;
    bottom: 25%;
    right: 10%;
    transform: rotate(5deg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
    z-index: var(--z-badge);
}

.prohibition-text {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--color-danger);
    background: white;
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

/* Page 2 - Mobile */
@media (max-width: 480px) {
    .prohibition-badge {
        bottom: 19%;
        right: 5%;
    }
}

/* ============================================
   9. PAGE 3: Values
   ============================================ */
/* Hero uses shared .hero styles */

.page[data-page="3"] .subtext {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    color: var(--color-text);
    text-align: center;
    position: absolute;
    top: 31%;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 50px;
    width: 70%;
    line-height: 1.5;
    -webkit-text-stroke: 1px var(--color-text);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    background: var(--bg-overlay);
    border-radius: var(--border-radius-lg);
    padding: 16px 24px;
}

.eco-badge {
    position: absolute;
    top: 72%;
    left: 25%;
    transform: rotate(-8deg);
    animation: float 3s ease-in-out infinite, pulse-glow 2s ease-in-out infinite;
    z-index: var(--z-badge);
}

.eco-inner {
    background: linear-gradient(135deg, var(--color-success), #2196f3);
    padding: 9px 12px;
    font-weight: 700;
    font-size: clamp(0.85rem, 2vw, 1.2rem);
    color: white;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5), 0 0 40px rgba(33, 150, 243, 0.3);
    text-align: center;
    min-width: 180px;
}

/* Page 3 - Mobile */
@media (max-width: 480px) {
    .eco-badge {
        top: 75%;
        left: 70%;
    }
}

/* ============================================
   9. PAGE 4: Social Proof
   ============================================ */
.usda-badge {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    animation: float 4s ease-in-out infinite;
    z-index: var(--z-badge);
}

.usda-inner {
    background: #1b5e20;
    padding: 20px 30px;
    border: 4px solid var(--color-success);
    text-align: center;
    color: white;
}

.usda-text {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--color-success-light);
}

.usda-sub {
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    font-weight: 600;
    color: var(--color-success-pale);
}

.review-slider {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    z-index: var(--z-badge);
}

.review-track {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.review-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.review-card.active {
    display: flex;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.reviewer-name {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: var(--color-accent);
    font-size: 1rem;
}

.google-icon {
    flex-shrink: 0;
}

.review-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-top: 10px;
    overflow: hidden;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.review-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background var(--transition-medium);
}

.review-dots .dot.active {
    background: white;
}

/* Page 4 - Mobile */
@media (max-width: 480px) {
    .review-slider {
        width: 90%;
    }

    .review-track {
        height: 200px;
    }
}

/* ============================================
   10. PAGE 5: Services
   ============================================ */
.services-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page[data-page="5"] .services-carousel .services-content-wrapper .services-content-slide {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute;
    left: -9999px;
    pointer-events: none;
    z-index: -1;
}

.page[data-page="5"] .services-carousel .services-content-wrapper .services-content-slide.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    left: auto;
    pointer-events: auto;
    z-index: 5;
}

.services-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.services-inner {
    margin-left: 70px;
    width: calc(100% - 70px);
    max-width: 600px;
    text-align: center;
    padding: 20px;
    pointer-events: auto;
    background: var(--bg-overlay);
    border-radius: var(--border-radius-lg);
}

.service-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-text);
    text-shadow:
        0 1px 0 rgba(0,0,0,0.4),
        0 2px 0 rgba(0,0,0,0.4),
        0 3px 0 rgba(0,0,0,0.4),
        2px 4px 8px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.service-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--color-text);
    text-shadow:
        0 1px 0 rgba(0,0,0,0.4),
        0 2px 0 rgba(0,0,0,0.4),
        1px 3px 6px rgba(0,0,0,0.5);
    margin: 10px 0;
}

.service-prices {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--color-text);
    text-shadow:
        0 1px 0 rgba(0,0,0,0.4),
        0 2px 0 rgba(0,0,0,0.4),
        1px 3px 6px rgba(0,0,0,0.5);
    margin: 20px 0;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--border-radius-sm);
}

.services-nav {
    position: fixed;
    bottom: 18%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: var(--z-nav);
    pointer-events: none;
}

.services-prev,
.services-next {
    pointer-events: auto;
    background: var(--bg-white-transparent);
    border: 2px solid white;
    color: white;
    font-size: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-medium);
    backdrop-filter: blur(5px);
}

.services-prev:hover,
.services-next:hover {
    background: var(--bg-white-light);
    transform: scale(1.1);
}

.services-prev:disabled,
.services-next:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.services-prev {
    margin-left: 70px;
}

/* Page 5 - Mobile */
@media (max-width: 480px) {
    .services-nav {
        bottom: 15%;
    }

    .services-prev {
        margin-left: 15px;
    }

    .services-inner {
        margin-left: 15px;
        width: calc(100% - 30px);
        padding: 15px;
    }
}

/* ============================================
   11. PAGE 6: Extras
   ============================================ */
.extras-list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.extra-item {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text);
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeInStagger 0.5s ease forwards;
}

.extra-item:nth-child(1) { animation-delay: 0.2s; }
.extra-item:nth-child(2) { animation-delay: 0.4s; }
.extra-item:nth-child(3) { animation-delay: 0.6s; }
.extra-item:nth-child(4) { animation-delay: 0.8s; }
.extra-item:nth-child(5) { animation-delay: 1s; }

/* Page 6 - Mobile */
@media (max-width: 480px) {
    .extras-list {
        gap: 15px;
    }

    .extra-item {
        font-size: 1.3rem;
    }
}

/* ============================================
   12. PAGE 7: CTA
   ============================================ */
/* Hero uses shared .hero and .cta-hero styles */

.cta-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    font-weight: 600;
    font-style: italic;
    color: var(--color-text);
    text-align: center;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 50px;
    width: auto;
    max-width: 70%;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    background: var(--bg-overlay);
    border-radius: var(--border-radius-lg);
    padding: 8px 18px;
}

.cta-icons {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 50px;
    width: 100%;
}

.cta-whatsapp,
.cta-email {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    transition: transform var(--transition-medium);
}

.cta-whatsapp:hover,
.cta-email:hover {
    transform: scale(1.1);
}

.cta-whatsapp svg,
.cta-email svg {
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.4));
}

.cta-whatsapp span,
.cta-email span {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.cta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-copy {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 10px 20px;
    background: rgba(0,0,0,0.45);
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 999px;
    color: white;
    cursor: pointer;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.cta-copy:hover {
    background: rgba(0,0,0,0.6);
    border-color: white;
    transform: translateY(-1px);
}

.cta-copy-value {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 0.2px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    user-select: text;
    -webkit-user-select: text;
}

.cta-copy-icon,
.cta-check-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.85;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}

.cta-check-icon {
    display: none;
}

.cta-copy.copied .cta-copy-icon {
    display: none;
}

.cta-copy.copied .cta-check-icon {
    display: block;
    opacity: 1;
}

.cta-copy.copied {
    background: rgba(76,175,80,0.75);
    border-color: rgba(255,255,255,0.7);
}

/* Page 7 - Mobile: hide copy buttons */
@media (max-width: 768px) {
    .cta-icons {
        flex-direction: column;
        gap: 30px;
        top: 50%;
    }

    .cta-copy {
        display: none;
    }
}

/* ============================================
   13. SHARED UI COMPONENTS: Page Indicator
   ============================================ */
.page-indicator {
    position: fixed;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: var(--gap-indicator);
    z-index: var(--z-nav);
}

.indicator-item {
    font-size: 38px;
    opacity: 0.6;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indicator-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.indicator-item.active {
    opacity: 1;
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4);
}

.indicator-item::before {
    content: '';
    position: absolute;
    width: 58px;
    height: 58px;
    border: 2px solid rgba(255, 215, 0, 0.7);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.indicator-item.active::before {
    opacity: 1;
}

.indicator-tooltip {
    position: fixed;
    left: 76px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast);
    pointer-events: none;
    z-index: 101;
}

.indicator-tooltip.visible {
    opacity: 1;
    visibility: visible;
}

/* Page Indicator - Mobile */
@media (max-width: 480px) {
    .page-indicator {
        left: 8px;
        gap: var(--gap-indicator-mobile);
    }

    .indicator-item {
        font-size: 31px;
        width: 43px;
        height: 43px;
    }

    .indicator-item.active::before {
        width: 48px;
        height: 48px;
    }

    .indicator-tooltip {
        left: 61px;
        font-size: 17px;
        padding: 10px 14px;
    }
}

/* ============================================
   14. SHARED UI COMPONENTS: Navigation Zones
   ============================================ */
.page-nav-zone {
    position: fixed;
    left: 0;
    right: 0;
    height: 15%;
    background: var(--bg-overlay-transparent);
    border: 1px solid var(--border-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: var(--z-nav);
    transition: background var(--transition-medium);
}

.page-nav-zone:hover {
    background: var(--bg-overlay-light);
}

.page-nav-zone.disabled {
    display: none;
}

.page-nav-top {
    top: 0;
}

.page-nav-bottom {
    bottom: 0;
}

.nav-zone-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

/* Navigation Zones - Mobile */
@media (max-width: 480px) {
    .page-nav-zone {
        height: 15%;
    }

    .nav-zone-text {
        font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    }
}

/* ============================================
   15. UTILITY CLASSES
   ============================================ */
.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

/* ============================================
   16. ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(-15deg) translateY(0); }
    50% { transform: translate(-50%, -50%) rotate(-15deg) translateY(-10px); }
}

@keyframes bounce {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(-15px); }
}

@keyframes fadeInStagger {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.5), 0 0 40px rgba(33, 150, 243, 0.3);
    }
    50% {
        box-shadow: 0 0 35px rgba(76, 175, 80, 0.8), 0 0 60px rgba(33, 150, 243, 0.5);
    }
}

/* ============================================
   17. GLOBAL MOBILE OVERRIDES
   ============================================ */
@media (max-width: 768px) {
    .page[data-page="1"] .hero,
    .page[data-page="2"] .hero,
    .page[data-page="3"] .hero {
        margin-left: 40px;
        width: 75%;
    }

    .page[data-page="1"] .subtext,
    .page[data-page="2"] .subtext,
    .page[data-page="3"] .subtext {
        margin-left: 40px;
        width: 75%;
    }

    .page[data-page="1"] .text-carousel-nav {
        margin-left: 40px;
        width: 75%;
        padding: 12px 16px;
    }
}
