:root {
    --primary-navy: #1a3a52;
    --secondary-green: #2d5a3d;
    --accent-orange: #c55a2a;
    --accent-blue: #4a7c9e;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --white: #ffffff;

    /* New Premium Variables */
    --bg-soft: #f8fbff;
    --text-primary: #1a3a52;
}

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

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    /* Force vertical scrollbar to prevent layout shift between pages */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
}

.navbar-brand:hover {
    color: var(--accent-blue);
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    margin: 0 0.8rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-orange);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary-custom {
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #a84a22;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 90, 42, 0.3);
}

.btn-login {
    color: var(--primary-navy);
    font-weight: 600;
    margin-right: 1rem;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: rgba(26, 58, 82, 0.05);
    border-color: rgba(26, 58, 82, 0.1);
    color: var(--accent-orange);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.95), rgba(45, 90, 61, 0.9)),
        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1600') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 600px;
}

.btn-hero-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: #a84a22;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 90, 42, 0.4);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

/* Scroll Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--secondary-green);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    flex-grow: 1;
}

.service-link {
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.service-link:hover {
    color: var(--secondary-green);
    gap: 0.5rem;
}

.service-link i {
    margin-left: 0.3rem;
    transition: margin-left 0.3s ease;
}

.service-link:hover i {
    margin-left: 0.6rem;
}

/* Value Proposition Section */
.value-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.value-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(74, 124, 158, 0.3), rgba(45, 90, 61, 0.3)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=800') center/cover no-repeat;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.value-point {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
}

.value-point i {
    font-size: 1.8rem;
    color: var(--secondary-green);
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.value-point h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.value-point p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* CTA Form Section (Now Merged with Footer) */
.cta-strip {
    background: var(--primary-navy);
    padding: 5rem 0 3rem;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.cta-strip h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-strip p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.btn-cta-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    background-color: #a84a22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 90, 42, 0.4);
    color: var(--white);
}

.btn-cta-secondary {
    background-color: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.form-card {
    background: var(--white);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

.form-card h3 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.form-label {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    padding: 0.8rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.2rem rgba(197, 90, 42, 0.15);
}

.btn-submit {
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #a84a22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 90, 42, 0.4);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 5rem;
    color: rgba(26, 58, 82, 0.05);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.testimonial-author {
    margin-top: auto;
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.author-info h5 {
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
    color: var(--primary-navy);
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2c5270 100%);
    color: var(--white);
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-input-group {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    padding-right: 140px;
    /* Space for button */
}

.newsletter-input-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-input-group button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 40px;
    padding: 0 1.5rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-input-group button:hover {
    background-color: #a84a22;
}

/* About Content (Split Layout) */
.about-section {
    padding: 6rem 0;
    margin-top: 80px;
    /* To account for fixed navbar */
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text h2 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-orange);
}

.about-text p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-navy);
    padding: 4rem 0;
    color: var(--white);
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Mission & Vision Strip */
.mission-vision-strip {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-top: 4px solid var(--primary-navy);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-card h4 {
    margin: 1.5rem 0 1rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--primary-navy);
}

/* Values Section (Refined) */
.values-section-custom {
    padding: 6rem 0;
    background-color: var(--white);
}

.value-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: transparent;
}

.value-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(15, 35, 52, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-navy);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
    background-color: var(--primary-navy);
    color: var(--white);
}

.value-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

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

/* Mega Footer */
.footer {
    background-color: #0f2334;
    /* Deep Navy */
    color: #b0c4d6;
    /* Soft Blue-Gray */
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-brand p {
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 300px;
}

.contact-info p {
    margin: 0;
}

.contact-info a {
    color: #b0c4d6;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.contact-info i {
    margin-right: 0.6rem;
    color: var(--accent-orange);
    font-size: 1rem;
}

.contact-info a:hover i {
    color: var(--accent-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #b0c4d6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

/* Cinematic Hero */
.hero-small {
    background: linear-gradient(rgba(15, 35, 52, 0.7), rgba(15, 35, 52, 0.7)), url('../images/hero-about-new.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 0 6rem;
    color: var(--white);
    text-align: center;
    margin-top: -80px;
    /* Counteract navbar */
}

.hero-small h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-small p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--accent-orange);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--accent-orange);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -10px;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content .year {
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.team-card {
    border: none;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid var(--light-gray);
    position: relative;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.1);
}

.team-card h4 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.team-card span {
    color: var(--accent-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.team-social a {
    color: var(--dark-gray);
    margin: 0 5px;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--accent-orange);
}

/* Quality Section */
.quality-section {
    padding: 6rem 0;
    background-color: var(--primary-navy);
    color: var(--white);
}

.quality-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quality-card i {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.quality-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quality-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Partner Strip */
.partner-strip {
    padding: 3rem 0;
    background-color: #f1f4f8;
    text-align: center;
}

.partner-logo {
    font-weight: 800;
    color: #cbd5e1;
    font-size: 1.5rem;
    margin: 0 2rem;
    text-transform: uppercase;
    display: inline-block;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.8rem;
    border-radius: 5px;
    margin-bottom: 0.8rem;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-orange);
    box-shadow: none;
}

.newsletter-form .btn {
    width: 100%;
    background-color: var(--accent-orange);
    color: var(--white);
    font-weight: 600;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background-color: #a84a22;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
}

.social-icons a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Responsive Design & Mobile Menu */
@media (max-width: 991.98px) {

    /* Custom Animated Toggler */
    .custom-toggler {
        border: none;
        background: transparent !important;
        padding: 0;
        width: 32px;
        height: 24px;
        position: relative;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .custom-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .hamburger-icon {
        width: 30px;
        height: 20px;
        position: relative;
        transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer;
    }

    .hamburger-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--primary-navy);
        border-radius: 9px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    .hamburger-icon span:nth-child(1) {
        top: 0px;
    }

    .hamburger-icon span:nth-child(2) {
        top: 8px;
    }

    .hamburger-icon span:nth-child(3) {
        top: 16px;
    }

    /* Open State */
    .custom-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
        top: 8px;
        transform: rotate(135deg);
        background: var(--accent-orange);
    }

    .custom-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }

    .custom-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
        top: 8px;
        transform: rotate(-135deg);
        background: var(--accent-orange);
    }

    /* Mobile Menu Container - Premium Full Screen */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        padding: 6rem 2rem 3rem;
        border-top: none;
        box-shadow: none;
        border-radius: 0;
        display: flex !important;
        flex-direction: column;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 990;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    /* Mobile Nav Links */
    .navbar-nav {
        text-align: center;
        margin-top: 0;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .nav-item {
        margin: 0.8rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        width: 100%;
        text-align: center;
    }

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

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-collapse.show .nav-item:nth-child(1) {
        transition-delay: 0.05s;
    }

    .navbar-collapse.show .nav-item:nth-child(2) {
        transition-delay: 0.1s;
    }

    .navbar-collapse.show .nav-item:nth-child(3) {
        transition-delay: 0.15s;
    }

    .navbar-collapse.show .nav-item:nth-child(4) {
        transition-delay: 0.2s;
    }

    .navbar-collapse.show .nav-item:nth-child(5) {
        transition-delay: 0.25s;
    }

    .navbar-collapse.show .nav-item:nth-child(6) {
        transition-delay: 0.3s;
    }

    .nav-link {
        font-size: 2rem;
        font-weight: 800;
        padding: 0.5rem 0;
        display: inline-block;
        color: var(--primary-navy);
        letter-spacing: -0.5px;
        transition: color 0.3s ease;
    }

    .nav-link:hover,
    .nav-link:active {
        color: var(--accent-orange);
    }

    .nav-link::after {
        display: none;
        /* Hide hover underline on mobile */
    }

    /* Mobile Buttons */
    .navbar-collapse.show .btn-login-outline,
    .navbar-collapse.show .btn-primary-custom {
        width: 100% !important;
        text-align: center;
        justify-content: center;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .navbar-collapse.show .btn-login-outline {
        border-width: 2px;
    }

    /* Mobile Header/Logo inside Menu */
    .mobile-menu-logo {
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
    }

    .navbar-collapse.show .mobile-menu-logo {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-collapse.show .nav-item:nth-child(1) {
        transition-delay: 0.15s;
    }

    .navbar-collapse.show .nav-item:nth-child(2) {
        transition-delay: 0.25s;
    }

    .navbar-collapse.show .nav-item:nth-child(3) {
        transition-delay: 0.35s;
    }

    .navbar-collapse.show .nav-item:nth-child(4) {
        transition-delay: 0.45s;
    }

    .navbar-collapse.show .nav-item:nth-child(5) {
        transition-delay: 0.55s;
    }

    .navbar-collapse.show .nav-item:nth-child(6) {
        transition-delay: 0.65s;
    }

    /* Mobile Footer inside Menu */
    .mobile-menu-footer {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease 0.4s, transform 0.3s ease 0.4s;
    }

    .navbar-collapse.show .mobile-menu-footer {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu-footer .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(26, 58, 82, 0.05);
        color: var(--primary-navy) !important;
        transition: all 0.3s ease;
    }

    .mobile-menu-footer .social-icons a:hover {
        background: var(--accent-orange);
        color: var(--white) !important;
        transform: translateY(-3px);
    }

    /* Hero Responsive */
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .value-image {
        height: 300px;
        margin-bottom: 2rem;
    }

    .form-card {
        padding: 2rem 1.5rem;
    }
}

/* =========================================
   Modern SaaS Design Overrides (Over Ons Page)
   ========================================= */

/* Typography & General */
.tracking-tight {
    letter-spacing: -0.5px;
}

.lh-lg {
    line-height: 1.8;
}

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

.bg-soft {
    background-color: #f8fbff;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Feature Cards (Global) */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Counter Animation Helpers */
.counter {
    font-variant-numeric: tabular-nums;
}


/* =========================================
   Premium Navigation Upgrades
   ========================================= */

.premium-nav {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.2rem 0;
    transition: all 0.4s ease;
}

.premium-nav.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.brand-text {
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(45deg, var(--primary-navy), #2c5270);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-dot {
    color: var(--accent-orange);
    font-size: 2.5rem;
    line-height: 0;
    position: relative;
    top: 5px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
    margin: 0 1rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
    opacity: 0;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-navy);
}





/* Premium Buttons */
.btn-login-outline {
    color: var(--primary-navy);
    border: 1px solid rgba(26, 58, 82, 0.2);
    border-radius: 50px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-login-outline:hover {
    border-color: var(--primary-navy);
    background-color: var(--bg-soft);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.btn-nav-cta {
    border-radius: 50px;
    padding: 0.6rem 1.6rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(197, 90, 42, 0.25);
}

.btn-nav-cta:hover {
    box-shadow: 0 6px 20px rgba(197, 90, 42, 0.35);
    transform: translateY(-2px);
}

/* WhatsApp Scroller Styles */
.testimonial-scroller-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.testimonial-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.whatsapp-card {
    background-color: #dcf8c6;
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    flex-shrink: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #303030;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-card:nth-child(even) {
    background-color: #fff;
    border-color: #e0e0e0;
}

.wa-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.wa-name {
    font-weight: bold;
    color: #075e54;
}

.wa-time {
    color: #999;
    font-size: 0.75rem;
}

.wa-body {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    .testimonial-scroller-wrapper {
        padding: 10px 0;
    }

    .whatsapp-card {
        min-width: 250px;
        max-width: 280px;
        padding: 12px 15px;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .hero-section p {
        font-size: 1.1rem;
    }

    .footer-brand img {
        max-height: 40px !important;
    }

    .about-floating-card {
        padding: 1rem;
        max-width: 200px;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        animation: none;
        text-align: center;
    }

    .about-img-group {
        padding-left: 0;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .newsletter-input-group {
        display: flex;
        flex-direction: column;
    }

    .newsletter-input-group input {
        padding-right: 1.5rem;
        margin-bottom: 10px;
    }

    .newsletter-input-group button {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        padding: 0.8rem;
    }

    .services-section,
    .value-section,
    .about-trust-section,
    .testimonials-section,
    .newsletter-section,
    .process-section {
        padding: 4rem 0 !important;
    }

    /* Center Footer Content on Mobile */
    .footer {
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p.slogan {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
    }

    .social-icons a {
        margin-right: 0 !important;
        /* Override desktop margin */
        margin: 0 0.25rem;
    }

    .contact-info a {
        justify-content: center;
    }

    .footer-bottom-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .footer-bottom-links a {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .whatsapp-card {
        min-width: 220px;
        /* Allow cards to be smaller on very narrow screens if needed, 
           but 250px is usually safe. */
    }

    .navbar-brand img {
        height: 35px;
    }
}

/* --- Modern Hero Redesign --- */
.hero-modern {
    position: relative;
    background-color: var(--primary-navy);
    /* Fallback */
    /* Mesh Gradient Background */
    background: radial-gradient(circle at 10% 20%, rgb(26, 58, 82) 0%, rgb(18, 41, 58) 90%);
    overflow: hidden;
    padding-top: 80px;
    /* Navbar space */
}

/* Background Animated Orbs/Glows */
.hero-modern::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(45, 90, 61, 0.4) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    animation: pulseGlow 10s infinite alternate;
}

.hero-modern::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(197, 90, 42, 0.2) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    animation: pulseGlow 8s infinite alternate-reverse;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Typography Enhancements */
.text-highlight {
    color: transparent;
    background: linear-gradient(90deg, #fff, #c55a2a);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 800;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Hero Buttons Overrides */
.btn-hero-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(197, 90, 42, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-hero-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-hero-primary:hover::after {
    left: 100%;
}

/* Visuals Area */
.visual-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    /* Relative to col-lg-6 */
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%232D5A3D' d='M44.7,-76.4C58.9,-69.2,71.8,-59.1,81.6,-46.6C91.4,-34.1,98.1,-19.2,95.8,-5.3C93.5,8.6,82.2,21.5,70.6,32.3C59,43.1,47.1,51.8,35.1,59.8C23.1,67.8,11,75.1,-2.4,79.2C-15.8,83.3,-30.5,84.2,-43.3,77.7C-56.1,71.2,-67,57.3,-75.4,42.1C-83.8,26.9,-89.7,10.4,-88.3,-5.3C-86.9,-21,-78.2,-35.9,-66.6,-47.3C-55,-58.7,-40.5,-66.6,-26.1,-73.6C-11.7,-80.6,2.6,-86.7,14.7,-84.9C26.8,-83.1,30.5,-101.9,44.7,-76.4Z' transform='translate(100 100)' opacity='0.05'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
    z-index: 0;
    animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-main-img {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-main-img:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

/* Floating Glass Cards */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    /* Slightly more opaque for better readability */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.floating-card {
    position: absolute;
    z-index: 10;
    min-width: 160px;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    left: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 3s;
}

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

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

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

.icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.avatar-group .avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    border: 2px solid white;
    margin-right: -10px;
}

/* Shape Divider */
.hero-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-shape-divider .shape-fill {
    fill: var(--white);
    /* Matches next section background */
}

/* Responsive Fixes specific to Hero */
@media (max-width: 991px) {
    .card-1 {
        left: 5%;
    }

    .card-2 {
        right: 5%;
    }

    .hero-main-img {
        transform: none;
        margin-top: 2rem;
    }
}

/* =========================================
   NEW MODERN HERO SECTION STYLES
   ========================================= */

/* Override old hero background */
.hero-section {
    background: radial-gradient(circle at top right, #1e4d6b, #0f2334) !important;
    /* Deep Premium Navy/Teal */
    min-height: 100vh;
    /* Full screen impact */
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    /* Offset fixed navbar */
    overflow: hidden;
}

/* Gradient Text Effect */
.text-gradient {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Glass Badge */
.badge-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Typography Overrides */
.hero-section h1 {
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-section p.lead {
    font-weight: 400;
    line-height: 1.6;
}

/* Trust Avatars */
.avatar-sm {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

/* Hero Visual Composition */
.composition-wrapper {
    position: relative;
    padding: 2rem;
    z-index: 2;
}

.main-hero-img {
    border-radius: 20px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.composition-wrapper:hover .main-hero-img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Floating Cards Common */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: float 6s ease-in-out infinite;
    z-index: 3;
    min-width: 200px;
}

.card-verified {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-savings {
    bottom: 15%;
    right: -5%;
    animation-delay: 3s;
}

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

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

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

/* Background Blob */
.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.2) 0%, rgba(0, 242, 254, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* Bottom Shape */
.hero-shape-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

/* Mobile Responsiveness for Hero */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
        text-align: center;
    }

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

    .hero-text p {
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .trust-avatars {
        justify-content: center;
    }

    /* Visual is hidden on mobile via d-none d-lg-block class in HTML, 
       but if we wanted to show it, we'd style it here */
}

/* =========================================
   HERO V2 (RESPONSIVE & PREMIUM) STYLES
   ========================================= */

/* Cleaner Background: Deep Charcoal/Dark Blue */
.hero-section {
    background: radial-gradient(circle at top right, #1a3a52, #0b1a26) !important;
    padding-top: 100px;
    /* More space for navbar */
    padding-bottom: 80px;
    min-height: auto;
    /* Allow content to dictate height on mobile */
}

@media (min-width: 992px) {
    .hero-section {
        min-height: 90vh;
        /* Full height on desktop */
        padding-top: 80px;
    }
}

/* Glass Badge V2 */
.glass-badge-v2 {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.glass-badge-v2:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.bg-accent {
    background-color: var(--accent-orange) !important;
}

/* Typography V2 */
.fw-extra-bold {
    font-weight: 800;
}

.leading-tight {
    line-height: 1.1;
}

.text-gradient-v2 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.text-white-opacity {
    color: rgba(255, 255, 255, 0.85);
}

/* Button V2 */
.btn-primary-glow {
    background-color: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(197, 90, 42, 0.4);
}

.btn-primary-glow:hover {
    background-color: #e0602e;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 90, 42, 0.6);
    color: white;
}

/* Avatars Stack */
.avatars-stack {
    display: flex;
}

.avatars-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #1a3a52;
    margin-left: -15px;
    object-fit: cover;
}

.avatars-stack img:first-child {
    margin-left: 0;
}

/* Hero Visual V2 */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.shadow-hero {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glow Effect */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.3), transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    filter: blur(50px);
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

/* Mobile Adjustments */
/* Mobile & Tablet Responsiveness */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
        text-align: center;
    }

    .display-4 {
        font-size: 2.5rem;
        /* Readable on tablet/mobile */
    }

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
    }

    .hero-actions {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    /* Center the avatars stack on mobile/tablet */
    .hero-actions .d-flex {
        justify-content: center;
    }

    .floating-badge-v2 {
        display: none !important;
        /* Keep clean on smaller screens */
    }

    .hero-image-wrapper {
        margin-top: 1rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 600px;
        /* Prevent massive images on tablets */
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .display-4 {
        font-size: 2rem;
    }

    .btn-primary-glow {
        width: 100%;
    }
}

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

/* Premium Trust 'Over Ons' Section */
.about-trust-section {
    padding: 8rem 0;
    background-color: var(--white);
    overflow: hidden;
    /* Prevent floating elements from causing scroll */
}

.about-img-group {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 2rem;
}

.about-main-img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.about-floating-card {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
    max-width: 250px;
    border-left: 5px solid var(--accent-orange);
    animation: float 6s ease-in-out infinite;
}

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

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

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

.about-floating-card h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0;
    line-height: 1;
}

.about-floating-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.check-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--primary-navy);
    font-weight: 500;
}

.check-list li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background: rgba(45, 90, 61, 0.1);
    /* Secondary Green tint */
    color: var(--secondary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.check-list li:hover::before {
    background: var(--secondary-green);
    color: var(--white);
    transform: scale(1.1);
}

.pattern-dots {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--accent-blue) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 0;
}

/* B2B / Zakelijk Page Styles */
.b2b-hero {
    background: linear-gradient(135deg, #0f2334 0%, #1a3a52 100%);
    padding: 8rem 0 6rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.b2b-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=1600&q=80') center/cover no-repeat;
    opacity: 0.1;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.b2b-hero-content {
    position: relative;
    z-index: 2;
}

/* Process Timeline (Vertical) */
.process-section {
    padding: 6rem 0;
    background-color: var(--bg-soft);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #e0e0e0;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--accent-orange);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-icon {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Tech Integration Cards */
.tech-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-orange);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

/* Responsive Timeline */
@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .left::after,
    .right::after {
        left: 21px;
    }

    .right {
        left: 0%;
    }
}

/* =========================================
   B2B Premium Hero Section
   ========================================= */
.b2b-hero-premium {
    position: relative;
    /* Deep Corporate Gradient */
    background: radial-gradient(circle at 70% 20%, #2a3b55 0%, #0a192f 100%);
    padding: 8rem 0 6rem;
    overflow: hidden;
    color: white;
}

/* Abstract Network Overlay */
.b2b-hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 1;
}

.b2b-hero-content {
    position: relative;
    z-index: 2;
}

/* Glassmorphism Dashboard 3D Container */
.glass-dashboard-container {
    perspective: 1500px;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.glass-dashboard {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease-out;
    animation: float-3d 6s ease-in-out infinite;
}

.glass-dashboard:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

@keyframes float-3d {

    0%,
    100% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(-20px);
    }
}

/* Dashboard Internal Elements */
.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.dash-stat-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dash-stat-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
}

.dash-graph {
    height: 120px;
    background: linear-gradient(90deg, rgba(255, 193, 7, 0) 0%, rgba(255, 193, 7, 0.1) 100%);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
    display: flex;
    align-items: flex-end;
}

.dash-graph-bar {
    flex: 1;
    margin: 0 4px;
    background: var(--accent-orange);
    opacity: 0.7;
    border-radius: 4px 4px 0 0;
}

/* Floating Pills */
.floating-stat-pill {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    color: #0a192f;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 3;
    animation: float 5s ease-in-out infinite;
    min-width: 180px;
}

.pill-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.pill-2 {
    bottom: 30px;
    left: -40px;
    animation-delay: 2.5s;
}

/* Typography Overrides */
.text-gradient-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   Premium Partner Modal
   ========================================= */
.modal-premium-content {
    border: none;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.modal-premium-header {
    background: linear-gradient(135deg, #0f2334 0%, #1a3a52 100%);
    padding: 2rem;
    border-bottom: 4px solid var(--accent-orange);
    position: relative;
}

.modal-premium-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}

.modal-premium-header .btn-close:hover {
    opacity: 1;
}

.modal-usp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.modal-usp-list li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-usp-list li i {
    color: var(--accent-orange);
}

.form-floating-custom>.form-control {
    border: 2px solid #eaecf0;
    border-radius: 12px;
    padding-left: 1rem;
}

.form-floating-custom>.form-control:focus {
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 4px rgba(15, 35, 52, 0.1);
}

.form-floating-custom>label {
    padding-left: 1rem;
    color: var(--text-secondary);
}

/* =========================================
   Custom Multi-select Dropdown
   ========================================= */
.custom-multiselect .dropdown-toggle {
    width: 100%;
    text-align: left;
    background: white;
    border: 2px solid #eaecf0;
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-multiselect .dropdown-toggle::after {
    margin-left: auto;
}

.custom-multiselect .dropdown-menu {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
}

.custom-multiselect .form-check {
    padding: 0.5rem 1rem;
    margin: 0;
    transition: background 0.2s;
    border-radius: 8px;
    cursor: pointer;
}

.custom-multiselect .form-check:hover {
    background-color: var(--bg-soft);
}

.custom-multiselect .form-check-input {
    cursor: pointer;
}

.custom-multiselect .form-check-label {
    cursor: pointer;
    width: 100%;
    display: inline-block;
}

/* =========================================
   Responsive Fixes for Modal & Dropdown
   ========================================= */
@media (max-width: 768px) {
    .modal-premium-header {
        padding: 1.5rem;
    }

    .modal-premium-header h4 {
        font-size: 1.25rem;
    }

    .modal-body {
        padding: 1.5rem !important;
    }

    .custom-multiselect .dropdown-toggle {
        font-size: 0.9rem;
        padding: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        /* Change flex to block for ellipsis to work */
        position: relative;
        padding-right: 2rem;
        /* Space for arrow */
    }

    .custom-multiselect .dropdown-toggle::after {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
}

/* Checkbox Alignment Tweak */
.custom-multiselect .form-check {
    padding-left: 2.5rem !important;
    /* Move everything right */
}

.custom-multiselect .form-check-input {
    margin-left: -1.8rem !important;
    /* Position checkbox correctly in padding */
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.15em;
}

/* =========================================
   Custom Single Select Dropdown (Contact)
   ========================================= */
.custom-select-dropdown .dropdown-toggle {
    width: 100%;
    text-align: left;
    background: white;
    border: 2px solid #eaecf0;
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 58px;
    /* Match standard inputs */
}

.custom-select-dropdown .dropdown-toggle::after {
    margin-left: auto;
}

.custom-select-dropdown .dropdown-toggle:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.25rem rgba(197, 90, 42, 0.15);
}

.custom-select-dropdown .dropdown-menu {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

.custom-select-dropdown .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 500;
    color: var(--primary-navy);
}

.custom-select-dropdown .dropdown-item:hover {
    background-color: var(--bg-soft);
    color: var(--accent-orange);
}


/* =========================================
   Zakelijk Redesign V2 (Premium)
   ========================================= */

/* 1. Premium Process Section */
/* =========================================
   Zakelijk Redesign V4 (High-Fidelity)
   ========================================= */

/* 1. Safe Trust Bar (No Overlap) */
.trust-bar-section {
    padding: 2rem 0;
    margin-top: -2rem;
    /* Slight negative margin for tightness, not overlap */
}

.trust-bar-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.divide-vertical>div:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* 2. Glassmorphic Dashboard */
.dashboard-container-glass {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 40px 80px -20px rgba(50, 50, 93, 0.15),
        0 30px 60px -30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    position: relative;
    height: 450px;
}

/* Sidebar */
.glass-sidebar {
    width: 60px;
    background: #f8f9fa;
    border-right: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.sidebar-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #a0aec0;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-icon.active,
.sidebar-icon:hover {
    background: #e6fffa;
    color: var(--primary-navy);
}

/* Content Area */
.glass-content {
    flex: 1;
    padding: 2rem;
    background: radial-gradient(circle at top right, rgba(248, 251, 255, 0.8), #ffffff);
}

.user-profile-sm {
    width: 32px;
    height: 32px;
    background: #cbd5e0;
    border-radius: 50%;
}

.glass-stat-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.glass-list {
    margin-top: 1rem;
}

.glass-list-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.glass-list-item:hover {
    background: #f8fafc;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* 3. Partner Strip */
.partner-strip-section {
    position: relative;
    overflow: hidden;
}

.grayscale-logos i {
    color: #cbd5e0;
    transition: all 0.3s;
}

.grayscale-logos i:hover {
    color: var(--primary-navy);
    transform: scale(1.1);
}

/* 4. Refined Horizontal Process */
.process-steps-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.step-h {
    text-align: center;
    position: relative;
    width: 160px;
    z-index: 2;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-navy);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.step-connector {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
    margin-top: 24px;
}

/* 5. Pre-Footer Gradient */
.bg-gradient-navy {
    background: linear-gradient(135deg, #1a3a52 0%, #162e42 100%);
    position: relative;
}

.bg-gradient-navy::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 0h20L0 20z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

/* Responsive V4 */
@media (max-width: 768px) {
    .divide-vertical>div:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .trust-bar-section {
        margin-top: 0;
    }

    .dashboard-container-glass {
        height: auto;
        flex-direction: row;
        /* Keep sidebar */
    }

    .process-steps-horizontal {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .step-connector {
        display: none;
    }
}

/* Cookie Consent Modal - Premium */
.cookie-modal {
    position: fixed;
    bottom: -120%;
    right: 20px;
    width: calc(100% - 40px);
    max-width: 420px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16), 0 4px 16px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    transition: bottom 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.cookie-modal.show {
    bottom: 24px;
}

/* Top gradient accent bar */
.cookie-modal::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, #f0a060 100%);
}

.cookie-content {
    padding: 1.75rem 1.75rem 1.5rem;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-icon-badge {
    background: var(--accent-orange);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(197, 90, 42, 0.3);
}

.cookie-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-navy);
}

.cookie-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.btn-cookie-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 90, 42, 0.2);
}

.btn-cookie-primary:hover {
    background-color: #e06c3e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 90, 42, 0.4);
}

.btn-cookie-secondary {
    background-color: transparent;
    color: var(--primary-navy);
    border: 1.5px solid rgba(26, 58, 82, 0.2);
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-secondary:hover {
    background-color: rgba(26, 58, 82, 0.05);
    border-color: var(--primary-navy);
    color: var(--primary-navy);
    transform: translateY(-1px);
}

@media (max-width: 576px) {
    .cookie-modal {
        left: 20px;
        bottom: -120%;
        padding: 1.8rem;
    }

    .cookie-modal.show {
        bottom: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-cookie-primary,
    .btn-cookie-secondary {
        width: 100%;
        text-align: center;
        padding: 0.7rem 1.5rem;
    }

    .cookie-header h4 {
        font-size: 1.3rem;
    }

    .cookie-icon-badge {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}