@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    /* Refined Color Palette: Dark Orange & Warm Gradients */
    --color-orange-dark: #d35400; 
    --color-orange-soft: #fff4e6;
    --color-yellow: #ffcc33;
    --color-orange: #ff9933;
    --color-red: #e63946;
    
    --primary: var(--color-orange-dark);
    --primary-gradient: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
    
    --background: #ffffff;
    --surface: #ffffff;
    --on-surface: #1a1c1e;
    --on-surface-variant: #44474a;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    --radius-sm: 0.75rem;
    --radius-md: 1.5rem;
    --radius-lg: 2.5rem;
    
    --shadow-soft: 0 10px 40px rgba(211, 84, 0, 0.08);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.03);
    
    --easing: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--background);
    background-image: radial-gradient(at 0% 0%, var(--color-orange-soft) 0px, transparent 50%),
                      radial-gradient(at 100% 100%, #fff9e6 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--on-surface);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.narrow-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography */
h1 { font-size: 2.5rem; line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 2.75rem; line-height: 1.2; font-weight: 800; color: var(--color-orange-dark); }
h3 { font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: var(--color-orange-dark); }
p { font-size: 1.1rem; color: var(--on-surface-variant); }

.accent-text { color: var(--color-orange-dark); }
.highlight-text { color: var(--color-orange); }

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 3rem;
    border-radius: 5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--easing);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 84, 0, 0.3);
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(211, 84, 0, 0.05);
}

/* Hero */
.hero {
    position: relative;
    padding-top: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-video-container {
    width: 100%;
    max-width: 1000px;
    margin: 4rem auto 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #000;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Grid Section */
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.step-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s var(--easing);
    display: flex;
    flex-direction: column;
}

.step-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 40px rgba(211, 84, 0, 0.08);
}

/* Video inside card - NO CUT OFF */
.step-video-box {
    width: 100%;
    background: #000;
}

.step-video {
    width: 100%;
    height: auto;
    max-height: 400px; /* Prevent it from being too tall on desktop */
    object-fit: contain;
    display: block;
}

.step-content {
    padding: 2.5rem;
}

/* Program Image Grid */
.program-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.program-img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s var(--easing);
}

.program-img:hover { transform: translateY(-5px); }

/* About Section - Pale Brand Gradient */
#about {
    background: linear-gradient(135deg, #fffdfa 0%, #fff2e6 100%);
    color: var(--on-surface);
    padding: var(--spacing-xl) 0;
    margin: var(--spacing-xl) 0; /* Vertical spacing from hero and process */
    border-top: 1px solid rgba(211, 84, 0, 0.05);
    border-bottom: 1px solid rgba(211, 84, 0, 0.05);
}

#about h2 {
    color: var(--color-orange-dark);
}

#about p {
    color: var(--on-surface-variant);
}

#about strong {
    color: var(--color-orange-dark);
}

#about .narrow-container {
    opacity: 1;
}

/* Reference Section */
.reference-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--color-orange-soft);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    background: var(--primary-gradient);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Programs - Ultra Premium Redesign (Polished) */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 2rem;
    padding: 0;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(211, 84, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 60px 120px rgba(211, 84, 0, 0.15);
}

/* Card Header Tag */
.plan-header {
    background: linear-gradient(135deg, var(--color-orange-dark), #e67e22);
    padding: 1.5rem 1.75rem;
    color: white;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.plan-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.plan-header h3 {
    font-size: 1.25rem;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.plan-header .plan-subtitle {
    font-size: 0.75rem;
    color: #fff;
    opacity: 1;
    margin-top: 0.25rem;
    font-weight: 500;
    max-width: 90%;
    line-height: 1.2;
}

/* 3D Pricing Badge */
.plan-badge-wrapper {
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(211, 84, 0, 0.03);
    border-bottom: 1px solid rgba(0,0,0,0.02);
}

.plan-badge-3d {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #ffc107, #d4af37);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    position: relative;
    box-shadow: 
        0 8px 15px rgba(184, 134, 11, 0.2),
        inset 0 -2px 5px rgba(0,0,0,0.1),
        inset 0 2px 5px rgba(255,255,255,0.5);
    transform: rotate(-3deg);
    border: 1.5px solid rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.plan-badge-3d span { font-size: 1.2rem; }
.plan-badge-3d small { font-size: 0.55rem; opacity: 0.8; text-transform: uppercase; font-weight: 700; }

.plan-badge-label {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--on-surface);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Feature List with Icons */
.plan-content {
    padding: 1.5rem 1.75rem;
    flex-grow: 1;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.75rem; /* Tightened spacing */
    font-size: 0.85rem; /* Reduced font size for tighter fit */
    color: var(--on-surface);
    font-weight: 600;
}

.feature-icon-pod {
    width: 24px;
    height: 24px;
    background: rgba(39, 174, 96, 0.12);
    color: #1e8449; /* Darker Green for contrast */
    border-radius: 6px; /* Squarish pods like images */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Contact Footer */
.plan-footer {
    padding: 1.5rem 1.75rem;
    background: #f8f8f8;
    border-top: 1px solid #eee;
}

.plan-footer p {
    font-size: 0.7rem;
    color: #888;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Gel Buttons */
.small-btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.btn-gel {
    padding: 0.6rem 0.4rem;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
    box-shadow: 0 3px 0 rgba(0,0,0,0.1);
}

.btn-gel::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 10px 10px 4px 4px;
}

.btn-gel:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(0,0,0,0.1); }

.bg-wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.bg-tg { background: linear-gradient(135deg, #0088cc, #006699); }
.bg-wc { background: linear-gradient(135deg, #07C160, #069e4d); }
.bg-em { background: linear-gradient(135deg, #e63946, #c1121f); }

.plan-conditions {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(211, 84, 0, 0.03);
    border-radius: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.plan-conditions h4 {
    font-size: 1rem;
    color: var(--on-surface);
    margin-bottom: 1rem;
    font-weight: 800;
}

.plan-conditions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-conditions li {
    font-size: 0.9rem;
    color: var(--on-surface-variant);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.plan-conditions li::before {
    content: "•";
    color: var(--color-orange-dark);
    font-size: 1.5rem;
    line-height: 1;
}

/* Why To Choose Me Section */
.why-me-section {
    padding: var(--spacing-xl) 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.why-me-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center; /* Center vertically since right side is smaller now */
}

.why-me-personal {
    border-right: 1px solid #eee;
    padding-right: 3rem;
}

.why-me-section .lead-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-orange-dark);
    margin-bottom: 2rem;
}

.personal-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--on-surface-variant);
    font-size: 1.05rem;
}

.savings-card {
    padding: 1rem 0;
}

.savings-card p {
    line-height: 1.8;
    color: var(--on-surface-variant);
    margin-bottom: 2rem;
}

.savings-highlight {
    background: linear-gradient(135deg, #fff9f5 0%, #fff 100%);
    padding: 2.5rem;
    border-radius: 2rem;
    border-left: 5px solid var(--color-orange-dark);
    box-shadow: 0 15px 40px rgba(211, 84, 0, 0.05);
}

.savings-percent {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-orange-dark);
    margin-bottom: 1rem;
}

.savings-highlight p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--on-surface);
}

/* Responsive Utilities */
@media (max-width: 1024px) {
    .grid-container { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .plan-grid { grid-template-columns: 1fr; max-width: 450px; margin: 4rem auto 0; gap: 3rem; }
    
    .why-me-grid { grid-template-columns: 1fr; gap: 2rem; }
    .why-me-personal { border-right: none; padding-right: 0; }
    
    /* Who I Am stacking */
    .narrow-container > div {
        flex-direction: column !important;
        text-align: center;
    }
    
    .narrow-container img {
        max-width: 400px;
        margin: 0 auto 2.5rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 2.25rem; }
    .hero { padding-top: 8rem; }
    .step-content { padding: 1.5rem; }
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--easing);
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}
