/* ==========================================================================
   SOS Guitar - Main Stylesheet
   ========================================================================== */

/* ==========================================================================
   Fonts
   ========================================================================== */

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/bebas-neue.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit-variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --pink: #FF00AA;
    --pink-glow: rgba(255, 0, 170, 0.3);
    --white: #ffffff;
    --gray: #888888;
    --light-gray: #cccccc;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 100px;
}

@media (min-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

/* Larger base size for big screens */
@media (min-width: 1600px) {
    body {
        font-size: 18px;
    }
}

@media (min-width: 1920px) {
    body {
        font-size: 20px;
    }
}

@media (min-width: 2560px) {
    body {
        font-size: 22px;
    }
}

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

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

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
        padding: 0 48px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--pink);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s;
}

.skip-link:focus {
    top: 0;
    opacity: 1;
}

:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 2px;
}

/* ==========================================================================
   Header
   ========================================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 0;
    background: var(--dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    line-height: 1;
}

@media (min-width: 768px) {
    .logo {
        font-size: 2.1rem;
        gap: 14px;
    }
}

@media (min-width: 1600px) {
    .logo {
        font-size: 2.5rem;
        letter-spacing: 1px;
        gap: 16px;
    }
}

.logo-img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: block;
}

@media (min-width: 768px) {
    .logo-img {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 1600px) {
    .logo-img {
        width: 60px;
        height: 60px;
    }
}

.logo-text {
    display: none;
    white-space: nowrap;
}

.logo-text span {
    margin-left: 2px;
}

@media (min-width: 768px) {
    .logo-text span {
        margin-left: 3px;
    }
}

.logo-text span {
    color: var(--pink);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.menu-toggle:hover span {
    background: var(--black);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

/* Navigation - Mobile */
@media (max-width: 767px) {
    nav {
        display: none;
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: #FF00AA;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 9998;
        overflow: hidden;
        padding: 80px 20px 40px;
    }

    nav.active {
        display: flex;
    }

    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--white);
        cursor: pointer;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border-radius: 50%;
    }

    .nav-close:hover,
    .nav-close:focus {
        color: var(--black);
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    .nav-close svg {
        width: 32px;
        height: 32px;
    }

    nav a {
        color: var(--white);
        font-size: 1.4rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        padding: 12px 24px;
    }

    nav a:hover,
    nav a:focus {
        color: var(--white);
        background: rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        outline: none;
    }
}

/* Hide close button on desktop */
@media (min-width: 768px) {
    .nav-close {
        display: none;
    }
}

/* Navigation - Desktop */
@media (min-width: 768px) {
    nav {
        display: flex;
        position: static;
        background: none;
        flex-direction: row;
        gap: 0;
        width: auto;
        height: auto;
    }

    nav a {
        font-size: 0.85rem;
        margin-left: 28px;
        padding: 8px 12px;
        color: var(--white);
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    nav a:hover,
    nav a:focus {
        color: var(--white);
        background: var(--pink);
        box-shadow: 0 4px 15px rgba(255, 0, 170, 0.4);
    }
}

@media (min-width: 1024px) {
    nav a {
        font-size: 0.9rem;
        margin-left: 32px;
    }
}

@media (min-width: 1600px) {
    nav a {
        font-size: 1.05rem;
        margin-left: 40px;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    padding: 120px 0 80px;
}

@media (min-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 80px 0;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }
}

.hero-bg {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: calc(100% + 200px);
    z-index: -1;
}

@media (min-width: 768px) {
    .hero-bg {
        top: -150px;
        height: calc(100% + 300px);
    }
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
    }
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 12vw, 7rem);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .hero h1 {
        letter-spacing: 3px;
        margin-bottom: 24px;
    }
}

@media (min-width: 1600px) {
    .hero h1 {
        font-size: clamp(4rem, 10vw, 9rem);
        letter-spacing: 4px;
    }
}

.hero h1 span {
    color: var(--pink);
}

.hero p {
    font-size: 1rem;
    color: var(--light-gray);
    margin-bottom: 32px;
    max-width: 500px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero p {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
}

@media (min-width: 1600px) {
    .hero p {
        font-size: 1.4rem;
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--pink);
    color: var(--white);
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    touch-action: manipulation;
}

@media (min-width: 768px) {
    .btn {
        padding: 16px 36px;
        font-size: 0.95rem;
        letter-spacing: 2px;
        gap: 12px;
    }
}

@media (min-width: 1600px) {
    .btn {
        padding: 20px 48px;
        font-size: 1.1rem;
        min-height: 56px;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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


.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--pink-glow);
    outline: none;
}

.btn:active {
    transform: translateY(0);
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ==========================================================================
   Sections
   ========================================================================== */

section {
    padding: 80px 0;
}

.section-padding {
    padding: 80px 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 100px 0;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 120px 0;
    }
}

/* Guitar string pattern divider */
.section-header::after {
    content: '';
    display: block;
    width: 100%;
    max-width: 200px;
    height: 1px;
    margin: 24px auto 0;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(255, 0, 170, 0.2) 20%, 
        rgba(255, 0, 170, 0.4) 50%, 
        rgba(255, 0, 170, 0.2) 80%, 
        transparent 100%);
    position: relative;
}

.section-header::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 200px;
    height: 1px;
    margin: 0 auto 24px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(255, 0, 170, 0.2) 20%, 
        rgba(255, 0, 170, 0.4) 50%, 
        rgba(255, 0, 170, 0.2) 80%, 
        transparent 100%);
    position: relative;
}

@media (min-width: 768px) {
    .section-header::after,
    .section-header::before {
        max-width: 300px;
    }
}


/* Musical note accent for feature cards */
.feature-card {
    position: relative;
}

.feature-card::after {
    content: '♪';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: rgba(255, 0, 170, 0.1);
    font-family: serif;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: rotate(-15deg);
}

.feature-card:hover::after {
    opacity: 1;
    transform: rotate(0deg);
}

@media (min-width: 768px) {
    .feature-card::after {
        font-size: 2rem;
        top: 24px;
        right: 24px;
    }
}

@media (min-width: 768px) {
    section {
        padding: 100px 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 120px 0;
    }
}

@media (min-width: 1600px) {
    section {
        padding: 160px 0;
    }
}

@media (min-width: 1920px) {
    section {
        padding: 180px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 64px;
    }
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 80px;
    }
}

.section-label {
    font-size: 0.8rem;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

@media (min-width: 768px) {
    .section-label {
        font-size: 0.85rem;
        letter-spacing: 3px;
        margin-bottom: 16px;
    }
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .section-title {
        letter-spacing: 2px;
    }
}

@media (min-width: 1600px) {
    .section-title {
        font-size: clamp(2.5rem, 5vw, 5rem);
        letter-spacing: 3px;
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}

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

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.about-image {
    position: relative;
    order: -1;
}

@media (min-width: 1024px) {
    .about-image {
        order: 0;
    }
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.about-image:hover img {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .about-image img {
        height: 450px;
        border-radius: 16px;
    }
}

@media (min-width: 1024px) {
    .about-image img {
        height: 500px;
        border-radius: 20px;
    }
}

/* Homepage about section - circular image */
#about .about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

#about .about-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--pink);
    box-shadow: 0 0 30px var(--pink-glow), 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    will-change: transform;
}

#about .about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 0 40px var(--pink-glow), 0 15px 50px rgba(0, 0, 0, 0.6);
}

@media (min-width: 640px) {
    #about .about-image img {
        width: 320px;
        height: 320px;
        border-width: 4px;
    }
}

@media (min-width: 768px) {
    #about .about-image img {
        width: 380px;
        height: 380px;
    }
}

@media (min-width: 1024px) {
    #about .about-image img {
        width: 420px;
        height: 420px;
    }
}

@media (min-width: 1280px) {
    #about .about-image img {
        width: 480px;
        height: 480px;
    }
}

.about-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .about-text h2 {
        letter-spacing: 2px;
        margin-bottom: 24px;
    }
}

.about-text h2 span {
    color: var(--pink);
}

.about-text p {
    color: var(--light-gray);
    margin-bottom: 16px;
    font-weight: 300;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .about-text p {
        margin-bottom: 20px;
        font-size: 1rem;
    }
}

@media (min-width: 1600px) {
    .about-text p {
        font-size: 1.15rem;
        margin-bottom: 24px;
    }
}

.about-text strong {
    color: var(--white);
    font-weight: 500;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .credentials {
        flex-direction: row;
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .credentials {
        margin-top: 32px;
        padding-top: 32px;
    }
}

.credential {
    flex: 1;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--pink);
}

@media (min-width: 768px) {
    .credential {
        padding: 20px;
    }
}

.credential span {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .credential span {
        font-size: 0.75rem;
    }
}

.credential p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--white);
}

@media (min-width: 768px) {
    .credential p {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features {
    background: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

.feature-card {
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .feature-card {
        padding: 40px 24px;
    }
}

.feature-card:hover,
.feature-card:focus-within {
    background: rgba(255, 0, 170, 0.05);
    border-color: var(--pink);
    transform: translateY(-8px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

@media (min-width: 768px) {
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 24px;
        font-size: 1.8rem;
    }
}

.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
}

@media (min-width: 1600px) {
    .feature-card h3 {
        font-size: 1.5rem;
    }
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 300;
}

@media (min-width: 768px) {
    .feature-card p {
        font-size: 0.9rem;
    }
}

@media (min-width: 1600px) {
    .feature-card p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
    background: var(--black);
    position: relative;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .services-list {
        gap: 40px;
    }
}

.service-item {
    padding: 36px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .service-item {
        padding: 48px 32px;
    }
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--pink);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover::before,
.service-item:focus-within::before {
    transform: scaleX(1);
}

.service-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: rgba(255, 0, 170, 0.15);
    position: absolute;
    top: 12px;
    right: 20px;
}


@media (min-width: 768px) {
    .service-number {
        font-size: 4rem;
        top: 16px;
        right: 24px;
    }
}

.service-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .service-item h3 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
}

@media (min-width: 1600px) {
    .service-item h3 {
        font-size: 2.1rem;
    }
}

.service-item p {
    color: var(--gray);
    font-weight: 300;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .service-item p {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials {
    background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
    padding: 80px 0;
}

@media (min-width: 768px) {
    .testimonials {
        padding: 100px 0;
    }
}

@media (min-width: 1024px) {
    .testimonials {
        padding: 120px 0;
    }
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 8px 0;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 6px;
}

.testimonials-track {
    display: flex;
    align-items: stretch;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    margin: 0;
}

@media (min-width: 768px) {
    .testimonial-card {
        min-width: 50%;
        max-width: 50%;
        padding: 32px;
    }
}

.testimonial-card::before {
    content: '"';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--pink);
    opacity: 0.2;
    position: absolute;
    top: 8px;
    left: 16px;
    line-height: 1;
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-card::before {
        font-size: 6rem;
        top: 16px;
        left: 24px;
    }
}

.testimonial-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    cursor: pointer;
    flex: 1;
}

.testimonial-link .testimonial-author-info span {
    color: var(--pink);
    transition: color 0.3s ease;
}

/* Hover effect for cards with links */
.testimonial-card:has(.testimonial-link):hover {
    border-color: var(--pink);
    box-shadow: 0 0 20px var(--pink-glow), 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.testimonial-card:has(.testimonial-link):hover .testimonial-author-info span {
    color: var(--white);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
    min-height: 0;
    margin-top: 0;
}

.testimonial-content blockquote {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 300;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    flex: 1;
}

.testimonial-content blockquote p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

@media (min-width: 768px) {
    .testimonial-content {
        gap: 20px;
    }
    
    .testimonial-content blockquote {
        font-size: 1rem;
        margin-bottom: 0;
        line-height: 1.7;
    }
}

@media (min-width: 1600px) {
    .testimonial-content blockquote {
        font-size: 1.1rem;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 10px;
    vertical-align: middle;
    margin-top: auto;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .testimonial-author {
        gap: 12px;
    }
}

.testimonial-author img,
.testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    box-sizing: border-box;
    display: block;
    margin: 0;
    padding: 0;
}

.testimonial-author img {
    object-fit: cover;
    border: 2px solid var(--pink);
}

.testimonial-avatar-placeholder {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--pink) !important;
    color: var(--white) !important;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    border: 2px solid var(--pink);
}

.testimonial-avatar-placeholder span {
    display: block;
    line-height: 1;
}

@media (min-width: 768px) {
    .testimonial-author img,
    .testimonial-avatar-placeholder {
        width: 56px;
        height: 56px;
        min-width: 56px;
        min-height: 56px;
        max-width: 56px;
        max-height: 56px;
    }
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    line-height: 1.2;
    flex: 1;
    min-height: 0;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.testimonial-author-info cite {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-style: normal;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    vertical-align: baseline;
}

@media (min-width: 768px) {
    .testimonial-author-info cite {
        font-size: 1.2rem;
    }
}

.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--pink);
    display: block;
    line-height: 1.2;
    margin: 2px 0 0 0;
    padding: 0;
    vertical-align: baseline;
}

@media (min-width: 768px) {
    .testimonial-author-info span {
        font-size: 0.85rem;
    }
}

/* Carousel Controls */
.carousel-btn {
    position: static;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.carousel-btn:hover,
.carousel-btn:focus {
    background: var(--pink);
    border-color: var(--pink);
    box-shadow: 0 4px 15px rgba(255, 0, 170, 0.4);
    outline: none;
}

.carousel-controls-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator:hover,
.carousel-indicator:focus {
    background: rgba(255, 255, 255, 0.5);
    outline: none;
}

.carousel-indicator.active {
    background: var(--pink);
    width: 32px;
    border-radius: 6px;
}

/* ==========================================================================
   Video Section
   ========================================================================== */

.video-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
    padding: 100px 0;
}

@media (min-width: 768px) {
    .video-section {
        padding: 140px 0;
    }
}

.video-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .video-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 80px;
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 2px;
    margin-bottom: 24px;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .video-text h2 {
        letter-spacing: 2px;
        margin-bottom: 24px;
    }
}

@media (min-width: 1600px) {
    .video-text h2 {
        font-size: clamp(3rem, 6vw, 5rem);
        letter-spacing: 3px;
    }
}

.video-text h2 span {
    color: var(--pink);
}

.video-text p {
    color: var(--light-gray);
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .video-text p {
        font-size: 1.15rem;
        margin-bottom: 24px;
    }
}

@media (min-width: 1600px) {
    .video-text p {
        font-size: 1.3rem;
    }
}

.video-text .btn {
    margin-top: 20px;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */

.gallery {
    background: var(--black);
    padding: 60px 0;
}

@media (min-width: 768px) {
    .gallery {
        padding: 80px 0;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    max-height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    filter: grayscale(30%);
}

.gallery-item:hover img,
.gallery-item:focus-within img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 170, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after,
.gallery-item:focus-within::after {
    opacity: 1;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta {
    background: linear-gradient(135deg, var(--pink) 0%, #cc0088 100%);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta {
        padding: 100px 0;
    }
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.03) 20px,
        rgba(255, 255, 255, 0.03) 40px
    );
    animation: moveStripes 20s linear infinite;
}

@keyframes moveStripes {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cta::before {
        animation: none;
    }
}

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

.cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .cta h2 {
        letter-spacing: 2px;
        margin-bottom: 16px;
    }
}

.cta p {
    font-size: 1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .cta p {
        font-size: 1.15rem;
        margin-bottom: 40px;
    }
}

@media (min-width: 1600px) {
    .cta h2 {
        font-size: clamp(2.5rem, 5vw, 5rem);
    }
    
    .cta p {
        font-size: 1.3rem;
    }
}

.cta .btn {
    background: var(--white);
    color: var(--pink);
}

.cta .btn:hover,
.cta .btn:focus {
    background: var(--black);
    color: var(--white);
}

.cta .btn-whatsapp {
    background: var(--white);
    border: 2px solid transparent;
    color: var(--pink);
}

.cta .btn-whatsapp:hover,
.cta .btn-whatsapp:focus {
    background: var(--black);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
    background: var(--dark);
    padding: 60px 0 32px;
}

@media (min-width: 768px) {
    footer {
        padding: 80px 0 40px;
    }
}

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

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px;
        margin-bottom: 60px;
    }
}

.footer-brand .logo {
    font-size: 1.8rem;
    display: inline-block;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .footer-brand .logo {
        font-size: 2rem;
        margin-bottom: 20px;
    }
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    max-width: 280px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .footer-brand p {
        font-size: 0.95rem;
    }
}

.footer-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: normal;
}

.follow-heading {
    margin-top: 24px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .footer-col ul li {
        margin-bottom: 12px;
    }
}

.footer-col ul li a {
    color: var(--gray);
    font-size: 0.85rem;
    transition: color 0.3s ease;
    padding: 4px 0;
    display: inline-block;
}

@media (min-width: 768px) {
    .footer-col ul li a {
        font-size: 0.9rem;
    }
}

.footer-col ul li a:hover,
.footer-col ul li a:focus {
    color: var(--pink);
}

.footer-col p {
    color: var(--gray);
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-col p {
        font-size: 0.9rem;
    }
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .social-links {
        gap: 14px;
    }
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover,
.social-links a:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 170, 0.2);
}

.social-links a svg {
    width: 18px;
    height: 18px;
    color: var(--pink);
    transition: color 0.3s ease;
}

.social-links a:hover svg,
.social-links a:focus svg {
    color: var(--pink);
}

.email-link {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.email-link svg {
    color: var(--pink);
    flex-shrink: 0;
}

.email-link:hover,
.email-link:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 170, 0.2);
    text-decoration: none;
}

@media (min-width: 768px) {
    .email-link {
        margin-top: 0;
        font-size: 0.9rem;
    }
}


.whatsapp-link {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.whatsapp-link svg {
    color: var(--pink);
    flex-shrink: 0;
}

.whatsapp-link:hover,
.whatsapp-link:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 170, 0.2);
    text-decoration: none;
}

@media (min-width: 768px) {
    .whatsapp-link {
        font-size: 0.9rem;
    }
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        padding-top: 40px;
    }
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.footer-links a {
    color: var(--gray);
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

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

@media (min-width: 768px) {
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */

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

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation: fadeInUp 0.6s ease forwards;
}

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

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

.delay-3 {
    animation-delay: 0.3s;
}

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

/* ==========================================================================
   Lessons Page
   ========================================================================== */

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
    text-align: center;
}

.page-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.page-hero h1 span {
    color: var(--pink);
}

.page-hero p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.lessons-section {
    background: var(--black);
}

.lessons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
}

@media (min-width: 768px) {
    .lessons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.lesson-card {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: stretch;
}

.lesson-card:hover {
    border-color: var(--pink);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 0, 170, 0.15);
}

.lesson-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.lesson-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.lesson-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.lesson-details {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    flex-grow: 1;
}

.lesson-details li {
    color: var(--gray);
    font-size: 0.9rem;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lesson-details li::before {
    content: '✓';
    color: var(--pink);
    position: absolute;
    left: 0;
    font-weight: 600;
}

.lesson-pricing {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.price-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 24px;
    text-align: center;
    flex: 1;
}

.price-option.featured {
    background: rgba(255, 0, 170, 0.1);
    border-color: var(--pink);
}

.price-option.selected {
    background: rgba(255, 0, 170, 0.15) !important;
    border-color: var(--pink) !important;
    border-width: 2px !important;
    box-shadow: 0 0 20px rgba(255, 0, 170, 0.2) !important;
    transform: scale(1.02);
}

.price-option {
    transition: all 0.3s ease;
}

.price-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.price-option .duration {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.price-option .price {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
}

.best-value-badge {
    display: block;
    color: var(--pink);
    font-weight: 600;
    font-size: 0.7rem;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.lesson-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* What's Included Section */
.included-section {
    background: var(--dark);
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .included-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.included-item {
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.included-item:hover {
    border-color: rgba(255, 0, 170, 0.3);
}

.included-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.included-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.included-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Active nav link - white on pink header */
nav a.active {
    color: var(--white);
}

/* ==========================================================================
   Gift Cards Page
   ========================================================================== */

.gift-cards-section {
    background: var(--black);
}

.gift-card-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .gift-card-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }
}

.gift-card-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.gift-card-info > p {
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.gift-features {
    list-style: none;
    margin-bottom: 40px;
}

.gift-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    color: var(--light-gray);
}

.gift-options h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.gift-option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 400px) {
    .gift-option-grid {
        grid-template-columns: 1fr;
    }
}

.gift-option {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.gift-option.featured {
    border-color: var(--pink);
    background: rgba(255, 0, 170, 0.08);
}

.gift-duration {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.gift-price {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
}

.gift-save {
    display: block;
    color: var(--pink);
    font-size: 0.8rem;
    margin-top: 4px;
}

.purchase-card {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
}

@media (min-width: 768px) {
    .purchase-card {
        padding: 32px;
    }
}

.purchase-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .purchase-card h3 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }
}

.purchase-card > p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .purchase-card > p {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }
}

.paypal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 768px) {
    .paypal-buttons {
        gap: 16px;
    }
}

.paypal-option {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

@media (min-width: 480px) {
    .paypal-option {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.paypal-option span {
    font-size: 0.95rem;
    color: var(--light-gray);
    font-weight: 500;
    display: block;
}

@media (min-width: 480px) {
    .paypal-option span {
        flex: 1;
    }
}

.paypal-option form {
    width: 100%;
}

@media (min-width: 480px) {
    .paypal-option form {
        width: auto;
        flex-shrink: 0;
    }
}

.btn-paypal {
    background: var(--pink);
    border-color: var(--pink);
    width: 100%;
    min-width: 140px;
}

@media (min-width: 480px) {
    .btn-paypal {
        width: auto;
    }
}

.btn-paypal:hover,
.btn-paypal:focus {
    background: #cc0088;
    border-color: #cc0088;
    box-shadow: 0 10px 30px rgba(255, 0, 170, 0.4);
}

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

.paypal-note {
    margin-top: 20px;
    color: var(--gray);
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .paypal-note {
        margin-top: 24px;
        font-size: 0.85rem;
    }
}

.terms-note {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--gray);
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .terms-note {
        margin-top: 16px;
        font-size: 0.85rem;
    }
}

.terms-note a {
    color: var(--pink);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-note a:hover,
.terms-note a:focus {
    color: var(--white);
}

/* ==========================================================================
   Legal / Privacy Page
   ========================================================================== */

.legal-content {
    background: var(--black);
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text .last-updated {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--white);
}

.legal-text p {
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-text ul {
    color: var(--light-gray);
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-text ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-text a {
    color: var(--pink);
}

.legal-text a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq {
    background: var(--dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .faq-list {
        gap: 24px;
    }
}

.faq-item {
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0;
    transition: border-color 0.2s ease, box-shadow 0.3s ease;
    overflow: visible;
    will-change: box-shadow, border-color;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position: relative;
}

.faq-item.active {
    border-color: var(--pink);
    border-width: 1px;
    box-shadow: 0 4px 20px rgba(255, 0, 170, 0.15);
    transition: border-color 0.2s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .faq-item {
        border-radius: 16px;
    }
}

.faq-item:hover {
    border-color: rgba(255, 0, 170, 0.3);
}

.faq-item.active {
    border-color: var(--pink);
    border-width: 1px;
    box-shadow: 0 4px 20px rgba(255, 0, 170, 0.15);
}

.faq-question {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.3;
    background: none;
    border: none;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    outline: none;
    width: 100%;
    text-align: left;
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s ease;
    margin: 0;
    box-shadow: none;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 1.5rem;
        padding: 32px;
    }
}

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

.faq-question:focus {
    outline: 2px solid var(--pink);
    outline-offset: -2px;
}

/* Musical note accent for FAQ items */
.faq-item::before {
    content: '♪';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: rgba(255, 0, 170, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-family: serif;
}

.faq-item:hover::before {
    opacity: 1;
    transform: translateY(-50%) rotate(-15deg);
}

@media (min-width: 768px) {
    .faq-item::before {
        left: -40px;
        font-size: 1.5rem;
    }
}

.faq-question span {
    flex: 1;
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--pink);
}

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

.faq-answer {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
    padding-top: 0;
    padding-bottom: 0;
    border: none;
    margin: 0;
    margin-bottom: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    background: transparent;
    will-change: max-height;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

@media (min-width: 768px) {
    .faq-answer {
        font-size: 1rem;
        padding: 0 32px;
    }
}

.faq-item.active .faq-answer {
    padding-top: 0;
    padding-bottom: 24px;
    border: none;
    border-top: none;
    border-bottom: none;
    outline: none;
    box-shadow: none;
    margin-bottom: 0;
    background: transparent;
}

@media (min-width: 768px) {
    .faq-item.active .faq-answer {
        padding-top: 0;
        padding-bottom: 32px;
        margin-bottom: 0;
    }
}

.faq-answer p {
    margin: 0;
    padding-top: 0;
}

/* ==========================================================================
   Phone Link & CTA Buttons
   ========================================================================== */

.phone-link {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.phone-link svg {
    color: var(--pink);
    flex-shrink: 0;
}

.phone-link:hover,
.phone-link:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 170, 0.2);
    text-decoration: none;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        flex: 0 1 auto;
        min-width: 160px;
        width: auto;
    }
}

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

.btn-whatsapp {
    background: var(--pink);
    border: 2px solid var(--pink);
    color: var(--white);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background: var(--pink);
    border-color: var(--pink);
    box-shadow: 0 10px 40px var(--pink-glow);
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--white);
    color: var(--pink);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.cta .btn-outline:hover,
.cta .btn-outline:focus {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    box-shadow: 0 10px 40px var(--pink-glow);
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
    }

    .animate-on-scroll.animated {
        animation: none;
    }
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}

.whatsapp-float.hidden {
    display: none;
}

.whatsapp-float-close {
    background: rgba(17, 17, 17, 0.9);
    border: 2px solid var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s ease;
    position: absolute;
    bottom: -2px;
    right: -2px;
    z-index: 10000;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.whatsapp-float-close:hover,
.whatsapp-float-close:focus {
    opacity: 0.8;
    background: rgba(17, 17, 17, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
    outline: none;
}

.whatsapp-float-button {
    width: 60px;
    height: 60px;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--pink-glow);
    transition: all 0.3s ease;
    color: var(--white);
    position: relative;
}

.whatsapp-float-button:hover,
.whatsapp-float-button:focus {
    transform: scale(1.1);
    box-shadow: 0 6px 30px var(--pink-glow);
    background: var(--pink);
}

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

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-button {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float-button svg {
        width: 28px;
        height: 28px;
    }
}