/* ===================================
   GIFT CARD PAGE STYLES - PREMIUM REDESIGN
   Jassistays - Authentic Moroccan Hospitality
   =================================== */

/* Variables & Tools */
:root {
    --gold-primary: #D4A574;
    --gold-dark: #B8936A;
    --gold-light: #E8C9A8;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-gray: #6B6B6B;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(212, 165, 116, 0.2);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 16px 48px rgba(212, 165, 116, 0.25);
    --shadow-deep: 0 24px 64px rgba(0, 0, 0, 0.12);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmerEffect {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Base Body Update for fluidity */
body {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    height: 65vh;
    min-height: 600px;
    background: url('../../assets/images/gift-cart/best-beaches-in-morocco.webp') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(212, 165, 116, 0.65) 100%);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #E8C9A8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* ================= GIFT CARD SELECTION ================= */
.gift-card-section {
    padding: 7rem 0 5rem;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
}

/* Add a subtle top negative margin to pull it up into the hero */
.gift-card-section .container {
    position: relative;
    z-index: 10;
    margin-top: -6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 3px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* Premium Gift Cards Grid */
.gift-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    perspective: 1000px;
}

/* Shimmer effect for selection emphasis */
@keyframes goldShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.gift-card-item.selected::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 165, 116, 0.4),
        transparent
    );
    animation: goldShimmer 2s infinite;
}

.gift-card-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 2px solid #F5F5F5;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Holographic shine */
.gift-card-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 55%
    );
    transform: rotate(30deg);
    transition: all 0.6s;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.gift-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.2);
    border-color: var(--gold-light);
}

.gift-card-item:hover::before {
    opacity: 1;
    left: 100%;
    top: 100%;
    transition: left 0.8s ease-in-out, top 0.8s ease-in-out;
}

.gift-card-item.selected {
    border-color: var(--gold-primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.3), 0 16px 32px rgba(212, 165, 116, 0.2);
    transform: translateY(-4px);
}

.gift-card-item.popular {
    border-top: 5px solid var(--gold-primary);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #1a1a1a;
    padding: 0.5rem 3rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
    z-index: 2;
}

.gift-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a1a1a;
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.25);
    position: relative;
    z-index: 2;
}

.gift-card-amount {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.gift-card-description {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.gift-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.gift-card-features li {
    font-size: 0.95rem;
    color: #555;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-card-features li:last-child {
    border-bottom: none;
}

.gift-card-features i {
    color: var(--gold-primary);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.btn-select-card {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.btn-select-card:hover {
    background: var(--gold-primary);
    color: #1a1a1a;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
    transform: translateY(-2px);
}

.gift-card-item.selected .btn-select-card {
    background: var(--gold-primary);
    color: #1a1a1a;
}

/* Custom Amount Styling */
.custom-amount-section {
    background: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid #F5F5F5;
    position: relative;
    overflow: hidden;
}

.custom-amount-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
}

.custom-amount-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    text-align: center;
}

.custom-amount-input {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--bg-light);
    padding: 0.6rem;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.custom-amount-input:focus-within {
    border-color: rgba(193, 121, 86, 0.3);
    background: white;
    box-shadow: 0 0 0 5px rgba(193, 121, 86, 0.05);
}

.custom-amount-input .currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
    padding-left: 1rem;
}

.custom-amount-input input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 0.4rem;
    outline: none;
    font-family: 'Playfair Display', serif;
}

.btn-add-custom {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #1a1a1a;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.btn-add-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

/* ================= PERSONALIZATION SECTION (CLEAN MINIMALIST) ================= */
.personalization-section {
    padding: 6rem 0;
    background: white;
}

.personalization-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

/* Minimalist Form */
.personalization-form-wrapper {
    background: transparent;
}

.section-title-minimal {
    margin-bottom: 2.5rem;
}

.section-title-minimal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-title-minimal p {
    color: var(--text-gray);
    font-size: 1rem;
}

.clean-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.clean-group {
    margin-bottom: 1.5rem;
}

.clean-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clean-group input,
.clean-group textarea {
    width: 100%;
    padding: 1rem;
    background: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: inherit;
    transition: all 0.2s ease;
}

.clean-group textarea {
    resize: vertical;
    min-height: 100px;
}

.clean-group input:focus,
.clean-group textarea:focus {
    outline: none;
    background: white;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

.clean-delivery-options {
    display: flex;
    gap: 1rem;
}

.clean-radio {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.clean-radio:has(input:checked) {
    background: white;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.2);
}

.clean-radio input {
    accent-color: var(--gold-primary);
    width: auto;
    cursor: pointer;
}

.clean-date-input {
    margin-top: 0.75rem;
}

/* For Myself Toggle */
.for-myself-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08), rgba(212, 165, 116, 0.04));
    border: 2px solid var(--gold-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.for-myself-toggle:hover {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.12), rgba(212, 165, 116, 0.06));
    border-color: var(--gold-primary);
}

.for-myself-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--gold-primary);
    cursor: pointer;
}

.for-myself-toggle span {
    flex: 1;
}

/* Hide recipient section when buying for self */
.recipient-section.hidden {
    display: none;
}

/* Minimalist Summary */
.clean-summary {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 1rem;
}

.summary-line.total-line {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eaeaea;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.btn-clean-submit {
    width: 100%;
    padding: 1.3rem;
    background: var(--gold-primary);
    color: #1a1a1a;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.btn-clean-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 165, 116, 0.4);
}

/* Modern Premium Card Design */
.clean-preview-wrapper {
    position: sticky;
    top: 120px;
}

.clean-gift-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 24px 48px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

/* Elegant moroccan pattern overlay */
.clean-gift-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.06) 0%, transparent 50%);    pointer-events: none;
}

/* Logo watermark */
.clean-gift-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: url('../../assets/images/Jassistays.avif') center/contain no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.card-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-brand::before {
    content: '';
    width: 50px;
    height: 50px;
    background: url('../../assets/images/Jassistays.avif') center/contain no-repeat;
    display: block;
}

.card-brand::after {
    
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-light);
}

.card-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-body {
    margin: 2rem 0;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
}

.card-to {
    margin-bottom: 2rem;
}

.card-to .value {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.25);
    color: var(--gold-light);
}

.card-message {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-style: italic;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--gold-primary);
}

.card-message i {
    font-size: 0.75rem;
}

.card-message span {
    display: inline-block;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card-from .value {
    font-size: 1.1rem;
}

.card-validity {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Base adjustment for smaller screens */
@media (max-width: 992px) {
    .personalization-content {
        grid-template-columns: 1fr;
    }
    .clean-preview-wrapper {
        position: static;
        margin-top: 2rem;
    }
}
@media (max-width: 768px) {
    .clean-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-row.split-options {
        grid-template-columns: 1fr;
    }
}


/* ================= HOW IT WORKS ================= */
.how-it-works-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.how-it-works-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid #F5F5F5;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.35);
    border: 4px solid white;
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 1.5rem auto 1.5rem;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold-primary);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
    transform: rotate(0deg);
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* ================= BENEFITS SECTION ================= */
.benefits-section {
    padding: 7rem 0;
    background: white;
}

.benefits-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #F5F5F5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-light);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(212,165,116,0.15), rgba(212,165,116,0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-primary);
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #1a1a1a;
    transform: scale(1.05);
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 7rem 0;
    background: var(--bg-light);
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 2px solid #F5F5F5;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold-light);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-question i {
    color: var(--text-gray);
    transition: transform 0.3s ease;
    background: #F5F5F5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--gold-primary);
    color: #1a1a1a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ================= CTA SECTION ================= */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(212, 165, 116, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3.5rem;
    color: #e2e2e2;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 1.4rem 3.5rem;
    background: var(--gold-primary);
    color: #1a1a1a;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(212, 165, 116, 0.4);
    background: var(--gold-light);
}

.btn-cta i {
    font-size: 1.3rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1da851);
    color: white;
    border: none;
}

.btn-whatsapp i {
    color: white;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #2ae070, #22c761);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1200px) {
    .personalization-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .clean-preview-wrapper {
        position: static;
        max-width: 750px;
        
    }
}

@media (max-width: 992px) {
    .hero-content h1 { font-size: 3.5rem; }
    .section-header h2, .how-it-works-section h2, .benefits-section h2, .faq-section h2, .cta-content h2 { font-size: 2.8rem; }
    .gift-card-amount { font-size: 3.5rem; }
    
    .clean-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .hero-section { 
        min-height: 500px; 
        height: 55vh;
        background-attachment: scroll !important;
    }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.1rem; }
    
    .section-header h2, .how-it-works-section h2, .benefits-section h2, .faq-section h2, .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .gift-card-section .container { margin-top: -3rem; }
    .section-header { padding: 2rem 1.5rem; }
    
    .gift-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Force 2 columns for steps and benefits on mobile */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .step-card {
        padding: 2rem 1rem;
    }
    
    .step-card h3 {
        font-size: 1.2rem;
    }
    
    .step-card p {
        font-size: 0.9rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    /* Form optimizations */
    .for-myself-toggle {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .for-myself-toggle input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }
    
    .clean-group label {
        font-size: 0.75rem;
    }
    
    .clean-group input,
    .clean-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .clean-delivery-options {
        gap: 0.5rem;
    }
    
    .clean-radio {
        padding: 0.6rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .clean-summary {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .summary-line {
        font-size: 0.9rem;
    }
    
    .summary-line.total-line {
        font-size: 1.1rem;
    }
    
    .btn-clean-submit {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .clean-preview-wrapper {
        padding: 0 0.625rem;
    }
    
    .clean-gift-card { 
        padding: 3rem 2.5rem; 
        min-height: 550px; 
        border-radius: 16px;
    }
    
    .card-amount { font-size: 2.5rem; }
    .card-to .value { font-size: 1.5rem; }
    .card-validity { font-size: 0.75rem; letter-spacing: 0.5px; }
    .card-footer {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
        gap: 0.75rem;
    }
    .card-from {
        min-width: 0;
    }
    .card-validity {
        white-space: nowrap;
        text-align: right;
        line-height: 1.2;
    }
    
    .custom-amount-section { 
        padding: 1.5rem 1.2rem;
        max-width: 100%;
    }
    
    .custom-amount-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .custom-amount-input { 
        flex-direction: column; 
        border-radius: 12px;
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .custom-amount-input .currency {
        font-size: 1.1rem;
        padding-left: 0.3rem;
    }
    
    .custom-amount-input input {
        font-size: 1.1rem;
        padding: 0.6rem 0.3rem;
        text-align: center;
    }
    
    .btn-add-custom { 
        width: 100%; 
        border-radius: 25px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-buttons { 
        flex-direction: column; 
        align-items: stretch; 
        gap: 1rem; 
    }
    
    .btn-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        background-attachment: scroll !important;
        background-size: cover;
        background-position: center;
    }
    
    .clean-preview-wrapper {
        padding: 0 0.625rem;
    }
    
    .hero-content h1 { font-size: 2.2rem; }
    .gift-card-amount { font-size: 3rem; }
    .gift-card-icon { width: 70px; height: 70px; font-size: 1.8rem; }
    
    /* Maintain 2 columns but with tighter spacing */
    .steps-grid {
        gap: 1rem;
    }
    
    .benefits-grid {
        gap: 1rem;
    }
    
    .step-card { 
        padding: 1.8rem 0.8rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin: 1rem auto 1rem;
    }
    
    .step-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .benefit-card { 
        padding: 1.5rem 0.8rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Even more compact forms */
    .for-myself-toggle {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .for-myself-toggle input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
    
    .clean-group label {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
    
    .clean-group input,
    .clean-group textarea {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .clean-radio {
        padding: 0.5rem 0.4rem;
        font-size: 0.8rem;
    }
    
    .clean-delivery-options {
        gap: 0.4rem;
    }
    
    .clean-summary {
        padding: 1rem;
        margin: 1.2rem 0;
    }
    
    .summary-line {
        font-size: 0.85rem;
    }
    
    .summary-line.total-line {
        font-size: 1rem;
    }
    
    .btn-clean-submit {
        padding: 0.9rem 0.8rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .faq-question { padding: 1.2rem 1.5rem; font-size: 1rem; }
    
    .custom-amount-section { 
        padding: 1.2rem 0.8rem;
        margin: 0 0.5rem;
    }
    
    .custom-amount-section h3 { 
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .custom-amount-input {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .custom-amount-input .currency {
        font-size: 1rem;
        padding-left: 0.3rem;
    }
    
    .custom-amount-input input {
        font-size: 1rem;
        padding: 0.5rem 0.3rem;
    }
    
    .btn-add-custom {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .clean-gift-card { padding: 2.8rem 2.2rem; min-height: 550px; border-radius: 16px; }
    .card-brand::before { width: 45px; height: 45px; }
    .card-brand::after { font-size: 0.8rem; }
    .card-amount { font-size: 2.2rem; }
    .card-to .value { font-size: 1.4rem; }
    .card-message { font-size: 0.95rem; padding: 1rem; }
    .card-footer {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
        gap: 0.6rem;
    }
    .card-from {
        min-width: 0;
    }
    .card-from .value {
        font-size: 1rem;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }
    .card-validity {
        font-size: 0.68rem;
        letter-spacing: 0.35px;
        white-space: nowrap;
        text-align: right;
        line-height: 1.2;
    }
}
