/* =====================================================
   QR RESTAURANT LANDING PAGE STYLES
   Modern, Professional, Distinctive Design
   ===================================================== */

:root {
    /* Colors - Sophisticated Teal Palette */
    --primary: #0D9488;
    --primary-dark: #0F766E;
    --primary-light: #14B8A6;
    --secondary: #F59E0B;
    --accent: #EC4899;
    
    --bg-dark: #0F172A;
    --bg-light: #F8FAFC;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --border: #E2E8F0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
    --gradient-accent: linear-gradient(135deg, #EC4899 0%, #F59E0B 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    
    /* Spacing */
    --section-padding: 100px 20px;
    --container-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: #14B8A6;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: #CBD5E1;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* ============================================
   QR SYSTEM PACKAGES
   ============================================ */
.packages-section {
    padding: 6rem 2rem;
    text-align: center;
}

.section-title {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.packages-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.package-card {
    position: relative;
    width: 280px;
    padding: 2.5rem 1.5rem;
    border-radius: 2rem;
    background: linear-gradient(62deg, #00a6ff, #6f6f93);
    color: #fff;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    cursor: pointer;
    transition: 0.4s;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.active {
    outline: 3px solid #000000;
}

.package-card .icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.package-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 1.5rem 0;
}

.package-card li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.package-card li::before {
    content: "✔ ";
    color: #7ce9e6;
}

.package-card li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.package-card li.disabled::before {
    content: "✖ ";
    color: #ff7c7c;
}

.package-card label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.package-card select {
    width: 100%;
    padding: 0.6rem;
    border-radius: 0.7rem;
    border: none;
    outline: none;
    font-weight: 600;
    cursor: pointer;
}

.printer-badge {
    position: absolute;
    top: 15px;
    right: -40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffd700, #ffb700);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255,215,0,0.9), 0 0 40px rgba(255,215,0,0.6);
}

.printer-badge img {
    width: 55px;
}

.confirm-wrapper {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
    position: relative;
    z-index: 10;
}

#confirmBtn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 2rem;
    border: none;
    background: linear-gradient(1deg, #000000, #04a6e3);
    color: black;
    cursor: pointer;
    transition: 0.3s;
    display: none;
}

#confirmBtn:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 900px) { .packages-grid { gap: 1.5rem; } }
@media screen and (max-width: 600px) {
    .packages-grid { flex-direction: column; align-items: center; }
    .package-card { width: 90%; }
    .printer-badge { top: 10px; right: -30px; width: 60px; height: 60px; }
    .printer-badge img { width: 45px; }
}

/* ============================================
    QR OVERVIEW SECTION
    ============================================ */
.qr-overview-section {
    padding: 6rem 2rem;
    color: #fff;
    text-align: center;
}
.qr-overview-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #000, #00bdbd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.overview-item {
    background: linear-gradient(145deg, rgba(36, 51, 59, 0.8), rgba(11, 11, 46, 0.8));
    border: 2px solid rgba(124, 233, 230, 0.5);
    border-radius: 16px;
    padding: 2rem;
    transition: 0.3s;
}
.overview-item:hover {
    border-color: #7ce9e6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 233, 230, 0.3);
}
.overview-item h3 {
    color: #7ce9e6;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.overview-item p {
    color: #7b7b7b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================
   REVIEWS SECTION (AUTO SLIDER VERSION)
   ============================================ */

.reviews-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Title */
.reviews-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #7ce9e6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SLIDER WRAPPER */
.reviews-grid {
    overflow: hidden;
    position: relative;
}

/* TRACK (moving part) */
.reviews-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;

    animation: scrollLeft 25s linear infinite;
}

/* PAUSE ON HOVER */
.reviews-grid:hover .reviews-track {
    animation-play-state: paused;
}

/* PAUSE ON TOUCH (mobile) */
.reviews-grid:active .reviews-track {
    animation-play-state: paused;
}

/* ANIMATION */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* REVIEW CARD */
.review-card {
    width: 300px;       
    min-width: 300px;
    max-width: 300px;   

    flex-shrink: 0;

    background: linear-gradient(177deg, rgba(252, 254, 255, 0.85), rgba(78, 217, 239, 0.85));
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    padding: 2rem;
    transition: 0.3s;
}

/* HOVER EFFECT */
.review-card:hover {
    border-color: #7ce9e6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 233, 230, 0.3);
}

/* NAME */
.review-card h3 {
    color: #7ce9e6;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ROLE */
.review-card .name {
    color: #8b5cf6;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* TEXT */
.review-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* EDGE FADE EFFECT (PRO LOOK) */
.reviews-grid::before,
.reviews-grid::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-grid::before {
    left: 0;
    background: linear-gradient(to right, #0F172A, transparent);
}

.reviews-grid::after {
    right: 0;
    background: linear-gradient(to left, #0F172A, transparent);
}
.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .review-card {
        min-width: 250px;
    }

    .reviews-track {
        animation-duration: 35s; /* slower on mobile */
    }
}

/* ============================================
   CART SECTION
   ============================================ */
.cart-section { min-height: 100vh; padding: 4rem 2rem; background: rgb(29,40,41); }
.cart-container { max-width: 1200px; margin: 0 auto; }
.back-btn { padding: 0.7rem 1.5rem; background: rgba(124, 233, 230, 0.1); border: 1px solid rgba(124, 233, 230, 0.3); border-radius: 8px; color: #7ce9e6; cursor: pointer; font-size: 1rem; transition: 0.3s; margin-bottom: 2rem; }
.back-btn:hover { background: rgba(124, 233, 230, 0.2); transform: translateX(-5px); }
.cart-title { font-size: 2.5rem; color: #fff; margin-bottom: 3rem; text-align: center; background: linear-gradient(135deg, #7ce9e6, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cart-content { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.cart-item { background: linear-gradient(145deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.07)); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 2rem; transition: 0.3s; }
.cart-item:hover { border-color: rgba(124, 233, 230, 0.3); }
.cart-item h3 { color: #7ce9e6; font-size: 1.5rem; margin-bottom: 1rem; }
.item-domain-description { color: #ff0000; margin-bottom: 1.5rem; font-size: 0.95rem; }
.item-description { color: #7b7b7b; margin-bottom: 1.5rem; font-size: 0.95rem; }
.selected-package { background: linear-gradient(145deg, rgba(36, 51, 59, 0.8), rgba(11, 11, 46, 0.8)); border: 2px solid rgba(124, 233, 230, 0.5); }
.package-display { background: rgba(0, 0, 0, 0.3); border-radius: 12px; padding: 1.5rem; }
.package-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(124, 233, 230, 0.2); }
.package-name { font-size: 1.8rem; font-weight: 600; color: #7ce9e6; }
.package-receipt { background: rgba(124, 233, 230, 0.1); padding: 0.5rem 1rem; border-radius: 20px; color: #7ce9e6; font-size: 0.9rem; }
.package-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.8rem; }
.feature-item { display: flex; align-items: center; gap: 0.5rem; color: #fff; font-size: 0.95rem; }
.feature-item::before { content: "✓"; color: #7ce9e6; font-weight: bold; font-size: 1.2rem; }
.option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.option-card { position: relative; display: block; background: linear-gradient(145deg, rgba(36, 51, 59, 0.5), rgba(11, 11, 46, 0.5)); border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 1.5rem; cursor: pointer; transition: 0.3s; }
.option-card:hover { border-color: #7ce9e6; transform: translateY(-3px); box-shadow: 0 5px 20px rgba(124, 233, 230, 0.2); }
.option-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.option-card input[type="radio"]:checked ~ .option-content { border-left: 4px solid #7ce9e6; padding-left: 1.2rem; }
.option-card input[type="radio"]:checked { & ~ .option-content h4 { color: #7ce9e6; } }
.option-card.recommended { border-color: #7ce9e6; box-shadow: 0 0 20px rgba(124, 233, 230, 0.3); }
.badge { position: absolute; top: -12px; right: 15px; background: linear-gradient(135deg, #7ce9e6, #8b5cf6); color: #000; padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 700; box-shadow: 0 3px 10px rgba(124, 233, 230, 0.4); }
.option-content h4 { color: #fff; font-size: 1.2rem; margin-bottom: 0.8rem; font-weight: 600; }
.pricing { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
.original-price { color: #7b7b7b; font-size: 1.1rem; text-decoration: line-through; font-weight: 400; }
.offer-price { color: #7ce9e6; font-size: 1.8rem; font-weight: 700; }
.option-content .details { color: #8b5cf6; font-size: 0.9rem; margin-bottom: 0.5rem; font-weight: 500; }
.option-content .renew { color: #7b7b7b; font-size: 0.85rem; margin-top: 0.5rem; }
.gateway-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.gateway-card { min-height: 420px; }
.gateway-badge { display: inline-block; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 0.5rem; }
.free-badge { background: rgba(46, 213, 115, 0.2); color: #2ed573; border: 1px solid #2ed573; }
.standard-badge { background: rgba(255, 184, 0, 0.2); color: #ffb800; border: 1px solid #ffb800; }
.premium-badge { background: rgba(99, 110, 250, 0.2); color: #636efa; border: 1px solid #636efa; }
.gateway-features { margin: 1rem 0; padding: 1rem 0; border-top: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.feature-highlight { color: #7ce9e6; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.5rem; }
.gateway-features > p { color: #a0a0a0; font-size: 0.85rem; margin: 0.3rem 0; }
.feature-list { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.8rem; }
.feature-yes { color: #2ed573; font-size: 0.85rem; }
.feature-no { color: #666; font-size: 0.85rem; }
.plan-note { color: #8b5cf6; font-size: 0.85rem; font-style: italic; margin-top: 0.8rem; text-align: center; }

@media (min-width: 1024px) {
    .cart-container { max-width: 1400px; }
    .cart-content { grid-template-columns: 2fr 1fr; gap: 2.5rem; }
    .selected-package { grid-column: 1 / -1; }
    .cart-item:not(.selected-package) { grid-column: 1; }
    .cart-summary { grid-column: 2; grid-row: 2 / span 10; }
    .option-grid { grid-template-columns: repeat(3, 1fr); }
    .gateway-grid { grid-template-columns: repeat(3, 1fr); }
    .package-features { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1440px) { .cart-container { max-width: 1600px; } .modal-container { max-width: 900px; } }

.cart-container::-webkit-scrollbar { width: 8px; }
.cart-container::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.2); border-radius: 10px; }
.cart-container::-webkit-scrollbar-thumb { background: rgba(124, 233, 230, 0.3); border-radius: 10px; }
.cart-container::-webkit-scrollbar-thumb:hover { background: rgba(124, 233, 230, 0.5); }

.printer-select { width: 100%; padding: 1rem; background: rgba(255, 255, 255, 0.05); border: 2px solid rgba(124, 233, 230, 0.3); border-radius: 12px; color: #fff; font-size: 1rem; cursor: pointer; transition: 0.3s; font-weight: 500; }
.printer-select:focus { outline: none; border-color: #7ce9e6; background: rgba(124, 233, 230, 0.05); box-shadow: 0 0 0 3px rgba(124, 233, 230, 0.1); }
.printer-select option { background: #1a2f3a; color: #fff; padding: 0.8rem; }
.printer-select:hover { border-color: #7ce9e6; }

.cart-summary { background: linear-gradient(145deg, rgba(36, 51, 59, 0.9), rgba(11, 11, 46, 0.9)); border: 2px solid rgba(124, 233, 230, 0.3); border-radius: 16px; padding: 2rem; position: sticky; top: 2rem; }
.cart-summary h3 { color: #7ce9e6; font-size: 1.5rem; margin-bottom: 1.5rem; text-align: center; }
.summary-package { margin-bottom: 1.5rem; }
.package-badge { display: inline-block; background: linear-gradient(135deg, #7ce9e6, #8b5cf6); color: #000; padding: 0.5rem 1rem; border-radius: 8px; font-weight: 600; font-size: 1.1rem; margin-bottom: 0.8rem; }
#summaryPackageDetails { color: #7b7b7b; font-size: 0.9rem; }
.summary-item { display: flex; justify-content: space-between; padding: 0.8rem 0; color: #fff; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.summary-value { color: #7ce9e6; font-weight: 500; }
.summary-divider { height: 2px; background: linear-gradient(90deg, transparent, #7ce9e6, transparent); margin: 1rem 0; }
.summary-savings { display: flex; justify-content: space-between; padding: 1rem; background: rgba(139, 92, 246, 0.1); border-radius: 8px; margin-bottom: 1rem; color: #8b5cf6; font-weight: 600; }
.savings-amount { font-size: 1.3rem; }
.summary-total { display: flex; justify-content: space-between; padding: 1.5rem 0; color: #7ce9e6; font-size: 1.8rem; font-weight: 700; }
.checkout-btn { width: 100%; padding: 1.2rem; margin-top: 1.5rem; background: linear-gradient(135deg, #7ce9e6, #8b5cf6); border: none; border-radius: 12px; color: #000; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.checkout-btn:hover:not(:disabled) { transform: scale(1.02); box-shadow: 0 8px 25px rgba(124, 233, 230, 0.5); }
.checkout-btn:disabled { opacity: 0.4; cursor: not-allowed; background: rgba(124, 233, 230, 0.2); }
.secure-notice { text-align: center; color: #7b7b7b; font-size: 0.85rem; margin-top: 1rem; }

@media (min-width: 900px) { .cart-content { grid-template-columns: 2fr 1fr; } .selected-package { grid-column: 1 / -1; } }
@media (max-width: 600px) { .option-grid { grid-template-columns: 1fr; } .cart-title { font-size: 2rem; } .package-header { flex-direction: column; align-items: flex-start; gap: 1rem; } .package-features { grid-template-columns: 1fr; } }

/* ============================================
   CHECKOUT MODAL
   ============================================ */
.checkout-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(5px); }
.modal-container { position: relative; background: linear-gradient(145deg, #1a2f3a, #0f1f29); border: 2px solid rgba(124, 233, 230, 0.3); border-radius: 20px; max-width: 700px; width: 90%; max-height: 90vh; overflow-y: auto; padding: 2.5rem; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7); animation: slideUp 0.4s ease; }
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: rgba(255, 0, 0, 0.2); border-color: #ff4444; transform: rotate(90deg); }
.modal-header { text-align: center; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 2px solid rgba(124, 233, 230, 0.2); }
.modal-header h2 { color: #ffffff; font-size: 2rem; margin-bottom: 0.5rem; }
.modal-header p { color: #a0a0a0; font-size: 0.95rem; }
.checkout-form { display: flex; flex-direction: column; gap: 2rem; }
.form-section { background: rgba(0, 0, 0, 0.2); border: 1px solid rgba(124, 233, 230, 0.1); border-radius: 12px; padding: 1.5rem; }
.form-section h3 { color: #7ce9e6; font-size: 1.2rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.5rem; }
.form-group { margin-bottom: 1.2rem; width: 100%; }
.form-group label { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem 1rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(124, 233, 230, 0.2); border-radius: 8px; color: #000000; font-size: 1rem; transition: 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #7ce9e6; background: rgba(124, 233, 230, 0.05); box-shadow: 0 0 0 3px rgba(124, 233, 230, 0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #666; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.modal-order-summary { background: linear-gradient(145deg, rgba(36, 51, 59, 0.5), rgba(11, 11, 46, 0.5)); border: 2px solid rgba(124, 233, 230, 0.2); border-radius: 12px; padding: 1.5rem; }
.order-summary-item { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); color: #fff; }
.order-summary-item:last-child { border-bottom: none; }
.order-summary-label { color: #a0a0a0; font-size: 0.95rem; }
.order-summary-value { color: #7ce9e6; font-weight: 600; }
.order-summary-total { margin-top: 1rem; padding-top: 1rem; border-top: 2px solid #7ce9e6; display: flex; justify-content: space-between; font-size: 1.3rem; font-weight: 700; color: #7ce9e6; }
.order-confirm-btn { width: 100%; padding: 1.2rem; background: linear-gradient(135deg, #7ce9e6, #8b5cf6); border: none; border-radius: 12px; color: #000; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; margin-top: 1rem; }
.order-confirm-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(124, 233, 230, 0.5); }
.order-confirm-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-loading { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.spinner { width: 16px; height: 16px; border: 2px solid rgba(0, 0, 0, 0.3); border-top-color: #000; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-notice { text-align: center; color: #7b7b7b; font-size: 0.85rem; margin-top: 1rem; }
@media (max-width: 600px) { .modal-container { padding: 1.5rem; max-height: 95vh; } .modal-header h2 { font-size: 1.5rem; } .form-row { grid-template-columns: 1fr; } }


/* =====================================================
   HOW IT WORKS SECTION
   ===================================================== */

.how-it-works {
    padding: var(--section-padding);
    background: white;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    position: relative;
    padding: 40px 30px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto 30px;
    background: linear-gradient(135deg, #F0FDFA 0%, #CCFBF1 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.8;
}

/* =====================================================
   BENEFITS SECTION
   ===================================================== */

.benefits {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    color: white;
}

.benefits .section-title,
.benefits .section-subtitle {
    color: white;
}

.benefits .section-subtitle {
    color: #94A3B8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-light);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #CBD5E1;
    line-height: 1.8;
}

/* =====================================================
   FEATURES SHOWCASE
   ===================================================== */

.features-showcase {
    padding: var(--section-padding);
    background: white;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #1c5f67;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #0084ff;
    transform: translateX(5px);
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: var(--bg-dark);
    color: #94A3B8;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand p {
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #94A3B8;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =====================================================
   MODAL
   ===================================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #000000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #E2E8F0;
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 40px;
    text-align: center;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.modal-header p {
    color: var(--text-light);
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #0b9cff;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loader {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-status {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: #D1FAE5;
    color: #065F46;
}

.form-status.error {
    display: block;
    background: #FEE2E2;
    color: #991B1B;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 20px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
