:root {
            --navy: #0A2140;
            --crimson: #B41943;
            --white: #FFFFFF;
            --slate-light: #F4F6F9;
            --slate-border: #E2E8F0;
            --text-main: #1A202C;
            --text-muted: #4A5568;
            --shadow-sm: 0 2px 4px rgba(10,33,64,0.04);
            --shadow-md: 0 10px 30px rgba(10,33,64,0.08);
            --shadow-lg: 0 20px 40px rgba(10,33,64,0.12);
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Inter', sans-serif; background-color: var(--white); color: var(--text-main); line-height: 1.6; -webkit-font-smoothing: antialiased; }

        h1, h2, h3, h4, h5 { font-family: 'Manrope', sans-serif; color: var(--navy); font-weight: 800; }
        a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        .container { width: 92%; max-width: 1320px; margin: 0 auto; }
        .section-padding { padding: 100px 0; }
        .bg-light { background-color: var(--slate-light); }
        .bg-navy { background-color: var(--navy); color: var(--white); }

        /* Typography Helpers */
        .section-badge { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--crimson); background: rgba(180, 25, 67, 0.08); padding: 6px 14px; border-radius: 50px; margin-bottom: 16px; }
        .bg-navy .section-badge { background: rgba(255, 255, 255, 0.1); color: var(--white); }
        .section-title { font-size: 2.5rem; letter-spacing: -0.5px; margin-bottom: 16px;line-height: 1.2;}
        .section-subtitle { font-size: 1.125rem; color: var(--text-muted); max-width: 650px; margin-bottom: 50px; }
        .bg-navy .section-subtitle { color: #A0AEC0; }
        .text-center { text-align: center; }
        .text-center .section-subtitle { margin-left: auto; margin-right: auto; }

        /* Buttons */
        .btn { display: inline-flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.95rem; padding: 14px 28px; border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent; transition: all 0.25s ease; gap: 8px; }
        .btn-primary { background-color: var(--crimson); color: var(--white); }
        .btn-primary:hover { background-color: #901234; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(180, 25, 67, 0.3); }
        .btn-navy { background-color: var(--navy); color: var(--white); }
        .btn-navy:hover { background-color: #051326; transform: translateY(-2px); }
        .btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
        .btn-outline:hover { background: var(--navy); color: var(--white); }
        .btn-white { background: var(--white); color: var(--navy); }
        .btn-white:hover { background: var(--slate-light); transform: translateY(-2px); }

         /*--- STICKY NAVIGATION --- */
        header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--slate-border); box-shadow: var(--shadow-sm); }
        .nav-wrapper { display: flex; align-items: center; justify-content: space-between; height: 85px; }
        .logo { font-size: 1.6rem; font-weight: 900; font-family: 'Manrope', sans-serif; color: var(--navy); letter-spacing: -0.5px; }
        .logo span { color: var(--crimson); }
        
        .nav-menu { display: flex; align-items: center; gap: 24px; }
        .nav-item { position: relative; padding: 30px 0; }
        .nav-link { font-size: 0.9rem; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 4px; }
        .nav-link:hover { color: var(--crimson); }
        .nav-link i { font-size: 0.75rem; opacity: 0.7; }

         Mega Menus 
        .mega-menu { position: absolute; top: 100%; left: -20px; width: 320px; background: var(--white); border: 1px solid var(--slate-border); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 16px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.25s ease; display: grid; gap: 8px; }
        .mega-menu-wide { width: 680px; grid-template-columns: repeat(2, 1fr); }
        .nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        
        .mega-item { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: var(--radius-sm); }
        .mega-item:hover { background: var(--slate-light); }
        .mega-icon { width: 36px; height: 36px; background: rgba(10, 33, 64, 0.05); color: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
        .mega-item:hover .mega-icon { background: var(--crimson); color: var(--white); }
        .mega-text { display: flex; flex-direction: column; }
        .mega-title { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
        .mega-desc { font-size: 0.75rem; color: var(--text-muted); }
        
        
       
        /* --- HERO SECTION --- */
        .hero { position: relative; background: linear-gradient(135deg, var(--navy) 0%, #051326 100%); color: var(--white); padding: 110px 0 130px; overflow: hidden; }
        .hero-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(#FFFFFF 1px, transparent 1px); background-size: 24px 24px; }
        .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
        
        .hero-content h1 { font-size: 3.25rem; color: var(--white); line-height: 1.15; letter-spacing: -1px; margin-bottom: 20px; }
        .hero-content h1 span { color: var(--crimson); position: relative; }
        .hero-content p { font-size: 1.15rem; color: #A0AEC0; margin-bottom: 32px; max-width: 540px; }
        .hero-ctas { display: flex; gap: 16px; align-items: center; }

        .hero-form-card { background: var(--white); border-radius: var(--radius-md); padding: 36px; box-shadow: var(--shadow-lg); color: var(--text-main); }
        .hero-form-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
        .hero-form-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 24px; }
        
        .form-group { margin-bottom: 16px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .form-control { width: 100%; padding: 12px 14px; font-family: inherit; font-size: 0.9rem; border: 1fr solid var(--slate-border); border-radius: var(--radius-sm); outline: none; transition: border-color 0.2s; background: #FAFAFA; }
        .form-control:focus { border-color: var(--navy); background: var(--white); }
        textarea.form-control { resize: none; height: 80px; }
        .form-btn { width: 100%; padding: 14px; margin-top: 8px; font-size: 1rem; }

        /* --- SECTION 1: STATS --- */
        .stats-bar { margin-top: -50px; position: relative; z-index: 10; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 36px 20px; border: 1px solid var(--slate-border); }
        .stat-item { text-align: center; border-right: 1px solid var(--slate-border); }
        .stat-item:last-child { border-right: none; }
        .stat-number { font-size: 2.75rem; font-family: 'Manrope', sans-serif; font-weight: 800; color: var(--crimson); line-height: 1; margin-bottom: 8px; }
        .stat-label { font-size: 0.875rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }
        @media (max-width:991px){

    .stats-bar{
        margin-top:-35px;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
        padding:25px;
    }

    .stat-item{
        border-right:none;
        border-bottom:1px solid var(--slate-border);
        padding-bottom:20px;
    }

    .stat-item:nth-last-child(-n+2){
        border-bottom:none;
        padding-bottom:0;
    }

    .stat-number{
        font-size:2.2rem;
    }

}
        @media (max-width:767px){

    .stats-bar{
        margin-top:25px;
    }

    .stats-grid{
        grid-template-columns:1fr;
        padding:20px;
        gap:18px;
    }

    .stat-item{
        border:none;
        border-bottom:1px solid var(--slate-border);
        padding-bottom:18px;
    }

    .stat-item:last-child{
        border-bottom:none;
        padding-bottom:0;
    }

    .stat-number{
        font-size:2rem;
    }

    .stat-label{
        font-size:.8rem;
    }

}


        /* --- SECTION 2: OUR SERVICES --- */
        .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .service-card { background: var(--white); border: 1px solid var(--slate-border); border-radius: var(--radius-md); padding: 36px; transition: all 0.3s ease; position: relative; top: 0; }
        .service-card:hover { top: -6px; box-shadow: var(--shadow-md); border-color: rgba(10,33,64,0.15); }
        .service-icon-box { width: 54px; height: 54px; background: rgba(180, 25, 67, 0.06); color: var(--crimson); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 24px; }
        .service-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
        .service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }
        .service-link { font-size: 0.875rem; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
        .service-card:hover .service-link { color: var(--crimson); }

        /* --- SECTION 3: BUSINESS PLAN CATEGORIES --- */
        .categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .category-card { background: var(--white); border-radius: var(--radius-md); padding: 24px; border: 1px solid var(--slate-border); transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: space-between; height: 200px; }
        .category-card:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-4px); }
        .category-card:hover h4, .category-card:hover p { color: var(--white); }
        .category-icon { font-size: 1.75rem; color: var(--crimson); margin-bottom: 12px; }
        .category-card:hover .category-icon { color: var(--white); }
        .category-card h4 { font-size: 1.1rem; margin-bottom: 6px; }
        .category-card p { font-size: 0.8rem; color: var(--text-muted); }
        .category-arrow { align-self: flex-end; color: var(--crimson); font-size: 0.9rem; }
        .category-card:hover .category-arrow { color: var(--white); }

        /* --- SECTION 4: HOW IT WORKS --- */
        .how-works-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .timeline { position: relative; border-left: 2px solid var(--slate-border); padding-left: 30px; margin-left: 15px; }
        .timeline-step { position: relative; margin-bottom: 32px; }
        .timeline-step:last-child { margin-bottom: 0; }
        .timeline-bullet { position: absolute; left: -41px; top: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--white); border: 4px solid var(--crimson); }
        .timeline-step h4 { font-size: 1.1rem; margin-bottom: 4px; }
        .timeline-step p { font-size: 0.875rem; color: var(--text-muted); }
        
        /* Cropped Sketch Section Frames */
        .sketch-frame { border-radius: var(--radius-md);overflow: hidden; }
        .sketch-crop-l1 { height: 380px; object-fit: cover; object-position: 50% 28%; width: 100%; 
            /* filter: grayscale(100%) contrast(110%); */
         }
        .sketch-crop-l2 { height: 420px; object-fit: cover; object-position: 50% 0%; width: 83%; 
            /* filter: grayscale(100%) contrast(110%);  */
        }
        .sketch-crop-l3 { height: 350px; object-fit: cover; object-position: 50% 48%; width: 100%; filter: grayscale(100%) contrast(110%); }
        .sketch-crop-l4 { height: 380px; object-fit: cover; object-position: 50% 75%; width: 100%; filter: grayscale(100%) contrast(110%); }

        /* --- SECTION 5: WHY CHOOSE US --- */
        .reasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .reason-card { background: var(--white); padding: 30px 20px; border-radius: var(--radius-md); border: 1px solid var(--slate-border); text-align: center; }
        .reason-icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(10,33,64,0.05); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 16px; }
        .reason-card h4 { font-size: 1rem; margin-bottom: 8px; }
        .reason-card p { font-size: 0.8rem; color: var(--text-muted); }

        /* --- SECTION 6: VISA BUSINESS PLANS --- */
        .visa-box { display: grid; grid-template-columns: 0.8fr 0.8fr; gap: 0px; align-items: center; background: var(--slate-light); border-radius: var(--radius-lg); padding: 50px; border: 1px solid var(--slate-border); }
        .visa-tags { display: flex; gap: 12px; margin: 20px 0 30px; flex-wrap: wrap; }
        .visa-tag { background: var(--white); border: 1px solid var(--slate-border); padding: 10px 18px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; color: var(--navy); display: flex; align-items: center; gap: 8px; }

        /* --- SECTION 7: PITCH DECK --- */
        .deck-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
        .deck-card { background: var(--navy); color: var(--white); padding: 24px; border-radius: var(--radius-md); }
        .deck-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
        .deck-card p { font-size: 0.8rem; color: #A0AEC0; }

        /* --- SECTION 8: MARKETING SOLUTIONS --- */
        .marketing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
        .mkt-card { background: var(--white); border: 1px solid var(--slate-border); border-radius: var(--radius-md); padding: 24px 16px; text-align: center; }
        .mkt-card i { font-size: 2rem; color: var(--crimson); margin-bottom: 12px; }
        .mkt-card h4 { font-size: 0.95rem; }

        /* --- SECTION 9: SUCCESS STORIES --- */
        .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .testi-card { background: var(--white); border-radius: var(--radius-md); padding: 32px; border: 1px solid var(--slate-border); box-shadow: var(--shadow-sm); }
        .stars { color: #F59E0B; font-size: 0.85rem; margin-bottom: 16px; }
        .testi-quote { font-size: 0.95rem; font-style: italic; color: var(--text-main); margin-bottom: 24px; }
        .testi-author { display: flex; align-items: center; gap: 12px; }
        .author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; }

        /* --- SECTION 10: RECENT PLANS (PORTFOLIO) --- */
        .portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .portfolio-card { background: var(--slate-light); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--slate-border); }
        .portfolio-cover { height: 220px; background: var(--navy); display: flex; flex-direction: column; justify-content: center; align-items: center; color: var(--white); text-align: center; padding: 20px; }
        .portfolio-cover h4 { color: var(--white); font-size: 1.25rem; }
        .portfolio-info { padding: 20px; background: var(--white); }
        .portfolio-info span { font-size: 0.75rem; font-weight: 700; color: var(--crimson); text-transform: uppercase; }

        /* --- SECTION 11: ABOUT COMPANY --- */
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

        /* --- SECTION 12: FAQ --- */
        .faq-wrapper { max-width: 800px; margin: 0 auto; }
        .faq-item { background: var(--white); border: 1px solid var(--slate-border); border-radius: var(--radius-sm); margin-bottom: 16px; overflow: hidden; }
        .faq-header { padding: 20px; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-body { padding: 0 20px 20px; font-size: 0.9rem; color: var(--text-muted); display: none; }
        .faq-item.active .faq-body { display: block; }

        /* --- SECTION 13: FINAL CTA --- */
        .cta-banner { background: linear-gradient(135deg, var(--crimson) 0%, #80102E 100%); color: var(--white); border-radius: var(--radius-lg); padding: 70px 40px; text-align: center; }
        .cta-banner h2 { color: var(--white); font-size: 2.75rem; margin-bottom: 16px; }
        .cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }

        /* --- FOOTER --- */
        footer { background: var(--navy); color: var(--white); padding: 80px 0 30px; border-top: 4px solid var(--crimson); }
        .footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 40px; margin-bottom: 60px; }
        .footer-brand p { color: #A0AEC0; font-size: 0.875rem; margin: 16px 0 24px; max-width: 300px; }
        .footer-col h5 { color: var(--white); font-size: 0.95rem; margin-bottom: 20px; letter-spacing: 0.5px; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: #A0AEC0; font-size: 0.85rem; }
        .footer-links a:hover { color: var(--white); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: #A0AEC0; }

        /* Media Queries for Strict Desktop First Layout */
        @media (max-width: 1024px) {
            .hero-grid, .how-works-grid, .about-grid, .visa-box { grid-template-columns: 1fr; }
            .services-grid, .testimonials-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
            .categories-grid, .reasons-grid, .deck-features { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .nav-menu { display: none; }
        }


/* Page end */


/* map image */


/* Core Reset for this section */
.fc-trust-section, .fc-trust-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 1. Main Section Style - Improved Background */
.fc-trust-section {
    /* Changed to a smoother, deeper maroon-black gradient */
    background: #F4F6F9;
    color: #0A2140;
    font-family: 'Montserrat', sans-serif; /* Example premium font */
    padding: 100px 20px; /* Increased padding for premium space */
    display: flex;
    justify-content: center;
}

.fc-trust-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 2. Map Image Style - Integrated and Premium */
.fc-map-wrapper {
    width: 100%;
    max-width: 900px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.fc-map-image-container {
    background-color: transparent; /* Changed from white to transparent to integrate map */
    border-radius: 20px;
    padding: 10px; /* Reduced padding */
    /* Add a subtle glow to make the map pop */
    /* box-shadow: 0 0 50px rgba(160, 20, 50, 0.1);  */
}

.fc-map-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Optional: Slight color adjustment to integrate with deep maroon background */
    filter: brightness(0.95) contrast(1.05); 
}

/* 3. Text Content - Improved Hierarchy and Design */
.fc-trust-content {
    text-align: center;
    max-width: 750px;
    margin-bottom: 70px;
}

.fc-section-title {
    font-size: 42px; /* Increased size for impact */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.fc-section-title span {
    /* Main Accent Color from your brand (lighter maroon) */
    color: #df214d;
}

.fc-section-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #0A2140
}

/* 4. Statistics Cards Style - Modern and Clean */
.fc-stats-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap; /* Important for responsiveness */
}

.fc-stat-card {
    /* Glassmorphism style, integrated with the maroon theme */
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    flex: 1; /* Stretch to fill space evenly */
    min-width: 280px; /* Base size for cards */
    max-width: 350px; /* Max size to keep them neat */
    display: flex;
    align-items: center; /* Vertically center icon and text */
    gap: 20px; /* Space between icon and text info */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #0A2140;
}

.fc-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(223, 33, 77, 0.4); /* Highlight border on hover */
    background: rgba(223, 33, 77, 0.03); /* Slight tint on hover */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.fc-icon-holder {
    /* Icon style from maroon brand */
    color: #df214d;
    background-color: rgba(223, 33, 77, 0.15);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevents icon from shrinking */
}

.fc-icon-holder svg {
    width: 30px;
    height: 30px;
}

.fc-stat-info {
    flex-grow: 1;
}

.fc-stat-number {
    font-size: 48px; /* Increased size for impact */
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    color: #0A2140;
    letter-spacing: -2px;
}

.fc-stat-label {
    font-size: 16px;
    font-weight: 500;
    color: #0A2140;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 5. Mobile Responsiveness */
@media (max-width: 900px) {
    .fc-section-title {
        font-size: 32px;
    }
    .fc-trust-section {
        padding: 60px 15px;
    }
    .fc-stats-grid {
        justify-content: center;
    }
    .fc-stat-card {
        padding: 30px;
    }
}


/* //footer form */
 /* --- 2-Column Split Section --- */
        .cta-form-section {
            padding: 60px 20px;
            display: flex;
            justify-content: center;
            background-color: #ffffff;
        }

        .cta-form-container {
            background-color: #b81d43; /* Funded Brand Red */
            border-radius: 20px;
            padding: 40px;
            max-width: 1050px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr; /* 50/50 Split */
            gap: 40px;
            align-items: center;
            box-shadow: 0 15px 35px rgba(184, 29, 67, 0.2);
            color: #ffffff;
        }

        /* --- LEFT COLUMN (Form Container) --- */
        .cta-left-col {
            background: #ffffff;
            padding: 30px;
            border-radius: 14px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .form-title {
            font-size: 20px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 20px;
        }

        .cta-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .form-field {
            display: flex;
            flex-direction: column;
        }

        .form-field label {
            font-size: 12px;
            font-weight: 600;
            color: #444444;
            margin-bottom: 5px;
            text-align: left;
        }

        .input-wrap {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-icon {
            position: absolute;
            left: 12px;
            color: #b81d43;
            font-size: 13px;
            pointer-events: none;
            z-index: 2;
        }

        .textarea-icon {
            top: 12px;
        }

        .input-wrap input,
        .input-wrap select,
        .input-wrap textarea {
            width: 100%;
            padding: 10px 12px 10px 36px;
            font-size: 13px;
            border: 1px solid #e1e1e1;
            border-radius: 6px;
            outline: none;
            background-color: #ffffff;
            color: #333333;
            font-family: inherit;
            transition: all 0.2s ease;
        }

        .input-wrap textarea {
            resize: vertical;
        }

        .input-wrap input:focus,
        .input-wrap select:focus,
        .input-wrap textarea:focus {
            border-color: #b81d43;
            box-shadow: 0 0 0 3px rgba(184, 29, 67, 0.1);
        }

        .cta-submit-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: #b81d43;
            color: #ffffff;
            font-size: 15px;
            font-weight: 700;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-top: 5px;
        }

        .cta-submit-btn:hover {
            background-color: #9a1636;
        }

        /* --- RIGHT COLUMN (Text & Contact Info) --- */
        .cta-right-col {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cta-title {
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .cta-subtitle {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* Benefits Checkmarks */
        .cta-benefits {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 30px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
        }

        .benefit-item i {
            color: #ffffff;
            font-size: 16px;
        }

        /* Direct Contact Info */
        .cta-contact-direct {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
        }

        .direct-title {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 10px;
        }

        .direct-link {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            font-size: 15px;
            font-weight: 600;
        }

        .direct-link a {
            color: #ffffff;
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .direct-link a:hover {
            opacity: 0.8;
        }

        /* Mobile Responsive */
        @media (max-width: 850px) {
            .cta-form-container {
                grid-template-columns: 1fr;
                padding: 30px 20px;
            }

            .cta-right-col {
                order: -1; /* Mobile par text upar aayega */
            }

            .cta-title {
                font-size: 26px;
            }
        }

    /* modal  */

     /* --- Modal Backdrop --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    display: none; /* Default Hidden */
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

/* --- Main Modal Card Container --- */
.modal-card {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 820px;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Close Button (×) */
.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #888888;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: #b81d43;
}

/* --- LEFT SIDEBAR (Red Theme) --- */
.modal-sidebar {
    background-color: #b81d43; /* Funded Brand Red Color */
    color: #ffffff;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
}

.author-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
    color: #ffffff;
}

.author-title {
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.author-quote {
    font-size: 13px;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 20px 0;
}

.sidebar-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
}

/* --- RIGHT SIDEBAR (Form Area) --- */
.modal-content-side {
    padding: 35px 35px 35px 30px;
}

.modal-heading {
    font-size: 22px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 4px;
}

.modal-subheading {
    font-size: 13px;
    color: #666666;
    margin-bottom: 22px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.modal-form-group {
    display: flex;
    flex-direction: column;
}

.modal-form-group label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #555555;
    margin-bottom: 5px;
}

.modal-form-group input,
.modal-form-group select,
.modal-form-group textarea {
    width: 100%;
    padding: 9px 12px;
    font-size: 13px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    background-color: #f8fafc;
    color: #333333;
    outline: none;
    font-family: inherit;
    transition: all 0.2s ease;
}

.modal-form-group input:focus,
.modal-form-group select:focus,
.modal-form-group textarea:focus {
    border-color: #b81d43;
    background-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(184, 29, 67, 0.1);
}

/* Submit Button */
.modal-submit-btn {
    margin-top: 8px;
    background-color: #b81d43; /* Brand Red */
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

.modal-submit-btn:hover {
    background-color: #9a1636;
}

/* Responsive Mobile Layout */
@media (max-width: 680px) {
    .modal-card {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-sidebar {
        padding: 25px 20px;
    }

    .modal-content-side {
        padding: 25px 20px;
    }

    .modal-form-row {
        grid-template-columns: 1fr;
    }
}

/* social footer */

.footer-social {
    padding: 0px 10px;
}


/* //price */


 :root {
            --pr-primary: #0A2140;
            --pr-accent: #B41943;
            --pr-white: #FFFFFF;
            --pr-bg-light: #F8FAFC;
            --pr-border: #E6EAF0;
            --pr-text-dark: #1E293B;
            --pr-text-muted: #64748B;
            
            /* Package Badge Colors */
            --pr-badge-blue: #2563EB;
            --pr-badge-travel: #0D9488;
            --pr-badge-gold: #D97706;
            --pr-badge-green: #16A34A;
            --pr-badge-platinum: #4F46E5;
            --pr-badge-black: #0F172A;

            --pr-shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
            --pr-shadow-md: 0 4px 6px -1px rgba(10, 33, 64, 0.05), 0 2px 4px -1px rgba(10, 33, 64, 0.03);
            --pr-shadow-lg: 0 10px 25px -5px rgba(10, 33, 64, 0.08), 0 8px 10px -6px rgba(10, 33, 64, 0.03);
            --pr-shadow-xl: 0 20px 30px -10px rgba(10, 33, 64, 0.12);
        }

        .pr-body-wrapper {
            font-family: 'Inter', sans-serif;
            background-color: var(--pr-bg-light);
            color: var(--pr-text-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .pr-body-wrapper *, 
        .pr-body-wrapper *::before, 
        .pr-body-wrapper *::after {
            box-sizing: border-box;
        }

        /* .pr-body-wrapper h1, 
        .pr-body-wrapper h2, 
        .pr-body-wrapper h3, 
        .pr-body-wrapper h4, 
        .pr-body-wrapper h5, 
        .pr-body-wrapper h6 {
            font-family: 'Manrope', sans-serif;
            color: var(--pr-primary);
            line-height: 1.25;
            margin: 0;
            padding: 0;
        } */

        .pr-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Buttons */
        .pr-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            font-size: 0.95rem;
            border: 1px solid transparent;
        }

        .pr-btn-primary {
            background-color: var(--pr-accent);
            color: var(--pr-white);
        }

        .pr-btn-primary:hover {
            background-color: #981437;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(180, 25, 67, 0.25);
        }

        .pr-btn-secondary {
            background-color: var(--pr-primary);
            color: var(--pr-white);
        }

        .pr-btn-secondary:hover {
            background-color: #14325c;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(10, 33, 64, 0.2);
        }

        .pr-btn-outline {
            background-color: transparent;
            border-color: var(--pr-border);
            color: var(--pr-primary);
        }

        .pr-btn-outline:hover {
            background-color: #F1F5F9;
            border-color: #CBD5E1;
        }

        .pr-btn-full {
            width: 100%;
        }

        /* Header */
        .pr-header {
            background: var(--pr-white);
            border-bottom: 1px solid var(--pr-border);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .pr-nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .pr-logo {
            font-family: 'Manrope', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--pr-primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pr-logo-mark {
            width: 12px;
            height: 24px;
            background: var(--pr-accent);
            border-radius: 3px;
            display: inline-block;
        }

        .pr-nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .pr-nav-links a {
            text-decoration: none;
            color: var(--pr-text-dark);
            font-weight: 500;
            transition: color 0.2s;
        }

        .pr-nav-links a:hover {
            color: var(--pr-accent);
        }

        /* Hero Section */
        .pr-hero {
            padding: 80px 0;
            background: #0A2140;
        }

        .pr-hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
        }

        .pr-hero-content h1 {
            font-size: 3.2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .pr-hero-content p {
            font-size: 1.15rem;
            color: var(--pr-text-muted);
            margin-bottom: 36px;
            max-width: 90%;
        }

        .pr-hero-ctas {
            display: flex;
            gap: 16px;
        }

        .pr-hero-illustration {
            width: 100%;
            height: auto;
        }

        /* Pricing Introduction */
        .pr-intro-section {
            padding: 40px 0 80px;
        }

        .pr-intro-card {
            background: var(--pr-white);
            border-radius: 16px;
            border: 1px solid var(--pr-border);
            padding: 48px;
            box-shadow: var(--pr-shadow-md);
        }

        .pr-intro-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .pr-intro-header h2 {
            font-size: 2rem;
            margin-bottom: 12px;
        }

        .pr-intro-header p {
            color: var(--pr-text-muted);
            font-size: 1.05rem;
        }

        .pr-icon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .pr-icon-card {
            background: var(--pr-bg-light);
            border: 1px solid var(--pr-border);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .pr-icon-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--pr-shadow-sm);
            background: var(--pr-white);
        }

        .pr-icon-card svg {
            width: 36px;
            height: 36px;
            margin-bottom: 12px;
            stroke: var(--pr-primary);
        }

        .pr-icon-card h4 {
            font-size: 1rem;
            font-weight: 600;
        }

        /* Pricing Packages Section */
        .pr-packages-section {
            padding: 40px 0 100px;
        }

        .pr-section-title {
            text-align: center;
            font-size: 2.4rem;
            margin-bottom: 16px;
        }

        .pr-section-subtitle {
            text-align: center;
            color: var(--pr-text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .pr-packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .pr-package-card {
            background: var(--pr-white);
            border-radius: 20px;
            border: 1px solid var(--pr-border);
            padding: 40px 32px;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: var(--pr-shadow-sm);
        }

        .pr-package-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--pr-shadow-xl);
        }

        .pr-package-card.pr-highlighted {
            border: 2px solid var(--pr-accent);
        }

        .pr-package-card.pr-platinum {
            border: 2px solid var(--pr-primary);
            background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
        }

        .pr-package-card.pr-exclusive {
            background: var(--pr-primary);
            color: var(--pr-white);
            border: none;
        }

        .pr-package-card.pr-exclusive h3,
        .pr-package-card.pr-exclusive .pr-package-price,
        .pr-package-card.pr-exclusive .pr-best-for-title {
            color: var(--pr-white);
        }

        .pr-package-card.pr-exclusive .pr-package-desc,
        .pr-package-card.pr-exclusive .pr-best-for-list li {
            color: #94A3B8;
        }

        .pr-package-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .pr-package-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--pr-bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pr-package-card.pr-exclusive .pr-package-icon {
            background: rgba(255, 255, 255, 0.1);
        }

        .pr-badge {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 6px 12px;
            border-radius: 50px;
            letter-spacing: 0.05em;
            color: var(--pr-white);
        }

        .pr-badge-blue { background: var(--pr-badge-blue); }
        .pr-badge-travel { background: var(--pr-badge-travel); }
        .pr-badge-gold { background: var(--pr-badge-gold); }
        .pr-badge-green { background: var(--pr-badge-green); }
        .pr-badge-platinum { background: var(--pr-badge-platinum); }
        .pr-badge-black { background: var(--pr-badge-black); border: 1px solid rgba(255,255,255,0.2); }

        .pr-package-title {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .pr-package-price {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--pr-primary);
            margin-bottom: 16px;
        }

        .pr-package-desc {
            font-size: 0.95rem;
            color: var(--pr-text-muted);
            margin-bottom: 28px;
            min-height: 48px;
        }

        .pr-best-for-container {
            border-top: 1px solid var(--pr-border);
            padding-top: 24px;
            margin-bottom: 28px;
            flex-grow: 1;
        }

        .pr-package-card.pr-exclusive .pr-best-for-container {
            border-top-color: rgba(255,255,255,0.1);
        }

        .pr-best-for-title {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--pr-primary);
            margin-bottom: 16px;
        }

        .pr-best-for-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pr-best-for-list li {
            font-size: 0.9rem;
            color: var(--pr-text-dark);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pr-best-for-list li svg {
            width: 16px;
            height: 16px;
            stroke: var(--pr-accent);
            flex-shrink: 0;
        }

        .pr-package-card.pr-exclusive .pr-best-for-list li svg {
            stroke: #38BDF8;
        }

        .pr-package-note {
            background: #FEF2F2;
            border: 1px solid #FEE2E2;
            color: #991B1B;
            padding: 10px 14px;
            border-radius: 8px;
            font-size: 0.8rem;
            margin-bottom: 24px;
        }

        .pr-package-card.pr-exclusive .pr-package-note {
            background: rgba(255,255,255,0.05);
            border-color: rgba(255,255,255,0.1);
            color: #E2E8F0;
        }

        .pr-package-buttons {
            display: flex;
            gap: 12px;
        }

        /* Comparison Section */
        .pr-comparison-section {
            padding: 80px 0;
            background: var(--pr-white);
            border-top: 1px solid var(--pr-border);
            border-bottom: 1px solid var(--pr-border);
        }

        .pr-table-wrapper {
            overflow-x: auto;
            border-radius: 16px;
            border: 1px solid var(--pr-border);
            box-shadow: var(--pr-shadow-sm);
        }

        .pr-comparison-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            background: var(--pr-white);
        }

        .pr-comparison-table th, 
        .pr-comparison-table td {
            padding: 20px 24px;
            border-bottom: 1px solid var(--pr-border);
        }

        .pr-comparison-table th {
            background: var(--pr-bg-light);
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--pr-primary);
        }

        .pr-comparison-table tr:last-child td {
            border-bottom: none;
        }

        .pr-comparison-table td:first-child {
            font-weight: 600;
            color: var(--pr-primary);
            width: 25%;
        }

        .pr-check-icon {
            width: 22px;
            height: 22px;
            stroke: var(--pr-accent);
        }

        /* Why Different Section */
        .pr-why-section {
            padding: 100px 0;
        }

        .pr-why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .pr-why-card {
            background: var(--pr-white);
            border: 1px solid var(--pr-border);
            border-radius: 12px;
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: var(--pr-shadow-sm);
        }

        .pr-why-card svg {
            width: 28px;
            height: 28px;
            stroke: var(--pr-accent);
            flex-shrink: 0;
        }

        .pr-why-card span {
            font-weight: 700;
            color: var(--pr-primary);
            font-size: 1rem;
        }

        /* Process Section */
        .pr-process-section {
            padding: 80px 0;
            background: var(--pr-white);
            border-top: 1px solid var(--pr-border);
        }

        .pr-timeline {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            margin-top: 40px;
        }

        .pr-timeline-step {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 0 16px;
        }

        .pr-timeline-icon-wrap {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--pr-bg-light);
            border: 2px solid #901234;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }

        .pr-timeline-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: var(--pr-border);
            z-index: 1;
        }

        .pr-timeline-step h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        /* FAQ Accordion */
        .pr-faq-section {
            padding: 100px 0;
        }

        .pr-faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .pr-faq-item {
            background: var(--pr-white);
            border: 1px solid var(--pr-border);
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
        }

        .pr-faq-question {
            width: 100%;
            padding: 24px;
            background: none;
            border: none;
            text-align: left;
            font-family: 'Manrope', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--pr-primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .pr-faq-question svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s;
        }

        .pr-faq-item.pr-active .pr-faq-question svg {
            transform: rotate(180deg);
        }

        .pr-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 24px;
            color: var(--pr-text-muted);
        }

        .pr-faq-item.pr-active .pr-faq-answer {
            max-height: 200px;
            padding: 0 24px 24px 24px;
        }

        /* Final CTA */
        .pr-final-cta {
            padding: 80px 0;
        }

        .pr-cta-banner {
            background: var(--pr-primary);
            border-radius: 24px;
            padding: 80px 40px;
            text-align: center;
            color: var(--pr-white);
            background-image: radial-gradient(circle at top right, rgba(180, 25, 67, 0.2), transparent 40%);
        }

        .pr-cta-banner h2 {
            color: var(--pr-white);
            font-size: 2.8rem;
            margin-bottom: 16px;
        }

        .pr-cta-banner p {
            color: #94A3B8;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .pr-cta-banner .pr-hero-ctas {
            justify-content: center;
        }

        /* Footer */
        .pr-footer {
            background: var(--pr-primary);
            color: var(--pr-white);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .pr-footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .pr-footer-col p {
            color: #94A3B8;
            margin-top: 16px;
            max-width: 300px;
        }

        .pr-footer-col h5 {
            color: var(--pr-white);
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .pr-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pr-footer-links li {
            margin-bottom: 12px;
        }

        .pr-footer-links a {
            color: #94A3B8;
            text-decoration: none;
            transition: color 0.2s;
        }

        .pr-footer-links a:hover {
            color: var(--pr-white);
        }

        .pr-footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            color: #64748B;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .pr-packages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .pr-why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .pr-hero-grid {
                grid-template-columns: 1fr;
            }
            .pr-packages-grid {
                grid-template-columns: 1fr;
            }
            .pr-nav-links {
                display: none;
            }
            .pr-timeline {
                flex-direction: column;
                gap: 30px;
            }
            .pr-timeline-step:not(:last-child)::after {
                display: none;
            }
            .pr-why-grid {
                grid-template-columns: 1fr;
            }
            .pr-footer-grid {
                grid-template-columns: 1fr;
            }
        }