/* ============================================
   1. VARIABLES & RESET
   ============================================ */

:root {
    /* Color Palette */
    --primary: #1a5f7a;
    /* Deep Ocean Blue */
    --primary-dark: #134b61;
    --secondary: #57c5b6;
    /* Fresh Teal */
    --accent: #ffb703;
    /* Energetic Yellow */

    /* Backgrounds */
    --bg-body: #f0f4f8;
    /* Very Light Blue/Gray */
    --bg-surface: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.75);

    /* Text */
    --text-main: #2d3436;
    --text-light: #636e72;
    --text-white: #ffffff;

    /* Borders & Shadows */
    --border-light: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(87, 197, 182, 0.4);

    /* Spacing & Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   2. UTILITY CLASSES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

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

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

.text-secondary {
    color: var(--secondary);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(26, 95, 122, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 95, 122, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.btn-accent {
    background: var(--accent);
    color: var(--primary);
    /* Contrast check */
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
}

.btn-accent:hover {
    transform: scale(1.05);
    background: #ffc107;
}

/* ============================================
   3. NAVIGATION
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    height: 80px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    /* Glass effect applied via class in HTML or added below */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    height: 45px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   4. HERO SECTION
   ============================================ */

/* ============================================
   4. HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f8 0%, #e3f9f5 100%);
    /* Soft gradient background */
    text-align: left;
    /* Align text to left for split layout */
    padding: 30px 0px;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* Gradient Blobs for background interest */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(87, 197, 182, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.hero::before {
    top: -100px;
    left: -100px;
}

.hero::after {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(26, 95, 122, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 100%;
    padding: 0;
    color: var(--text-main);
    z-index: 3;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .tagline {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(87, 197, 182, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    /* Soft shadow for depth */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 80%;
        margin: 0 auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }
}

/* ============================================
   5. FEATURES (WHY CHOOSE US)
   ============================================ */

.why-us {
    padding: 2rem 0;
    background: var(--bg-surface);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: transparent;
    height: 320px;
    perspective: 1000px;
    position: relative;
}

.feature-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.feature-card:hover .feature-card-inner {
    transform: rotateY(180deg);
}

.feature-card-front,
.feature-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.feature-card-front {
    background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
    color: var(--text-main);
}

.feature-card-back {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    transform: rotateY(180deg);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-card-front .feature-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.feature-icon-small {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    opacity: 0.9;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-height: 100%;
    width: auto;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card-front h3 {
    color: var(--primary);
}

.feature-card-back h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.feature-card-back p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile adjustments for flip cards */
@media (max-width: 768px) {
    .feature-card {
        height: 280px;
    }

    .feature-card-front,
    .feature-card-back {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        font-size: 3rem;
        height: 70px;
    }
}

/* ============================================
   6. JOURNEY TIMELINE
   ============================================ */

.journey {
    padding: 2rem 0;
    background: var(--bg-body);
}

.journey-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.journey-tagline {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-top: 5rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.journey-tagline strong {
    background: linear-gradient(120deg, var(--secondary) 0%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 3rem;
    display: block;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.journey-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.journey-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Connecting Line */
.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary);
    transform: translateX(-50%);
    opacity: 0.3;
}

.journey-hour {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 0 0 8px var(--bg-body);
    /* Position absolutely in the center */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.journey-content {
    width: 45%;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
}

/* Zig-zag arrangement */
.journey-step:nth-child(odd) .journey-content {
    margin-left: auto;
    /* Right side */
}

.journey-step:nth-child(even) .journey-content {
    margin-right: auto;
    /* Left side */
}

/* Arrows for tooltips effect */
.journey-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 15px;
    height: 15px;
    background: white;
    transform: translateY(-50%) rotate(45deg);
}

.journey-step:nth-child(odd) .journey-content::after {
    left: -7px;
}

.journey-step:nth-child(even) .journey-content::after {
    right: -7px;
}

.journey h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   7. SUBSCRIPTION PLANS
   ============================================ */

.subscribe {
    padding: 2rem 0;
    background: white;
}

.subscription-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--secondary);
}

.plan-card.featured {
    background: linear-gradient(145deg, #ffffff 0%, #e3f9f5 100%);
    border: 2px solid var(--secondary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.plan-card.featured:hover {
    transform: scale(1.08);
    /* slight lift on hover */
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--text-main);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0;
    font-family: 'Poppins', sans-serif;
}

.price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.plan-features {
    text-align: left;
    margin: 2rem 0;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* ============================================
   8. FAQ SECTION
   ============================================ */

/* ============================================
   8. FAQ SECTION (REDESIGNED)
   ============================================ */

.faq-section {
    padding: 2rem 0;
    background: var(--bg-body);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
}

.faq-sidebar h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.faq-sidebar p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.faq-content {
    width: 100%;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(87, 197, 182, 0.2);
}

.faq-question-header {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    user-select: none;
}

.faq-question-header h4 {
    font-size: 1.05rem;
    margin-bottom: 0;
    color: var(--text-main);
    font-weight: 500;
    flex: 1;
    padding-right: 1rem;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: white;
    /* Match card bg */
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    margin-top: -5px;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

@media (max-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-sidebar {
        position: static;
        text-align: center;
        margin-bottom: 1rem;
    }

    .faq-sidebar h2 {
        font-size: 2rem;
    }
}

/* ============================================
   9. FOOTER
   ============================================ */

.footer {
    background: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   10. FLOATING ELEMENTS
   ============================================ */

.floating-buttons {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 900;
}

.fab {
    width: 50px;
    height: 50px;
    background: var(--glass-border);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    color: var(--primary);
    background: white;
}

.fab:hover {
    transform: scale(1.1);
    color: var(--secondary);
}

/* ============================================
   11. ANIMATIONS
   ============================================ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animation Utility Classes */
.animate-on-scroll {
    opacity: 0;
    /* Hidden by default */
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    /* Animations handled by specific classes below when visible is added */
}

.fade-up.visible {
    animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-left.visible {
    animation: fadeLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-right.visible {
    animation: fadeRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.zoom-in.visible {
    animation: zoomIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Stagger Delays */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .journey-timeline::before {
        left: 2rem;
    }

    .journey-hour {
        position: static;
        margin: 0;
        transform: none;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }

    .journey-step {
        flex-direction: row;
        /* Keep icon left */
        justify-content: flex-start;
        align-items: flex-start;
    }

    .journey-step:nth-child(odd) .journey-content,
    .journey-step:nth-child(even) .journey-content {
        margin: 0;
        width: 100%;
    }

    .journey-content::after {
        left: -7px !important;
        right: auto !important;
    }
}

/* ============================================
   12. INTERNAL PAGE STYLES
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 8rem 0 4rem;
    /* Top padding acounts for fixed nav */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 2rem 0;
}

.content-section.alternate {
    background: var(--bg-body);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-header {
        padding: 2rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.content-image {
    position: relative;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    color: var(--secondary);
}

/* Benefits Grid */
.benefits-section {
    padding: 2rem 0;
    background: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.benefit-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Quality Assurance Steps */
.quality-section {
    padding: 2rem 0;
    background: var(--bg-surface);
}

.quality-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 0 0 5px rgba(87, 197, 182, 0.2);
}

.step h4 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.quality-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding-left: 0 !important;
    /* Override default padding */
}

.quality-list li::before {
    display: none;
    /* Remove default before */
}

.quality-list li i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============================================
   13. MISSION & CORE VALUES
   ============================================ */

.mission-statement {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--primary);
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
}

.values-section {
    padding: 2rem 0;
    background: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: var(--bg-surface);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(87, 197, 182, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--secondary);
    color: white;
    transform: scale(1.1);
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--primary);
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   14. CONTACT PAGE
   ============================================ */

.contact-section {
    padding: 2rem 0;
    background: var(--bg-body);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--primary);
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(87, 197, 182, 0.1);
    background: white;
}

.btn-block {
    width: 100%;
}

/* Contact Info Blocks */
.info-block {
    margin-bottom: 2rem;
    padding-left: 3.5rem;
    position: relative;
}

.info-block i {
    position: absolute;
    left: 0;
    top: 5px;
    width: 40px;
    height: 40px;
    background: rgba(26, 95, 122, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-block h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-dark);
}

.info-block p {
    color: var(--text-light);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.info-block p a {
    color: var(--text-main);
    font-weight: 500;
}

.info-block p a:hover {
    color: var(--secondary);
}

.small-text {
    font-size: 0.85rem !important;
    opacity: 0.8;
}

.social-links-large {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: var(--bg-body);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.social-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Service Area */
.service-area-section {
    padding: 2rem 0;
    background: var(--primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-area-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.service-area-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.service-area-section p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.service-area-check {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.input-group {
    display: flex;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
}

.location-input {
    flex: 1;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    outline: none;
    border-radius: var(--radius-full);
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.city-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: default;
}

.city-badge:hover {
    background: white;
    color: var(--primary);
    transform: scale(1.05);
}

/* Floating QR Code */
.fab-qr {
    background: white;
    color: var(--primary);
    position: relative;
    cursor: pointer;
}

.fab-qr:hover {
    background: var(--primary);
    color: white;
}

.qr-popup {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 200px;
    background: white;
    padding: 10px;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
    text-align: center;
}

.qr-popup img {
    width: 100%;
    display: block;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
}

.qr-popup span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
}

.qr-popup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
}

.fab-qr:hover .qr-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* ============================================
   12. RISK FREE SECTION
   ============================================ */
.risk-free-section {
    padding: 2rem 0;
    background: linear-gradient(to right, #ffffff, #f0f4f8);
    overflow: hidden;
}

.risk-free-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.risk-free-text {
    flex: 1;
}

.risk-free-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.risk-free-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(87, 197, 182, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--primary);
}

.benefit-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.risk-free-image {
    flex: 1;
    position: relative;
}

.risk-free-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.risk-free-image:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

@media (max-width: 900px) {
    .risk-free-content {
        flex-direction: column;
        text-align: center;
    }

    .risk-free-text {
        order: 2;
    }

    .risk-free-image {
        order: 1;
        margin-bottom: 2rem;
        max-width: 80%;
    }

    .benefits-list {
        text-align: left;
    }
}

/* Responsive Journey Timeline */
@media (max-width: 768px) {
    .journey-timeline::before {
        left: 20px;
    }

    .journey-step {
        justify-content: flex-start;
    }

    .journey-step:nth-child(odd) .journey-content,
    .journey-step:nth-child(even) .journey-content {
        width: calc(100% - 60px);
        margin-left: 60px;
        margin-right: 0;
    }

    .journey-hour {
        left: 20px;
    }

    /* Reset arrow to point left always */
    .journey-step:nth-child(odd) .journey-content::after,
    .journey-step:nth-child(even) .journey-content::after {
        left: -7px;
        right: auto;
    }
}

/* ============================================
   APP DOWNLOAD BUTTONS
   ============================================ */

.app-download-section {
    margin-top: 2rem;
}

.app-download-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.download-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #000;
    color: white;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid #000;
    min-width: 160px;
}

.app-btn:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.app-btn i {
    font-size: 2rem;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-btn-text .small {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.app-btn-text .large {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive adjustments for app buttons */
@media (max-width: 768px) {
    .app-buttons {
        flex-direction: column;
    }

    .app-btn {
        width: 100%;
        justify-content: center;
    }
}