:root {
    --gold: #C9A84C;
    --gold-light: #E8D08A;
    --gold-dark: #8B6914;
    --deep-green: #0D3B2E;
    --mid-green: #1A5C45;
    --light-green: #2E8B57;
    --cream: #FBF6EC;
    --cream-dark: #F0E8D0;
    --white: #FFFFFF;
    --text-dark: #1A1208;
    --text-mid: #4A3728;
    --shadow: rgba(13, 59, 46, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Arabesque subtle bg */
.arabesque-bg {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(13, 59, 46, 0.05) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cpath d='M30 5 L55 30 L30 55 L5 30Z' fill='%23C9A84C' fill-opacity='0.05'/%3E%3C/g%3E%3C/svg%3E");
}

/* ── NAVBAR ── */


nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(13, 59, 46, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height:80px;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

/* .nav-logo .moon {
    font-size: 1.4rem;
} */
/* .nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
} */



.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(251, 246, 236, 0.85);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: var(--deep-green) !important;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: 0 2px 14px rgba(201, 168, 76, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 59, 46, 0.98);
    z-index: 998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--gold-light);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(155deg, #0D3B2E 0%, #091f19 55%, #060f0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 110px 24px 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M40 5 C40 5 75 40 40 75 C5 40 40 5 40 5Z'/%3E%3Cpath d='M5 40 C5 40 40 5 75 40 C40 75 5 40 5 40Z'/%3E%3C/g%3E%3C/svg%3E");
    animation: bgShift 25s linear infinite;
}

@keyframes bgShift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 80px 80px;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--gold-light);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeUp 0.9s ease both;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 7vw, 5rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
    animation: fadeUp 0.9s 0.15s ease both;
    opacity: 0;
}

.hero h1 em {
    color: var(--gold-light);
    font-style: italic;
}

.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(251, 246, 236, 0.72);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.8;
    font-weight: 300;
    animation: fadeUp 0.9s 0.3s ease both;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    animation: fadeUp 0.9s 0.45s ease both;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--deep-green);
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 22px rgba(201, 168, 76, 0.45);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(201, 168, 76, 0.55);
}

.btn-outline {
    background: transparent;
    color: var(--gold-light);
    padding: 13px 32px;
    border-radius: 50px;
    border: 2px solid rgba(201, 168, 76, 0.6);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* ── STATS ── */
.stats-bar {
    background: var(--white);
    border-bottom: 3px solid var(--gold);
    padding: 32px 20px;
}

.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--deep-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-mid);
    margin-top: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ── SECTION BASE ── */
section {
    padding: 90px 24px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-dark);
    border: 1px solid rgba(201, 168, 76, 0.35);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    color: var(--deep-green);
    margin-bottom: 14px;
    line-height: 1.25;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 580px;
    font-weight: 300;
}

.divider-gold {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.divider-gold::before,
.divider-gold::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.divider-gold span {
    color: var(--gold);
    font-size: 1rem;
}

/* ── FEATURES ── */
.features {
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
    margin-top: 56px;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(201, 168, 76, 0.18);
    box-shadow: 0 4px 24px var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(13, 59, 46, 0.14);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--mid-green), var(--deep-green));
    border-radius: 14px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(13, 59, 46, 0.2);
}

.feature-icon i {
    font-size: 1.4rem;
    color: var(--gold-light);
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-green);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300;
}

/* ── HOW IT WORKS ── */
.how-section {
    background: var(--deep-green);
}

.how-section .section-tag {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-light);
    border-color: rgba(201, 168, 76, 0.3);
}

.how-section .section-title {
    color: var(--white);
}

.how-section .section-desc {
    color: rgba(251, 246, 236, 0.7);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 56px;
}

.step-card {
    text-align: center;
    padding: 36px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.18);
    transition: 0.3s;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(201, 168, 76, 0.5);
}

.step-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--deep-green);
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-light);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    color: rgba(251, 246, 236, 0.65);
    font-size: 0.93rem;
    line-height: 1.75;
    font-weight: 300;
}

/* ── APP SECTION ── */
.app-section {
    background: var(--cream-dark);
}

.app-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 64px;
}

.app-content {
    flex: 1;
    min-width: 280px;
}

.app-visual {
    flex: 1;
    min-width: 240px;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 210px;
    height: 420px;
    background: linear-gradient(160deg, var(--deep-green), #091f19);
    border-radius: 36px;
    border: 2.5px solid var(--gold);
    box-shadow: 0 24px 60px rgba(13, 59, 46, 0.4), 0 0 0 6px rgba(201, 168, 76, 0.12);
    padding: 22px 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-14px) rotate(1deg);
    }
}

.phone-notch {
    width: 64px;
    height: 5px;
    background: var(--gold);
    border-radius: 3px;
    margin-bottom: 18px;
    opacity: 0.6;
}

.phone-app-name {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.phone-avatar {
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 76, 0.18);
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.phone-profile-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 9px 11px;
    border: 1px solid rgba(201, 168, 76, 0.18);
    margin-bottom: 7px;
}

.pname {
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
}

.pdetail {
    color: rgba(251, 246, 236, 0.55);
    font-size: 0.68rem;
    margin-top: 2px;
}

.phone-action-btn {
    width: 100%;
    padding: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 8px;
    border: none;
    cursor: pointer;
    color: var(--deep-green);
    font-weight: 700;
    font-size: 0.75rem;
    margin-top: 4px;
}

.features-list {
    list-style: none;
    margin: 18px 0 28px;
}

.features-list li {
    font-size: 0.97rem;
    color: var(--text-mid);
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    font-weight: 400;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list .check {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--mid-green), var(--deep-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--gold-light);
    flex-shrink: 0;
}

.download-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--deep-green);
    color: var(--white);
    padding: 13px 22px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(201, 168, 76, 0.28);
    transition: all 0.3s;
    min-width: 165px;
}

.store-btn:hover {
    background: var(--mid-green);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(13, 59, 46, 0.3);
}

.store-icon {
    font-size: 1.7rem;
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-small {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.store-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
}

/* ── TESTIMONIALS ── */
.testimonials {
    background: var(--white);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 52px;
}

.testi-card {
    background: var(--cream);
    border-radius: 18px;
    padding: 30px 26px;
    border-left: 4px solid var(--gold);
    position: relative;
    transition: 0.3s;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--shadow);
    /* transform: translateY(-2px);
    border-color: #C9A84C;
    border-width: 1.5px;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15); */
}

.testi-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.testi-text {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 300;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--mid-green), var(--deep-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid var(--gold);
}

.testi-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--deep-green);
}

.testi-city {
    font-size: 0.82rem;
    color: var(--text-mid);
    margin-top: 2px;
}

.stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

/* ── CTA ── */
.cta-section {
    background: linear-gradient(140deg, var(--deep-green), var(--mid-green));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '☪';
    position: absolute;
    font-size: 22rem;
    color: rgba(201, 168, 76, 0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-section .section-title {
    color: var(--white);
}

.cta-section .section-tag {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-light);
    border-color: rgba(201, 168, 76, 0.3);
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(251, 246, 236, 0.75);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 36px;
    font-weight: 300;
}

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ── FOOTER ── */
footer {
    background: #060f0b;
    padding: 52px 24px 28px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--gold-light);
}

.footer-divider {
    height: 1px;
    background: rgba(201, 168, 76, 0.15);
    margin: 0 0 24px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-ayah {
    font-size: 0.82rem;
    color: rgba(201, 168, 76, 0.5);
    font-style: italic;
}

/* ── SCROLL ANIMATION ── */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .app-inner {
        flex-direction: column-reverse;
    }

    .phone-mockup {
        width: 178px;
        height: 355px;
    }

    section {
        padding: 64px 16px;
    }

    .footer-top {
        flex-direction: column;
        gap: 28px;
    }

    .divider-gold {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-inner {
        gap: 24px;
    }

    .stat-num {
        font-size: 1.9rem;
    }

    .download-btns {
        flex-direction: column;
    }

    .store-btn {
        min-width: auto;
        justify-content: center;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
}