/* 
   Aisle Journey - Premium Landing Page
   Modern, Elegant, Glassmorphism
*/

:root {
    /* Color Palette */
    --color-bg: #F9F8F6;
    --color-text: #2C2C2C;
    --color-text-light: #6A6A6A;
    --color-accent: #D4C5B0;
    --color-accent-dark: #B8A890;
    --color-white: #FFFFFF;
    --color-sage: #E3E8E3;
    --color-blush: #F7EFEF;
    --color-dark: #1C1C1E;
    --color-dark-surface: #2A2A2E;

    /* Gradient Accents */
    --gradient-gold: linear-gradient(135deg, #D4C5B0, #E8DCC8, #C8B89C);
    --gradient-gold-subtle: linear-gradient(135deg, rgba(212, 197, 176, 0.3), rgba(232, 220, 200, 0.1));
    --gradient-dark: linear-gradient(180deg, #1C1C1E 0%, #2A2A2E 100%);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-container: 1200px;
    --spacing-section: 7rem;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 50px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-dark);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) var(--color-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--color-white);
}

/* Sections */
.section {
    padding: var(--spacing-section) 0;
}

/* Section Title with Animated Gold Underline */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/* Center section titles by default */
.section .section-title,
.text-center .section-title {
    display: block;
    text-align: center;
}

.section .section-title::after,
.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-title.visible::after,
.visible .section-title::after {
    transform: translateX(-50%) scaleX(1);
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-weight: 300;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.btn-sm {
    padding: 0.55rem 1.4rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.1rem 3.2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--color-text);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border-color: var(--color-text);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--color-text);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-text-light);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-text);
    background-color: var(--color-bg);
    transform: translateY(-2px);
}

/* ========== Navbar ========== */
.navbar {
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(212, 197, 176, 0.15);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

.navbar.scrolled .logo-img {
    height: 45px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    position: relative;
}

/* Nav link hover underline */
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--color-text-light);
}

.nav-links a:not(.btn):hover {
    color: var(--color-white);
}

.navbar.scrolled .nav-links a:not(.btn):hover {
    color: var(--color-text);
}

/* Shimmer CTA in navbar */
.navbar .btn-primary {
    animation: shimmer-btn 3s ease-in-out infinite;
}

@keyframes shimmer-btn {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(212, 197, 176, 0);
    }

    50% {
        box-shadow: 0 0 20px rgba(212, 197, 176, 0.4);
    }
}

.nav-link-login {
    margin-right: 0.5rem;
}

.menu-toggle {
    display: none;
}

/* ========== Hero Section ========== */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/10.JPG');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    z-index: 0;
    will-change: transform;
}

/* Cinematic gradient overlay — no blur */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.10) 60%,
            rgba(0, 0, 0, 0.50) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--color-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero .btn-secondary {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero .btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-text);
    border-color: var(--color-white);
}

/* ========== Elevate / What We Do Section ========== */
.what-we-do .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
    text-align: center;
    border: 1px solid rgba(212, 197, 176, 0.2);
    position: relative;
    overflow: hidden;
}

/* Gradient border glow on hover */
.feature-item::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 197, 176, 0.4), transparent, rgba(212, 197, 176, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-item .icon {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background: var(--gradient-gold-subtle);
    border-radius: var(--radius-md);
    color: var(--color-accent-dark);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-item .icon i {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.feature-item:hover .icon {
    background: var(--gradient-gold);
    color: var(--color-white);
    transform: scale(1.05);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    color: var(--color-text);
}

.feature-item p {
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.feature-item span {
    font-family: monospace;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85em;
    color: var(--color-text);
    display: inline-block;
    margin-top: 0.5rem;
}

/* ========== How It Works ========== */
.how-it-works {
    position: relative;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 4rem;
    gap: 0;
    position: relative;
}

.step {
    flex: 1;
    max-width: 280px;
    padding: 0 2rem;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 197, 176, 0.4);
    position: relative;
    z-index: 2;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--color-text-light);
    font-size: 0.92rem;
}

.step-separator {
    height: 2px;
    flex: 1;
    background: var(--gradient-gold);
    margin-top: 27px;
    opacity: 0.4;
    max-width: 120px;
    border-radius: 2px;
}

/* ========== Samples / Phone Showcase ========== */
.samples {
    background-color: var(--color-bg);
    color: var(--color-text);
    padding: 7rem 0;
    overflow: hidden;
}

.samples h2 {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.samples .section-subtitle {
    margin-bottom: 4rem;
}

.phone-showcase {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    perspective: 1200px;
}

.phone-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: phone-float 6s ease-in-out infinite;
}

.phone-wrapper:nth-child(2) {
    animation-delay: -3s;
}

.phone-demo-btn {
    margin-top: 1.5rem;
}

.phone-frame {
    width: 380px;
    height: 760px;
    background-color: #1a1a1a;
    border-radius: 40px;
    padding: 10px;
    position: relative;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(212, 197, 176, 0.15);
    border: 3px solid #333;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@keyframes phone-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.phone-frame:hover {
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(212, 197, 176, 0.25);
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background-color: #1a1a1a;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== Features Grid (Everything You Need) ========== */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.feature-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 197, 176, 0.15);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(212, 197, 176, 0.3);
}

.feature-box h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.feature-box p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Center the last item if it's alone on its row */
.grid-2-col .feature-box:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 450px;
    margin: 0 auto;
}

/* ========== Pricing ========== */
/* Desktop Pricing Table */
.pricing-table-container {
    max-width: 1000px;
    margin: 3rem auto 0;
    overflow-x: auto;
    padding: 2rem 2rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(212, 197, 176, 0.15);
}

.pricing-table {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    width: 100%;
    min-width: 600px;
}

/* Header Row */
.pricing-header-row {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--gradient-gold-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.pricing-header-row .pricing-cell {
    padding: 2rem 1rem;
    align-items: flex-end;
    border-bottom: none;
    background-color: transparent;
}

.pricing-header-row .pricing-cell:first-child,
.pricing-header-row .pricing-cell:last-child {
    border-radius: 0;
}

.package-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    color: var(--color-accent-dark);
}

.package-header .price {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--color-accent-dark);
    font-weight: 600;
}

/* Rows */
.pricing-row {
    display: contents;
}

.pricing-cell {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--color-text);
}

.pricing-cell.feature-label {
    justify-content: flex-start;
    text-align: left;
    font-weight: 500;
    color: var(--color-text);
    padding-left: 0;
}

.pricing-cell.feature-missing {
    color: #ddd;
    font-weight: 300;
}

/* Buttons */
.button-row .pricing-cell {
    border-bottom: none;
    padding-top: 2rem;
}

/* Mobile Responsive Table */
@media (max-width: 768px) {
    .pricing-table-container {
        margin-top: 2rem;
    }

    .package-header .price {
        font-size: 1.5rem;
    }

    .pricing-cell {
        padding: 1rem 0.5rem;
        font-size: 0.85rem;
    }
}

/* Pricing Cards */
.pricing-cards {
    display: none;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(212, 197, 176, 0.15);
    border-radius: var(--radius-xl);
    width: 300px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card.popular {
    transform: scale(1.05);
    border-color: var(--color-accent);
    box-shadow: 0 15px 40px rgba(212, 197, 176, 0.2);
    position: relative;
}

/* Floating Popular Badge */
.pricing-card.popular::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 20px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(212, 197, 176, 0.4);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin: 1rem 0 2rem;
    color: var(--color-text);
}

.pricing-card ul {
    margin-bottom: 2rem;
    text-align: left;
    padding-left: 1rem;
}

.pricing-card li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
    list-style-type: '•';
    padding-left: 0.5rem;
}

/* Mobile Card Toggle */
@media (max-width: 768px) {
    .pricing-table-container {
        display: none;
    }

    .pricing-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ========== Dark CTA Section ========== */
.cta-final {
    background: var(--gradient-dark);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow */
.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 197, 176, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    position: relative;
}

.cta-final p {
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.cta-final .btn-primary {
    background: var(--gradient-gold);
    color: var(--color-dark);
    border: none;
    font-weight: 600;
    position: relative;
}

.cta-final .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 197, 176, 0.35);
}

/* ========== Footer ========== */
.footer {
    border-top: none;
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(212, 197, 176, 0.08) 100%);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-brand h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

.footer-email {
    display: inline-flex;
    align-items: center;
    font-style: italic;
    letter-spacing: 0.02em;
    padding-left: 12px;
    border-left: 2px solid var(--color-accent);
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: var(--color-accent-dark);
    border-left-color: var(--color-accent-dark);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    color: var(--color-text-light);
    transition: all 0.3s ease;
}

.footer-social:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* ========== Wave SVG Separator ========== */
.wave-separator {
    display: block;
    width: 100%;
    line-height: 0;
    margin-top: -1px;
    background: var(--color-dark);
}

.wave-separator svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ========== Payment Section ========== */
.payment-section {
    background-color: var(--color-bg);
    padding: 7rem 0;
}

.payment-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.payment-tab {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.payment-tab:hover {
    color: var(--color-text);
}

/* Payment Tab Brand Colors */
.payment-tab[data-target="gcash"]:hover,
.payment-tab[data-target="gcash"].active {
    color: #007DFE;
}

.payment-tab[data-target="bpi"]:hover,
.payment-tab[data-target="bpi"].active {
    color: #B10023;
}

.payment-tab[data-target="unionbank"]:hover,
.payment-tab[data-target="unionbank"].active {
    color: #FB8F04;
}

.payment-tab[data-target="rcbc"]:hover,
.payment-tab[data-target="rcbc"].active {
    color: #004DA7;
}

.payment-tab.active {
    font-weight: 600;
}

.payment-separator {
    color: var(--color-accent);
    opacity: 0.5;
    font-size: 1.5rem;
    font-weight: 300;
}

.qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    position: relative;
}

.qr-code {
    display: none;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.qr-code.active {
    display: flex;
}

.qr-code img {
    max-width: 300px;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.qr-code p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Payment */
@media (max-width: 768px) {
    .payment-tabs {
        gap: 1rem;
    }

    .payment-tab {
        font-size: 1.2rem;
    }

    .payment-separator {
        display: none;
    }

    .payment-tabs {
        flex-direction: row;
        justify-content: center;
    }

    .qr-code img {
        max-width: 250px;
    }
}

/* ========== Sample Links (Legacy) ========== */
.sample-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.sample-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    width: 400px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.sample-card:hover {
    transform: translateY(-5px);
}

.browser-bar {
    background: #f1f1f1;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dcdcdc;
}

.url-bar {
    background: #fff;
    flex: 1;
    margin-left: 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    padding: 2px 8px;
    color: #888;
    font-family: monospace;
}

.sample-preview {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.preview-wedding {
    background-color: var(--color-accent-dark);
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), radial-gradient(circle, #B8A890, #968670);
}

.preview-debut {
    background-color: var(--color-sage);
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), radial-gradient(circle, #E3E8E3, #C0C8C0);
}

.sample-preview span {
    font-family: var(--font-heading);
    font-size: 2rem;
    z-index: 1;
}

.sample-preview small {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 300;
    opacity: 0.9;
}

/* ========== Animations ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    animation: none;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* ========== Add-ons Section ========== */
.add-ons {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.add-ons-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.add-ons-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.add-on-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 197, 176, 0.15);
    min-width: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.add-on-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.add-on-name {
    font-weight: 500;
    color: var(--color-text);
}

.add-on-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text);
}

.add-on-price small {
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-family: var(--font-body);
}

/* ========== Mobile Responsive ========== */
@media (max-width: 768px) {
    :root {
        --spacing-section: 4rem;
    }

    .section {
        padding: 4rem 0;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Mobile Menu */
    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2.5px;
        margin: 5px auto;
        background-color: var(--color-white);
        transition: all 0.3s ease-in-out;
        border-radius: 2px;
    }

    .navbar.scrolled .menu-toggle span,
    .nav-links.active+.menu-toggle span {
        background-color: var(--color-text);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--color-text);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--color-text);
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        text-align: center;
        transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: none;
        gap: 2rem;
        padding-top: 4rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a:not(.btn) {
        color: var(--color-text);
        font-size: 1.5rem;
    }

    .nav-links a:not(.btn)::after {
        display: none;
    }

    .nav-links a:not(.btn):hover {
        color: var(--color-accent-dark);
    }

    .hero {
        height: auto;
        min-height: 85vh;
        padding: 6rem 0 4rem;
    }

    .hero::before {
        background-position: 75% top;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero .btn-secondary {
        margin-left: 0;
        width: 100%;
    }

    .hero .btn-primary {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .what-we-do .features-grid,
    .steps,
    .grid-2-col,
    .pricing-cards,
    .sample-links,
    .add-ons-grid,
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }

    /* Swipeable Phone Showcase */
    @media (max-width: 1024px) {
        .phone-showcase {
            display: flex;
            flex-direction: row;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 2rem;
            padding: 2rem max(7.5vw, calc(50vw - 160px));
            justify-content: flex-start;
            width: 100vw;
            margin-left: -50vw;
            left: 50%;
            position: relative;
            -webkit-overflow-scrolling: touch;
        }

        .phone-wrapper {
            flex: 0 0 auto;
            scroll-snap-align: center;
            animation: none;
        }

        .phone-frame {
            width: 85vw;
            max-width: 380px;
            height: 760px;
        }

        .phone-showcase::-webkit-scrollbar {
            display: none;
        }

        .phone-showcase {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
    }

    .step-separator {
        display: none;
    }

    .step {
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .cta-final {
        padding: 5rem 0;
    }

    .cta-final h2 {
        font-size: 2.2rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .sample-card,
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }

    .add-on-item {
        width: 100%;
        max-width: 300px;
    }

    .footer-links {
        justify-content: center;
    }
}