/**
 * VDO Immigration Main Design System & CSS
 *
 * @package VDO_Immigration
 */

:root {
    --color-primary: #0B3D66;
    --color-primary-dark: #072a47;
    --color-accent: #E8A93A;
    --color-accent-hover: #cf932b;
    --color-text-dark: #1D1D1D;
    --color-text-light: #666666;
    --color-bg-light: #F6F8FB;
    --color-bg-white: #FFFFFF;
    --color-success: #1E8E3E;
    --font-headings: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primary);
}

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

a:hover {
    color: var(--color-accent);
}

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

/* Structure helper */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-padding {
    padding: 80px 0;
}

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

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

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* Typography Helpers */
.text-center { text-align: center; }
.text-white { color: #FFFFFF !important; }

/* Buttons & Interactive Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    font-family: var(--font-headings);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    box-shadow: 0 4px 15px rgba(11, 61, 102, 0.3);
}

.btn-accent {
    background-color: var(--color-accent);
    color: #FFFFFF;
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    box-shadow: 0 4px 15px rgba(232, 169, 58, 0.4);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn i {
    margin-right: 8px;
}

/* Header Top Bar & Sticky Nav */
.site-header {
    width: 100%;
    z-index: 1000;
    position: relative;
}

.top-bar {
    background-color: var(--color-primary-dark);
    color: #FFFFFF;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span,
.top-bar-right a {
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
}

.top-bar-left span i,
.top-bar-right a i {
    margin-right: 6px;
    color: var(--color-accent);
}

.top-bar-right a:hover {
    color: var(--color-accent);
}

/* Navigation Header */
.main-navigation-wrapper {
    background-color: var(--color-bg-white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    transition: padding 0.3s ease, position 0.3s ease;
}

.site-header.is-sticky .main-navigation-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    z-index: 999;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

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

.site-logo img {
    height: 50px;
    width: auto;
}

.site-logo-white {
    display: none;
}

.primary-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.primary-menu li {
    margin: 0 15px;
    position: relative;
}

.primary-menu li a {
    font-weight: 500;
    color: var(--color-text-dark);
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.primary-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-normal);
}

.primary-menu li a:hover::after,
.primary-menu li.current-menu-item a::after {
    width: 100%;
}

.primary-menu li a:hover,
.primary-menu li.current-menu-item a {
    color: var(--color-primary);
}

.header-action-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-action-buttons .nav-phone,
.header-action-buttons .nav-whatsapp {
    font-size: 1.1rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    transition: var(--transition-fast);
}

.header-action-buttons .nav-phone:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.header-action-buttons .nav-whatsapp:hover {
    background-color: #25D366;
    color: #FFFFFF;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    height: 620px;
    overflow: hidden;
    background-color: #072a47;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(7, 42, 71, 0.9) 40%, rgba(7, 42, 71, 0.4));
}

.slide-content-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    height: 100%;
    color: #FFFFFF;
}

.slide-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: var(--font-headings);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* Embedded Form styling in hero */
.hero-lead-form-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.hero-lead-form-container h3 {
    color: #FFFFFF;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-lead-form-container p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.vdo-form-group {
    margin-bottom: 15px;
    position: relative;
}

.vdo-form-group input,
.vdo-form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text-dark);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
}

.vdo-form-group input:focus,
.vdo-form-group select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(232, 169, 58, 0.3);
}

.form-urgency-note {
    font-size: 0.75rem;
    color: var(--color-accent);
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: #FFFFFF;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.slider-arrow-left { left: 20px; }
.slider-arrow-right { right: 20px; }

/* Trust Strip */
.trust-strip {
    background-color: var(--color-bg-white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-strip-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badge-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

.trust-badge i {
    font-size: 1.25rem;
    color: var(--color-success);
    margin-right: 8px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.service-card-icon {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card-link {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.service-card-link i {
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.service-card:hover .service-card-link i {
    transform: translateX(4px);
}

/* Countries Section */
.countries-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.country-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-md);
}

.country-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.country-card:hover img {
    transform: scale(1.08);
}

.country-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 42, 71, 0.95) 20%, rgba(7, 42, 71, 0.6) 60%, rgba(0, 0, 0, 0.1));
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #FFFFFF;
}

.country-overlay h3 {
    color: #FFFFFF;
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.country-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Process Timeline */
.process-timeline-wrapper {
    position: relative;
    margin-top: 50px;
}

.process-timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(11, 61, 102, 0.1);
    z-index: 1;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

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

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    border: 4px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.step-card:hover .step-number {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #FFFFFF;
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

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

/* Stats Section */
.why-choose-section {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    font-family: var(--font-headings);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Testimonials Carousel */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
}

.testimonial-card-inner {
    background-color: var(--color-bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    text-align: center;
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 30px;
    line-height: 1.7;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent);
}

.testimonial-meta h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.testimonial-meta span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(11, 61, 102, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--color-primary);
    width: 25px;
    border-radius: 5px;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    font-family: var(--font-headings);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background-color: rgba(11, 61, 102, 0.02);
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 0.95rem;
    color: var(--color-accent);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px; /* arbitrary height limit to support transitions */
}

/* CTA Banner */
.cta-banner-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner-content h2 {
    color: #FFFFFF;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-banner-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer Styling */
.site-footer {
    background-color: #072a47;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    font-size: 0.95rem;
    border-top: 4px solid var(--color-accent);
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-widget h3 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--color-accent);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-widget ul li a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-socials a:hover {
    background-color: var(--color-accent);
    color: #072a47;
}

.footer-contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info p i {
    color: var(--color-accent);
    margin-right: 12px;
    margin-top: 5px;
    font-size: 1rem;
}

/* Newsletter inline form */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    padding: 10px 12px;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    flex-grow: 1;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form button {
    background-color: var(--color-accent);
    color: #072a47;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--color-accent-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    font-size: 0.85rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 20px;
}

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

/* Persistent WhatsApp Floating FAB */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 99;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-floating:hover {
    transform: scale(1.1) rotate(10deg);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Exit-Intent Popup Styles */
.exit-intent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 42, 71, 0.85);
    z-index: 10000;
    display: none; /* controlled by JS */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.exit-intent-modal {
    background-color: var(--color-bg-white);
    max-width: 600px;
    width: 90%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: zoomIn 0.3s ease-out;
}

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

.exit-intent-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
}

.exit-modal-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 35px;
    color: #ffffff;
    text-align: center;
}

.exit-modal-banner i {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.exit-modal-banner h3 {
    color: #FFFFFF;
    font-size: 1.6rem;
    font-weight: 700;
}

.exit-modal-banner p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.exit-modal-body {
    padding: 30px;
}

.exit-modal-body form input {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    background: #FFF;
}

.exit-modal-body form button {
    width: 100%;
    margin-top: 10px;
}

/* Points Calculator widget styling */
.points-calculator-widget {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.calculator-steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    border-bottom: 2px solid var(--color-bg-light);
    padding-bottom: 15px;
}

.calc-step-tab {
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-step-tab.active {
    color: var(--color-primary);
}

.calc-step-tab span {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    color: var(--color-text-light);
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.calc-step-tab.active span {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.calculator-panel {
    display: none;
}

.calculator-panel.active {
    display: block;
}

.calculator-panel h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.calc-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.calc-option-card {
    border: 2px solid var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 15px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.calc-option-card:hover {
    border-color: rgba(11,61,102,0.2);
}

.calc-option-card.selected {
    border-color: var(--color-primary);
    background-color: rgba(11, 61, 102, 0.02);
}

.calc-option-card input[type="radio"] {
    display: none;
}

.calc-option-card strong {
    display: block;
    font-size: 0.95rem;
}

.calc-option-card span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.calc-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.calc-results-panel {
    text-align: center;
    padding: 20px 0;
}

.score-display {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 8px solid var(--color-accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.score-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.score-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.score-assessment {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-success);
    margin-bottom: 25px;
}

/* Mobile Sticky bottom conversion bar */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary-dark);
    display: none; /* shown in media query */
    grid-template-columns: 1.2fr 1fr 1fr;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}

.sticky-mobile-bar a {
    color: #FFFFFF;
    text-align: center;
    padding: 15px 5px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.sticky-mobile-bar a i {
    font-size: 1.1rem;
}

.sticky-mobile-bar a.mobile-cta-btn {
    background-color: var(--color-accent);
    color: #072a47;
}

.sticky-mobile-bar a.mobile-whatsapp-btn {
    background-color: #25D366;
}

.sticky-mobile-bar a.mobile-call-btn {
    background-color: var(--color-primary);
}

/* Standard pages */
.page-title-banner {
    background-color: var(--color-primary);
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
}

.page-title-banner h1 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.inner-page-layout {
    padding: 80px 0;
}

.inner-grid-layout {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 40px;
}

/* Sidebar Call to Action Box */
.sidebar-cta-widget {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #FFFFFF;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
}

.sidebar-cta-widget h3 {
    color: #FFFFFF;
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.sidebar-cta-widget p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.sidebar-cta-widget form input,
.sidebar-cta-widget form select {
    margin-bottom: 15px;
    font-size: 0.9rem;
    background: #FFF;
    border: none;
}

.sidebar-cta-widget form button {
    width: 100%;
}
