/* -----------------------------------------------------------
   1. VARIABLES & SETUP
----------------------------------------------------------- */
:root {
    /* Palette - Subtle & Modern */
    --primary: #C1A362;       /* Sophisticated Gold */
    --primary-dark: #9e844b;
    --text-main: #2D2D2D;     /* Soft Black */
    --text-muted: #666666;
    --bg-body: #FDFBF7;       /* Warm Off-White */
    --bg-card: #FFFFFF;
    --border: #F0EAE0;
    
    /* Spacing & UI */
    --radius-lg: 24px;        /* App-like rounded corners */
    --radius-md: 16px;
    --radius-sm: 8px;
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.05);
    --shadow-card: 0 4px 12px rgba(0,0,0,0.03);
    
    /* Fonts */
    --font-heading: 'Crimson Pro', serif;
    --font-body: 'Manrope', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px; /* Space for mobile nav */
}

h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 500; letter-spacing: -0.02em; }
h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; }
p { font-size: 1.05rem; color: var(--text-muted); }
a { text-decoration: none; color: inherit; transition: 0.2s; }

/* -----------------------------------------------------------
   2. UTILITIES
----------------------------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px;
    border-radius: 50px; /* Pill shape */
    font-weight: 600; font-size: 1rem;
    cursor: pointer; border: none; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:active { transform: scale(0.96); }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 4px 12px rgba(193, 163, 98, 0.3); }

.btn-outline { border: 1.5px solid var(--text-main); color: var(--text-main); background: transparent; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

/* -----------------------------------------------------------
   3. DESKTOP HEADER
----------------------------------------------------------- */
.desktop-header { padding: 20px 0; background: var(--bg-body); }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; letter-spacing: 0.05em; color: var(--text-main); }
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-link { font-weight: 600; font-size: 0.95rem; }

/* -----------------------------------------------------------
   4. HERO SECTION (Split Layout)
----------------------------------------------------------- */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 80vh;
    padding: 40px 0;
}

.hero-content h1 span { color: var(--primary); font-style: italic; }
.hero-content p { margin: 24px 0 32px; font-size: 1.2rem; max-width: 450px; }

.hero-image {
    position: relative;
    height: 600px;
    border-radius: 200px 200px 0 0; /* Arch shape */
    overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* -----------------------------------------------------------
   5. MOBILE APP BAR (The App Feel)
----------------------------------------------------------- */
.mobile-nav {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: 12px 24px 24px; /* Extra padding for iOS home bar */
    z-index: 1000;
    justify-content: space-around;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.mobile-nav-item {
    display: flex; flex-direction: column; align-items: center;
    font-size: 0.75rem; font-weight: 600; color: var(--text-muted); gap: 4px;
}
.mobile-nav-item i { font-size: 24px; margin-bottom: 2px; }
.mobile-nav-item.active { color: var(--primary); }

/* -----------------------------------------------------------
   6. RESPONSIVE / MOBILE VIEW
----------------------------------------------------------- */
@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    
    /* Hide Desktop Header Elements */
    .desktop-header .nav-links { display: none; }
    .desktop-header { padding: 15px 0; position: sticky; top: 0; z-index: 900; background: rgba(253, 251, 247, 0.95); backdrop-filter: blur(5px); }
    
    /* Stack Hero */
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; gap: 20px; min-height: auto; }
    .hero-content p { margin: 16px auto 24px; }
    .hero-image { height: 400px; border-radius: var(--radius-lg); margin-top: 20px; }
    
    /* Show Bottom Nav */
    .mobile-nav { display: flex; }
    
    /* Adjust Buttons for Touch */
    .btn { width: 100%; padding: 16px; }
    
    /* Card Adjustments */
    .card { padding: 24px; border-radius: var(--radius-md); }
}

/* --- Hero Actions Fix --- */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}
@media (max-width: 768px) {
    .hero-actions { justify-content: center; }
}

/* --- Utilities --- */
.section-padding { padding: 80px 0; }
.mb-40 { margin-bottom: 40px; }
.text-center { text-align: center; }
.bg-soft { background-color: #F7F5F0; border-radius: var(--radius-lg); padding: 60px 24px; }

/* --- Grids --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

/* --- Icons --- */
.icon-lg { font-size: 48px; color: var(--primary); margin-bottom: 16px; }

/* --- How It Works Steps --- */
.step-item { text-align: center; position: relative; padding: 20px; }
.step-number {
    display: inline-block;
    width: 40px; height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

/* --- Visual Preview Section --- */
.preview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.check-list { list-style: none; margin-top: 20px; }
.check-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 1.05rem; }
.check-list i { color: var(--primary); font-size: 1.2rem; }

.phone-mockup {
    background: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    max-width: 300px;
    margin: 0 auto;
}
.phone-mockup img { display: block; width: 100%; border-radius: 28px; }

@media (max-width: 768px) {
    .preview-wrapper { grid-template-columns: 1fr; text-align: center; }
    .check-list { display: inline-block; text-align: left; }
}

/* --- FAQ --- */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid var(--border);
}
.faq-item h4 { margin-bottom: 8px; font-size: 1.1rem; }

/* --- Pricing Layout --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: start;
}

.pricing-card {
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* "Most Popular" Styles */
.pricing-card.popular {
    border: 2px solid var(--primary);
    background: #fffbf0; /* Very faint gold tint */
}

.badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(193, 163, 98, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.pricing-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-body); /* Number looks better in sans-serif */
}

.pricing-header .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-header .desc {
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-footer {
    margin-top: auto; /* Pushes button to bottom */
    padding-top: 32px;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Custom Plan Specifics */
.custom-plan .price {
    font-size: 2rem; /* Smaller font for text "Contact Us" */
}

.ph.ph-check-circle:before{
    content: "\e184";
    top: -5px;
    position: relative;
    left: 0.5px;
}


@media (max-width: 768px) {
    .pricing-card { padding: 32px 24px; }
}