/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #165b91;
    --primary-blue: #4a90e2;
    --light-blue: #e8f4f8;
    --dark-gray: #4A4A4A;
    --medium-gray: #6A6A6A;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-dark: #4A4A4A;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
}

.header .container {
    max-width: 1400px;
    position: relative;
    /* Allow more width for the menu */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    /* Reduced vertical padding */
    gap: 20px;
    /* minimum gap between logo, nav, btn */
}

.logo img {
    height: auto;
    width: auto;
    max-width: 200px;
    /* Increased size to match screenshot */
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 15px;
    /* Reduced gap to fit more items */
    align-items: center;
}

.nav-list>li {
    position: relative;
    padding: 10px 0;
    /* Increase hit area / space for dropdown trigger */
}

.nav-list a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    /* Slightly bolder for readability */
    transition: color 0.3s;
    font-size: 14px;
    /* Reduced text size to fit structure */
    white-space: nowrap;
    /* Prevent text wrapping */
    display: block;
}

.nav-list a:hover {
    color: var(--primary-orange);
}

.header-cta .btn {
    padding: 8px 20px;
    font-size: 14px;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(48, 48, 48, 0.8), rgba(48, 48, 48, 0.8)),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1920') center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(48, 48, 48, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.service-strip {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary,
.btn-orange {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.btn-primary:hover,
.btn-orange:hover {
    background: #D67D1F;
    border-color: #D67D1F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 141, 43, 0.3);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-gray);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    padding: 0;
    border: none;
    background: none;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-white {
    background: var(--white);
}

.section-light {
    background: var(--light-gray);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--medium-gray);
    margin-bottom: 50px;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.who-we-are-image {
    position: relative;
}

.who-we-are-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
}

.content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-image-section {
    margin-bottom: 40px;
}

.content-block p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--medium-gray);
}

.content-block .lead {
    font-size: 22px;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.highlight-box {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-orange);
}

.highlight-box h3 {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 24px;
}

.goal-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-orange);
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--light-gray);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3,
.service-card p,
.service-card a {
    padding: 0 25px;
}

.service-title {
    color: var(--primary-orange);
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 15px;
    padding-top: 25px;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    padding-bottom: 0;
    flex-grow: 1;
}

.service-card .btn-link {
    padding: 0 25px 25px;
    margin-top: auto;
    text-align: left;
    display: block;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Industries List */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
    margin-top: 30px;
}

.industries-grid li {
    padding: 12px;
    background: var(--white);
    border-radius: 5px;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.industries-grid li i {
    color: var(--primary-orange);
}

.industries-note {
    text-align: center;
    font-size: 18px;
    color: var(--dark-gray);
    margin-top: 40px;
    font-weight: 500;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Trust List */
.trust-list {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 40px;
}

.trust-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.trust-list li {
    padding: 15px;
    background: var(--white);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--medium-gray);
}

.trust-list li i {
    color: var(--primary-orange);
    font-size: 20px;
}

/* CTA Banner */
.cta-banner {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

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

.footer-column ul li a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 1200px) {
    .header-content {
        flex-wrap: wrap;
        /* Allow wrapping */
        padding: 15px 0;
    }

    .mobile-menu-btn {
        display: block !important;
        /* Force show on mobile */
    }

    /* Hide nav and cta by default on mobile */
    .nav,
    .header-cta {
        display: none;
        width: 100%;
        text-align: center;
    }

    /* Show when active */
    .nav.active,
    .header-cta.active {
        display: block;
        margin-top: 20px;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .nav-list a {
        display: block;
        padding: 10px;
        border-bottom: 1px solid var(--light-gray);
    }

    .header-cta {
        margin-top: 20px;
    }

    /* Fix hero text size */
    .hero-headline {
        font-size: 32px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-banner h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile Menu Button - Default Hidden */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 5px;
}

/* Page Banner */
.page-banner {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 700;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image-placeholder,
.contact-image-placeholder,
.choose-image-placeholder,
.ready-image-placeholder {
    margin-bottom: 30px;
}

.image-placeholder {
    background: var(--light-gray);
    border: 2px dashed var(--medium-gray);
    border-radius: 8px;
    padding: 80px 20px;
    text-align: center;
    color: var(--medium-gray);
}

.image-placeholder i {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.image-placeholder p {
    font-size: 14px;
    margin: 0;
}

/* About Page Images */
.about-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.about-image-placeholder .about-image,
.choose-image-placeholder .about-image {
    max-height: 400px;
    object-fit: cover;
}

.ready-image-placeholder .about-image {
    max-width: 600px;
    margin: 0 auto 30px;
    display: block;
}

.mission-box {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-orange);
}

.mission-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-orange);
    margin: 0;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.serve-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.serve-item:hover {
    transform: translateY(-5px);
}

.serve-item i {
    font-size: 40px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.serve-item h4 {
    color: var(--dark-gray);
    font-size: 18px;
}

.serve-note {
    text-align: center;
    font-size: 18px;
    color: var(--dark-gray);
    margin-top: 40px;
    font-weight: 500;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--medium-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    color: var(--primary-orange);
    font-size: 22px;
    margin-bottom: 15px;
}

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

.choose-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.choose-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.choose-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.choose-item i {
    color: var(--primary-orange);
    font-size: 24px;
    margin-top: 5px;
}

.choose-item h4 {
    color: var(--dark-gray);
    font-size: 18px;
    margin-bottom: 8px;
}

.choose-item p {
    color: var(--medium-gray);
    margin: 0;
}

.services-overview {
    margin-top: 40px;
}

.services-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.services-list li {
    padding: 15px;
    background: var(--white);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--medium-gray);
}

.services-list li i {
    color: var(--primary-orange);
}

.services-note {
    text-align: center;
    font-size: 18px;
    color: var(--dark-gray);
    margin-top: 40px;
    font-weight: 500;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--medium-gray);
}

.ready-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ready-text {
    font-size: 20px;
    color: var(--dark-gray);
    margin: 30px 0;
}

.ready-contact {
    margin: 30px 0;
}

.ready-contact p {
    font-size: 18px;
    color: var(--medium-gray);
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ready-contact i {
    color: var(--primary-orange);
}

/* Contact Page Styles */
.contact-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.contact-intro-text .lead {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-info-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 32px;
    color: var(--primary-orange);
}

.contact-info-item h3 {
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.contact-info-item p {
    color: var(--medium-gray);
    margin: 5px 0;
}

.service-note {
    font-size: 14px;
    color: var(--medium-gray);
    font-style: italic;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.btn-green {
    background: #28a745;
    color: var(--white);
    border-color: #28a745;
}

.btn-green:hover {
    background: #218838;
    border-color: #218838;
}

.hours-content {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 30px;
}

.hours-item {
    background: var(--white);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 18px;
    color: var(--medium-gray);
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.why-contact-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.why-contact-item i {
    font-size: 36px;
    color: var(--primary-orange);
}

.why-contact-item p {
    color: var(--dark-gray);
    font-weight: 500;
    margin: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 18px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 5px;
    transition: all 0.3s;
}

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

.social-link i {
    font-size: 24px;
}

/* Commercial Brokerage Page */
.page-content {
    max-width: 1280px;
    margin: 0 auto;
}

.page-content h2 {
    color: var(--dark-gray);
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.brokerage-features {
    margin-top: 50px;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 8px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: start;
    background: var(--white);
    padding: 20px;
    border-radius: 5px;
}

.feature-item i {
    color: var(--primary-orange);
    font-size: 24px;
    margin-top: 5px;
}

.feature-item h3 {
    color: var(--dark-gray);
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--medium-gray);
    font-size: 14px;
    margin: 0;
}

.cta-section {
    margin-top: 50px;
    padding: 40px;
    background: var(--light-blue);
    border-radius: 8px;
    text-align: center;
}

.cta-section h2 {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Responsive additions */
@media (max-width: 768px) {

    .about-content,
    .contact-intro,
    .choose-content,
    .who-we-are-content {
        grid-template-columns: 1fr;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .form-container {
        padding: 25px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .who-we-are-image {
        margin-bottom: 30px;
        order: -1;
    }
}

/* Dropdown Menu Styles */
.nav-list .dropdown {
    position: relative;
    cursor: pointer;
}

.nav-list .dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1100;
    padding: 10px 0;
    list-style: none;
    /* Ensure no bullet points */
}

.nav-list .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-gray);
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: var(--light-blue);
    color: var(--primary-orange);
    padding-left: 25px;
    /* Slight movement effect */
}

/* Mobile Dropdown styles */
/* Mobile Dropdown styles */
@media (max-width: 1200px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        /* Hide by default on mobile */
        padding-left: 15px;
        background: var(--light-gray);
        width: 100%;
    }

    /* Show dropdown when active class is added via JS */
    .nav-list .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-list .dropdown>a .fa-chevron-down {
        transition: transform 0.3s;
    }

    .nav-list .dropdown.active>a .fa-chevron-down {
        transform: rotate(180deg);
    }
}

/* Mega Menu Styles */
.mega-menu {
    position: relative;
}

.mega-menu-content {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    padding: 20px 25px;
    width: 100%;
    max-width: 1200px;
    min-width: 1000px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
    border-top: 3px solid var(--primary-orange);
    margin-top: 0;
}

/* Ensure columns align properly */
.mega-menu-column {
    min-width: 0;
}

.nav-list .mega-menu:hover .mega-menu-content,
.mega-menu-content:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Ensure mega menu stays visible when hovering */
.mega-menu:hover .mega-menu-content,
.mega-menu-content:hover {
    pointer-events: auto;
}

/* Ensure mega menu can overflow container */
.header {
    overflow: visible;
}

.header .container {
    overflow: visible;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-column h4 {
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--light-blue);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 4px;
}

.mega-menu-column ul li a {
    color: var(--dark-gray);
    font-size: 13px;
    text-decoration: none;
    padding: 5px 0;
    display: block;
    transition: all 0.2s ease;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    padding-left: 0;
}

.mega-menu-column ul li a::before {
    content: '→';
    color: var(--primary-orange);
    opacity: 0;
    position: absolute;
    left: -12px;
    transition: all 0.2s ease;
    font-size: 12px;
}

.mega-menu-column ul li a:hover {
    color: var(--primary-orange);
    padding-left: 12px;
}

.mega-menu-column ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.mega-menu-column:not(:first-child) {
    margin-top: 0;
}

.mega-menu-column h4:not(:first-child) {
    margin-top: 18px;
}

/* Mobile Mega Menu */
@media (max-width: 1200px) {
    .mega-menu-content {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: 100%;
        max-width: 100%;
        padding: 12px 15px;
        grid-template-columns: 1fr;
        gap: 15px;
        background: var(--light-gray);
        border-radius: 0;
        margin-top: 0;
        border-top: none;
    }

    .nav-list .mega-menu.active .mega-menu-content {
        display: grid;
    }

    .mega-menu-column h4 {
        font-size: 13px;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }

    .mega-menu-column ul li {
        margin-bottom: 3px;
    }

    .mega-menu-column ul li a {
        font-size: 12px;
        padding: 6px 12px;
        background: var(--white);
        border-radius: 4px;
        margin-bottom: 3px;
    }

    .mega-menu-column ul li a:hover {
        padding-left: 18px;
    }

    .mega-menu-column h4:not(:first-child) {
        margin-top: 15px;
    }
}

/* AI Hero Section */
.ai-hero {
    background: linear-gradient(135deg, #f5faff 0%, #ffffff 100%);
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
}

.ai-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ai-hero-content {
    max-width: 600px;
    text-align: left;
}

.ai-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e1e9f5;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #165b91;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ai-pill i {
    color: #ffb800;
}

.ai-title {
    font-size: 48px;
    line-height: 1.1;
    color: #0a1d37;
    margin-bottom: 30px;
    font-weight: 800;
}

.ai-cta-group {
    margin-top: 45px;
}

.btn-trial {
    background: #ffb800;
    color: #000 !important;
    padding: 22px 45px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
    transition: all 0.3s;
    border: none;
    line-height: 1;
}

.btn-trial:hover {
    background: #ffa600;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.5);
}

.cta-subtext {
    display: block;
    margin-top: 18px;
    font-size: 15px;
    color: #667085;
    font-weight: 500;
}

.ai-hero-image {
    position: relative;
    z-index: 1;
}

.ai-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.play-button i {
    font-size: 35px;
    color: #165b91;
    margin-left: 8px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

/* Awards Section */
.awards-section {
    background: #f8fbff;
    /* Subtle background for contrast */
    padding: 60px 0;
    border-top: 1px solid #eef2f6;
}

.awards-title {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #98a2b3;
    /* Gray like original */
    margin-bottom: 50px;
    font-weight: 800;
    background: none;
    padding: 0;
    border: none;
}

.awards-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
    /* Forces one line on desktop */
    max-width: 1400px;
    margin: 0 auto;
}

.award-item {
    flex: 1;
    min-width: 110px;
    max-width: 155px;
    display: flex;
    flex-direction: column;
    padding: 1px;
    /* border thickness */
    background: #dce4ee;
    /* subtle border color */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    margin-bottom: 5px;
}

.award-inner {
    background: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 10px 40px;
    clip-path: inherit;
    position: relative;
    z-index: 1;
}

/* Hover state for the whole card */
.award-item:hover {
    transform: translateY(-10px);
    background: #165b91;
    /* Highlight border on hover */
    z-index: 10;
}

/* Accent for the arrow bottom */
.award-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12%;
    background: #ffb800;
    /* Default Accent */
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    opacity: 0.8;
}

/* Individual accent colors to match the target design */
.award-item:nth-child(1)::after {
    background: #ffa600;
}

/* Momentum */
.award-item:nth-child(2)::after {
    background: #2b4c7e;
}

/* Capterra Blue */
.award-item:nth-child(3)::after {
    background: #165b91;
}

/* Fastest Growing */
.award-item:nth-child(4)::after {
    background: #98a2b3;
}

/* Users Most Likely */
.award-item:nth-child(5)::after {
    background: #e91e63;
}

/* Regional Pink */
.award-item:nth-child(6)::after {
    background: #f44336;
}

/* Regional Red */
.award-item:nth-child(7)::after {
    background: #ff9800;
}

/* Grid Orange */

.award-item i {
    font-size: 40px;
    color: #ffb800;
    margin-bottom: 10px;
}

.award-item span {
    font-size: 12px;
    font-weight: 800;
    color: #0a1d37;
    line-height: 1.2;
    padding: 0 5px;
}

.award-item img {
    max-width: 130px;
    height: auto;
    filter: none;
    /* Changed from grayscale for better look */
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.award-item img:hover {
    opacity: 1;
    transform: translateY(-5px) scale(1.1);
}

@media (max-width: 992px) {
    .ai-hero {
        padding: 60px 0;
    }

    .ai-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ai-hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .ai-title {
        font-size: 38px;
    }

    .awards-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .award-item {
        min-width: 140px;
        flex: 1 1 140px;
    }
}

/* Dashboard Section */
.dashboard-section {
    padding: 40px 0 80px;
    background: #fff;
    text-align: center;
}

.dashboard-visual {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.dashboard-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.watch-demo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #165b91;
    font-size: 18px;
    cursor: pointer;
}

.watch-demo i {
    font-size: 24px;
    color: #1677ff;
}

/* Growth Business Section */
.growth-section {
    background: #fff;
    padding: 80px 0;
}

.growth-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.growth-image-side {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
}

.growth-content-side {
    flex: 1;
    min-width: 300px;
    max-width: 55%;
}

.watch-demo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1677ff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
    text-decoration: none;
}

.watch-demo-link:hover {
    color: #0958d9;
}

.watch-demo-link i {
    font-size: 20px;
    color: #1677ff;
}

.dashboard-preview {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a6f 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(26, 54, 93, 0.3);
}

.dashboard-preview img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.growth-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #0a1d37;
}

.growth-title span {
    color: #ffb800;
}

.growth-subtitle {
    font-size: 15px;
    color: #667085;
    line-height: 1.7;
    margin-bottom: 25px;
    padding: 15px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fafbfc;
}

.stats-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.stat-box {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 20px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: #1677ff;
    box-shadow: 0 5px 20px rgba(22, 119, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #0a1d37;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 10px;
    color: #667085;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Everything You Need Section */
.everything-section {
    background: linear-gradient(135deg, #0f2744 0%, #1a365d 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.floating-icons-wrapper {
    position: relative;
    min-height: 350px;
    max-width: 900px;
    margin: 0 auto;
}

.floating-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    -webkit-animation: float 6s ease-in-out infinite;
    animation: float 6s ease-in-out infinite;
}

.floating-icon i {
    font-size: 26px;
}

.floating-icon.icon-1 { top: 30px; left: 20px; -webkit-animation-delay: 0s; animation-delay: 0s; }
.floating-icon.icon-1 i { color: #4285f4; }

.floating-icon.icon-2 { top: 180px; left: 50px; -webkit-animation-delay: 0.5s; animation-delay: 0.5s; }
.floating-icon.icon-2 i { color: #1877f2; }

.floating-icon.icon-3 { top: 80px; left: 150px; -webkit-animation-delay: 1s; animation-delay: 1s; }
.floating-icon.icon-3 i { color: #635bff; }

.floating-icon.icon-4 { bottom: 30px; left: 80px; -webkit-animation-delay: 1.5s; animation-delay: 1.5s; }
.floating-icon.icon-4 i { color: #96bf48; }

.floating-icon.icon-5 { top: 50px; right: 140px; -webkit-animation-delay: 2s; animation-delay: 2s; }
.floating-icon.icon-5 i { color: #4a154b; }

.floating-icon.icon-6 { top: 170px; right: 30px; -webkit-animation-delay: 2.5s; animation-delay: 2.5s; }
.floating-icon.icon-6 i { color: #21759b; }

.floating-icon.icon-7 { top: 40px; right: 30px; -webkit-animation-delay: 3s; animation-delay: 3s; }
.floating-icon.icon-7 i { color: #ff7a59; }

.floating-icon.icon-8 { bottom: 50px; right: 100px; -webkit-animation-delay: 3.5s; animation-delay: 3.5s; }
.floating-icon.icon-8 i { color: #ffe01b; }

@-webkit-keyframes float {
    0%, 100% { -webkit-transform: translateY(0px); transform: translateY(0px); }
    50% { -webkit-transform: translateY(-15px); transform: translateY(-15px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.everything-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 20px;
    z-index: 2;
}

.everything-title .highlight-text {
    color: #ffb800;
}

/* CTA Button in Sections */
.btn-trial-section {
    display: inline-block;
    background: #ffb800;
    color: #000;
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
    transition: all 0.3s;
}

.btn-trial-section span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    margin-top: 5px;
    opacity: 0.8;
}

.btn-trial-section:hover {
    background: #ffa600;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.5);
}

/* Phone Mockup */
.phone-mockup {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 350px;
    margin: 0 auto;
    border: 8px solid #1a365d;
}

.phone-header {
    background: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.phone-back {
    color: #1677ff;
    font-size: 18px;
}

.phone-title {
    font-weight: 700;
    color: #0a1d37;
    font-size: 16px;
}

.phone-info {
    color: #667085;
    font-size: 18px;
}

.phone-chat {
    padding: 20px;
    background: #fff;
    min-height: 350px;
}

.phone-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    margin-bottom: 12px;
    max-width: 85%;
    font-size: 14px;
    line-height: 1.5;
}

.phone-bubble.received {
    background: #f0f2f5;
    border-bottom-left-radius: 5px;
}

.phone-bubble.sent {
    background: #1677ff;
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

/* Testimonial Box */
.testimonial-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid #e5e7eb;
}

.testimonial-box.light {
    background: #f8fbff;
    border: none;
}

.testimonial-box.orange-bg {
    background: linear-gradient(135deg, #ff9500 0%, #ffb800 100%);
    border: none;
    color: #fff;
}

.testimonial-box.orange-bg p,
.testimonial-box.orange-bg strong,
.testimonial-box.orange-bg span {
    color: #fff;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    color: #ffb800;
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}

.quote-icon.white {
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #667085;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.testimonial-box.orange-bg .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: #0a1d37;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 13px;
    color: #667085;
}

/* Pipeline Mockup */
.pipeline-mockup {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.pipeline-header {
    padding: 15px 20px;
    text-align: right;
}

.pipeline-btn {
    background: #165b91;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.pipeline-board {
    position: relative;
}

.pipeline-card {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #1677ff;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 2;
}

.pipeline-stage {
    font-size: 14px;
    font-weight: 600;
}

.pipeline-board img {
    width: 100%;
    height: auto;
    display: block;
}

/* Feature Icon Box Variations */
.feature-icon-box.orange {
    background: linear-gradient(135deg, #ff9500 0%, #ffb800 100%);
}

.feature-icon-box.light {
    background: rgba(255, 255, 255, 0.2);
}

/* Browser Mockup Variations */
.browser-mockup.stacked {
    position: relative;
}

.browser-mockup.stacked::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 15px;
    right: 15px;
    height: 100%;
    background: #e5e7eb;
    border-radius: 12px;
    z-index: -1;
}

.browser-mockup.analytics .browser-content img {
    border-radius: 0;
}

/* Mobile App Mockup */
.mobile-app-mockup {
    text-align: center;
}

.mobile-app-mockup img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
}

.app-store-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0a1d37;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.app-badge i {
    font-size: 20px;
}

/* Support Image */
.support-image {
    position: relative;
    display: inline-block;
}

.support-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.support-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-badge span {
    font-size: 28px;
    font-weight: 800;
    color: #1677ff;
}

/* Join The Movement Section */
.join-movement-section {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a6f 100%);
    padding: 100px 0;
    color: #fff;
}

.join-movement-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.join-movement-content {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
}

.join-movement-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    position: relative;
}

.join-movement-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.join-movement-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
}

.join-movement-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(45, 74, 111, 0.7) 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.welcome-text {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.brand-logo i {
    color: #ffb800;
}

/* Feature List Light (for dark backgrounds) */
.feature-list.light .feature-list-item {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-list.light .feature-list-item:hover {
    border-color: #ffb800;
    background: rgba(255, 255, 255, 0.15);
}

.feature-list.light .feature-list-item h4 {
    color: #fff;
}

.feature-list.light .feature-list-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Pink bullet */
.feature-bullet.pink {
    background: #e91e63;
}

/* Feature Block Section */
.feature-block-section {
    padding: 100px 0;
    background: #fff;
}

.feature-block-section:nth-child(even) {
    background: #f8fbff;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-block-reverse .feature-block {
    direction: rtl;
}

.feature-block-reverse .feature-block > * {
    direction: ltr;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffb800 0%, #ffa600 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon-box i {
    font-size: 28px;
    color: #fff;
}

.feature-icon-box.blue {
    background: linear-gradient(135deg, #165b91 0%, #2d7cc4 100%);
}

.feature-block-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a1d37;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-block-desc {
    font-size: 18px;
    color: #667085;
    line-height: 1.7;
    margin-bottom: 35px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-list-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.feature-list-item:hover {
    border-color: #ffb800;
    box-shadow: 0 5px 20px rgba(255, 184, 0, 0.1);
}

.feature-bullet {
    width: 12px;
    height: 12px;
    background: #ffb800;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.feature-bullet.blue {
    background: #165b91;
}

.feature-list-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a1d37;
    margin-bottom: 8px;
}

.feature-list-item p {
    font-size: 15px;
    color: #667085;
    line-height: 1.6;
    margin: 0;
}

/* Browser Mockup */
.browser-mockup {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.browser-header {
    background: #f1f3f4;
    padding: 12px 15px;
    display: flex;
    gap: 8px;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dot.red { background: #ff5f57; }
.browser-dot.yellow { background: #ffbd2e; }
.browser-dot.green { background: #28c840; }

.browser-content {
    position: relative;
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

.browser-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #165b91 0%, #2d7cc4 100%);
    padding: 20px;
    border-radius: 8px;
    color: #fff;
}

.overlay-text {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* Chat Mockup */
.chat-mockup {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 400px;
}

.chat-header {
    background: #f1f3f4;
    padding: 12px 15px;
    display: flex;
    gap: 8px;
}

.chat-content {
    padding: 25px;
}

.chat-bubble {
    padding: 15px 18px;
    border-radius: 18px;
    margin-bottom: 15px;
    max-width: 85%;
}

.chat-bubble.received {
    background: #f0f2f5;
    border-bottom-left-radius: 5px;
}

.chat-bubble.sent {
    background: linear-gradient(135deg, #165b91 0%, #2d7cc4 100%);
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.chat-bubble p {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.5;
}

.chat-bubble p:last-child {
    margin-bottom: 0;
}

.chat-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.chat-actions span {
    width: 45px;
    height: 45px;
    background: #f0f2f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.chat-actions span:hover {
    background: #165b91;
    color: #fff;
}

.chat-actions span i {
    font-size: 18px;
    color: #667085;
}

.chat-actions span:hover i {
    color: #fff;
}

/* Responsive for Feature Blocks */
@media (max-width: 992px) {
    .feature-block {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-block-reverse .feature-block {
        direction: ltr;
    }

    .feature-block-title {
        font-size: 32px;
    }

    .growth-grid {
        flex-direction: column;
    }

    .growth-image-side,
    .growth-content-side {
        max-width: 100%;
    }

    .growth-content-side {
        text-align: center;
    }

    .growth-title {
        font-size: 28px;
    }

    .stats-row {
        justify-content: center;
    }

    .stat-box {
        min-width: 140px;
        flex: 0 1 auto;
    }

    .everything-title {
        font-size: 32px;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
    }

    .floating-icon i {
        font-size: 18px;
    }

    .stat-number {
        font-size: 24px;
    }

    .chat-mockup {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .stat-box {
        min-width: 100px;
        padding: 15px 8px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 8px;
    }

    .floating-icon {
        width: 35px;
        height: 35px;
    }

    .floating-icon i {
        font-size: 16px;
    }

    .floating-icon.icon-1 { top: 20px; left: 10px; }
    .floating-icon.icon-2 { top: 120px; left: 20px; }
    .floating-icon.icon-3 { top: 60px; left: 80px; }
    .floating-icon.icon-4 { bottom: 20px; left: 40px; }
    .floating-icon.icon-5 { top: 40px; right: 70px; }
    .floating-icon.icon-6 { top: 110px; right: 10px; }
    .floating-icon.icon-7 { top: 30px; right: 10px; }
    .floating-icon.icon-8 { bottom: 30px; right: 50px; }

    .everything-title {
        font-size: 26px;
    }

    .floating-icons-wrapper {
        min-height: 280px;
    }

    .join-movement-content,
    .join-movement-image {
        max-width: 100%;
    }

    .join-movement-title {
        font-size: 28px;
    }

    .welcome-text {
        font-size: 24px;
    }

    .brand-logo {
        font-size: 22px;
    }

    .phone-mockup {
        max-width: 100%;
    }

    .testimonial-box {
        padding: 20px;
    }

    .app-store-badges {
        flex-direction: column;
        align-items: center;
    }

    .support-image img {
        max-width: 280px;
    }

    .support-badge {
        width: 70px;
        height: 70px;
    }

    .support-badge span {
        font-size: 20px;
    }
}