﻿/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, #1a1200 0%, #0d0d0d 60%), radial-gradient(ellipse at 70% 50%, #0a0520 0%, transparent 60%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, #0d0d0d 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 24px 120px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201,162,39,0.7);
    margin-bottom: 28px;
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 50px;
    padding: 7px 20px;
}

.hero-eyebrow-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c9a227;
    display: inline-block;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 8vw, 88px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.92);
}

.hero-title-gold {
    color: #c9a227;
}

.hero-title-script {
    font-style: italic;
    font-weight: 600;
    color: #c9a227;
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c9a227, #a07c18);
    color: #000;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 32px rgba(201,162,39,0.3);
}

    .hero-btn-primary:hover {
        opacity: 0.88;
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(201,162,39,0.45);
    }

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

    .hero-btn-secondary:hover {
        border-color: #c9a227;
        color: #c9a227;
    }

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: #c9a227;
    display: block;
}

.hero-stat-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.08);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.25);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: scroll-bounce 2.5s ease-in-out infinite;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(201,162,39,0.5));
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 0.8;
    }
}

/* ─── Section Commons ───────────────────────────────────────────────────── */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 32px;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a227;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ─── Features ──────────────────────────────────────────────────────────── */
.features-section {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

    .feature-card:hover {
        border-color: rgba(201,162,39,0.25);
        transform: translateY(-4px);
        box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-icon-gold {
    background: rgba(201,162,39,0.12);
    color: #c9a227;
}

.feature-icon-blue {
    background: rgba(52,152,219,0.12);
    color: #3498db;
}

.feature-icon-purple {
    background: rgba(155,89,182,0.12);
    color: #9b59b6;
}

.feature-icon-green {
    background: rgba(39,174,96,0.12);
    color: #27ae60;
}

.feature-icon-red {
    background: rgba(231,76,60,0.12);
    color: #e74c3c;
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
}

/* ─── Templates Showcase ────────────────────────────────────────────────── */
.templates-section {
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.templates-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.template-showcase-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

    .template-showcase-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    }

.template-showcase-gold {
    border-color: rgba(201,162,39,0.15);
}

.template-showcase-arabic {
    border-color: rgba(107,53,200,0.15);
}

.template-showcase-egyptian {
    border-color: rgba(201,162,39,0.1);
}

.template-showcase-preview {
    height: 220px;
    overflow: hidden;
}

    .template-showcase-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.template-mock-header {
    height: 100%;
    background: linear-gradient(135deg, #1a1200, #2d1f00);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
}

.template-mock-ring {
    font-size: 40px;
}

.template-mock-names {
    font-family: 'Great Vibes', cursive;
    font-size: 22px;
    color: #c9a227;
    text-align: center;
}

.template-mock-date {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
}

.template-mock-bismillah {
    font-family: 'Amiri', serif;
    font-size: 18px;
    color: rgba(201,162,39,0.6);
}

.template-mock-hieroglyph {
    font-size: 20px;
    color: rgba(201,162,39,0.4);
    letter-spacing: 8px;
}

.template-showcase-info {
    padding: 24px;
    background: #141414;
}

.template-showcase-tag {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c9a227;
    margin-bottom: 8px;
}

.template-showcase-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.template-showcase-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin-bottom: 16px;
}

.template-showcase-palette {
    display: flex;
    gap: 6px;
}

    .template-showcase-palette span {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 2px solid rgba(255,255,255,0.1);
    }

.template-carousel {
    overflow: hidden;
    position: relative;
    padding: 8px 0 18px;
}

    .template-carousel::before,
    .template-carousel::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 92px;
        z-index: 2;
        pointer-events: none;
    }

    .template-carousel::before {
        left: 0;
        background: linear-gradient(90deg, #0d0d0d, transparent);
    }

    .template-carousel::after {
        right: 0;
        background: linear-gradient(270deg, #0d0d0d, transparent);
    }

.template-carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: template-slide-rtl 34s linear infinite;
}

.template-carousel:hover .template-carousel-track {
    animation-play-state: paused;
}

.template-carousel-card {
    width: 320px;
    flex: 0 0 320px;
    background: #141414;
}

.template-showcase-tier {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(201,162,39,0.78);
    font-size: 12px;
    font-weight: 700;
}

.template-empty-state {
    border: 1px dashed rgba(201,162,39,0.2);
    color: rgba(255,255,255,0.38);
    padding: 32px;
    text-align: center;
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
}

@keyframes template-slide-rtl {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

/* ─── How It Works ──────────────────────────────────────────────────────── */
.how-section {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.how-steps {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.how-step {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 36px 28px;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
}

.how-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(201,162,39,0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.how-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.how-step-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
}

.how-step-arrow {
    font-size: 28px;
    color: rgba(201,162,39,0.3);
    flex-shrink: 0;
}

/* ─── Pricing ───────────────────────────────────────────────────────────── */
.pricing-section {
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.pricing-card-wrapper {
    max-width: 480px;
    margin: 0 auto;
}

.pricing-card-wrapper.pricing-grid {
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.pricing-card {
    background: #111;
    border: 1px solid rgba(201,162,39,0.25);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 60px rgba(201,162,39,0.06);
}

.pricing-card-featured {
    border-color: rgba(201,162,39,0.55);
    box-shadow: 0 0 70px rgba(201,162,39,0.12);
}

.pricing-plan-name {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-plan-desc {
    min-height: 42px;
    color: rgba(255,255,255,0.48);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 18px;
}

.pricing-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c9a227, #a07c18);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
    margin-top: 8px;
}

.pricing-currency {
    font-size: 28px;
    font-weight: 700;
    color: #c9a227;
    margin-top: 12px;
}

.pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 700;
    color: #c9a227;
    line-height: 1;
}

.pricing-period {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 36px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

    .pricing-features li {
        font-size: 14px;
        color: rgba(255,255,255,0.65);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .pricing-features li i {
            color: #27ae60;
            font-size: 13px;
            flex-shrink: 0;
        }

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #c9a227, #a07c18);
    color: #000;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 16px;
    transition: opacity 0.2s, transform 0.2s;
    letter-spacing: 0.03em;
}

    .pricing-cta:hover {
        opacity: 0.88;
        transform: translateY(-2px);
    }

.pricing-note {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
}

/* ─── CTA ───────────────────────────────────────────────────────────────── */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, #1a1200 0%, #0d0d0d 60%);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(201,162,39,0.08) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-ornament {
    font-size: 14px;
    color: rgba(201,162,39,0.5);
    letter-spacing: 16px;
    margin-bottom: 28px;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-title-gold {
    color: #c9a227;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c9a227, #a07c18);
    color: #000;
    padding: 18px 44px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 40px rgba(201,162,39,0.35);
    margin-bottom: 16px;
    display: inline-flex;
}

    .cta-btn:hover {
        opacity: 0.88;
        transform: translateY(-3px);
        box-shadow: 0 14px 50px rgba(201,162,39,0.5);
    }

.cta-note {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
}

/* ─── Custom Request ───────────────────────────────────────────────────── */
.custom-request-section {
    background: #090909;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.custom-request-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 48px;
    align-items: start;
}

.custom-request-copy {
    position: sticky;
    top: 96px;
}

    .custom-request-copy .section-header,
    .custom-request-copy .section-title,
    .custom-request-copy .section-subtitle {
        text-align: left;
        margin-left: 0;
    }

.custom-request-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(39,174,96,0.12);
    border: 1px solid rgba(39,174,96,0.25);
    color: #7be0a2;
    font-size: 14px;
}

.custom-request-form {
    background: #111;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 22px 70px rgba(0,0,0,0.36);
}

.custom-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.custom-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

    .custom-form-group label {
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.46);
        font-weight: 700;
    }

    .custom-form-group input,
    .custom-form-group select,
    .custom-form-group textarea {
        width: 100%;
        border: 1px solid rgba(255,255,255,0.08);
        background: #0a0a0a;
        color: rgba(255,255,255,0.86);
        border-radius: 12px;
        padding: 14px 15px;
        font: inherit;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    .custom-form-group textarea {
        resize: vertical;
        min-height: 132px;
    }

        .custom-form-group input:focus,
        .custom-form-group select:focus,
        .custom-form-group textarea:focus {
            border-color: rgba(201,162,39,0.55);
            box-shadow: 0 0 0 4px rgba(201,162,39,0.08);
        }

    .custom-form-group span,
    .custom-request-validation {
        color: #ff8c8c;
        font-size: 12px;
        line-height: 1.5;
    }

.custom-request-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    border: none;
    background: linear-gradient(135deg, #c9a227, #a07c18);
    color: #000;
    padding: 16px 24px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

    .custom-request-btn:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .templates-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .templates-showcase {
        grid-template-columns: 1fr;
    }

    .template-carousel::before,
    .template-carousel::after {
        width: 36px;
    }

    .template-carousel-card {
        width: 270px;
        flex-basis: 270px;
    }

    .custom-request-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .custom-request-copy {
        position: static;
    }

    .custom-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .section-container {
        padding: 64px 20px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-divider {
        display: none;
    }

    .how-steps {
        flex-direction: column;
        align-items: stretch;
    }

    .how-step {
        max-width: 100%;
    }

    .how-step-arrow {
        display: none;
    }

    .pricing-card {
        padding: 40px 24px;
    }
}
