/* ===================================
   CROWDO - Custom Stylesheet
   =================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');

/* Base */
body {
    font-family: 'Raleway', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f7f9fc;
    color: #333;
}

.container {
    max-width: 1225px;
}

a {
    text-decoration: none;
}

.logo-img {
    width: auto;
    height: 50px;
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    background-color: #fff;
    padding: 16px 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a2e !important;
    letter-spacing: 1px;
    position: relative;
}

.navbar-brand .brand-dots {
    display: inline-block;
    position: relative;
    top: -10px;
    left: 2px;
}

.navbar-brand .brand-dots span {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #1B7BF6;
    border-radius: 50%;
    margin: 0 1px;
}

.navbar-brand .brand-dots .dot-top {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: #333 !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 6px;
}

.nav-link:hover {
    color: #1B7BF6 !important;
}

/* Dropdown toggle arrow */
.nav-link.dropdown-toggle::after {
    transition: transform 0.2s ease;
}

.nav-item.dropdown:hover>.nav-link.dropdown-toggle {
    color: #1B7BF6 !important;
}

.nav-item.dropdown:hover>.nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown menu styling */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 20px 0 12px;
    min-width: 220px;
    margin-top: 0;
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    transition: color 0.2s, background-color 0.2s;
}

.dropdown-item:hover {
    background-color: transparent;
    color: #1B7BF6;
}

/* Hover open dropdown on desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
    }
}

.btn-schedule {
    background-color: #1B7BF6;
    color: #fff !important;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: background-color 0.2s;
}

.btn-schedule:hover {
    background-color: #0d5bbd;
}

.nav-user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 1.1rem;
    margin-right: 12px;
    background: #fff;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    padding: 60px 0 80px;
    display: flex;
    align-items: center;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    height: 50px;
}



.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 110px;
    margin-right: 10px;
}

.trust-badge img {
    width: 200px;
}

.trust-badge .badge-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
}

.trust-badge .stars {
    color: #f59e0b;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.trustpilot-label {
    color: #00b67a;
    font-weight: 700;
    font-size: 0.8rem;
}

.trustpilot-star {
    color: #00b67a;
}

.clutch-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
}

.clutch-stars {
    color: #e74c3c;
}

.goodfirms-label {
    color: #1B7BF6;
    font-weight: 600;
    font-size: 0.85rem;
}

.goodfirms-icon {
    width: 14px;
    height: 14px;
    background: #1B7BF6;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
}

/* Heading */
.hero-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.google-text .g-blue {
    color: #4285f4;
}

.google-text .g-red {
    color: #ea4335;
}

.google-text .g-yellow {
    color: #fbbc05;
}

.google-text .g-green {
    color: #34a853;
}

.google-text .g-red2 {
    color: #ea4335;
}

.google-text .g-blue2 {
    color: #4285f4;
}

.hero-subtext {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-subtext a {
    color: #1B7BF6;
    text-decoration: underline;
    font-weight: 500;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.3rem;
    color: #1B7BF6;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.3;
}

/* Contact Form */
.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-card label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 6px;
}

.contact-card .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95rem;
    background-color: #fafafa;
}

.contact-card .form-control:focus {
    border-color: #1B7BF6;
    box-shadow: 0 0 0 3px rgba(27, 123, 246, 0.1);
}

.contact-card .form-select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95rem;
    background-color: #fafafa;
    color: #888;
}

.optional-label {
    font-size: 0.75rem;
    color: #aaa;
    font-weight: 400;
    margin-left: 6px;
}

.privacy-text {
    font-size: 0.78rem;
    color: #777;
    margin-top: 16px;
    margin-bottom: 16px;
}

.privacy-text a {
    color: #1B7BF6;
    text-decoration: none;
    font-weight: 500;
}

.btn-send {
    background-color: #f59e0b;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 1rem;
    float: right;
    transition: background-color 0.2s;
}

.btn-send:hover {
    background-color: #d97706;
    color: #fff;
}

/* ===================================
   TRUSTED BY SECTION
   =================================== */
.trusted-section {
    background: #fff;
    padding: 50px 0 60px;
}

.trusted-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 36px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-logo-img {
    height: 36px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.3s, filter 0.3s;
}

.trusted-logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===================================
   ONE AGENCY SECTION
   =================================== */
.agency-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.agency-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 20px;
}

.agency-subtext {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 36px;
}

.agency-point {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.agency-point .check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #1B7BF6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    margin-top: 2px;
}

.agency-point p {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.agency-point a {
    color: #1B7BF6;
    text-decoration: underline;
    font-weight: 500;
}

/* Orbital Diagram */
.orbital-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    aspect-ratio: 1;
}

.orbital-circle {
    position: absolute;
    border: 1.5px dashed #c5d5f0;
    border-radius: 50%;
}

.orbital-outer {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.orbital-mid {
    width: 65%;
    height: 65%;
    top: 17.5%;
    left: 17.5%;
}

.orbital-inner {
    width: 30%;
    height: 30%;
    top: 35%;
    left: 35%;
    background: #f0f4ff;
    border: 1.5px dashed #c5d5f0;
}

.orbital-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #1B7BF6;
    border-radius: 50%;
    z-index: 2;
}

.orbital-dot-sm {
    width: 10px;
    height: 10px;
}

.orbital-label {
    position: absolute;
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
    z-index: 2;
}

.dot-top-orbital {
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.dot-right-orbital {
    top: 50%;
    right: -7px;
    transform: translateY(-50%);
}

.dot-bottom-orbital {
    bottom: -7px;
    left: 30%;
    transform: translateX(-50%);
}

.dot-left-orbital {
    top: 50%;
    left: -7px;
    transform: translateY(-50%);
}

.dot-center-orbital {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.label-top {
    top: -30px;
    left: 50%;
    transform: translateX(-30%);
    text-align: center;
}

.label-right {
    top: 43%;
    right: -130px;
}

.label-bottom-left {
    bottom: -30px;
    left: 10%;
}

.label-left {
    top: 43%;
    left: -100px;
    text-align: right;
}

.label-bottom-right {
    bottom: 10%;
    right: -140px;
}

.orbital-line {
    position: absolute;
    border-top: 1.5px dashed #c5d5f0;
    z-index: 1;
    transform-origin: left center;
}

/* ===================================
   OUR SERVICES SECTION
   =================================== */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-section .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 12px;
}

.services-section .section-subtitle {
    font-size: 1.05rem;
    color: #555;
    text-align: center;
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 16px;
    padding: 28px 24px;
    transition: box-shadow 0.3s, transform 0.2s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-card.most-popular::before {
    content: 'Most popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.service-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #F0F3FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card__icon i {
    font-size: 1.5rem;
    color: #377DED;
}

.service-card__tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-seo {
    background: #E8F5E9;
    color: #2E7D32;
}

.tag-link {
    background: #FFF3E0;
    color: #E65100;
}

.tag-other {
    background: #E3F2FD;
    color: #1565C0;
}

.service-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.service-card__text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-card__btn {
    display: inline-block;
    color: #1B7BF6;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.service-card__btn:hover {
    color: #0d5bbd;
    text-decoration: underline;
}

.service-card__btn::after {
    content: ' \2192';
}

/* ===================================
   CASE STUDY SECTION
   =================================== */
.cases-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.cases-section .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 48px;
}

.case-block {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.case-graph {
    flex: 0 0 45%;
    background: #fafbfe;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-graph svg {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.case-info {
    flex: 1;
    padding: 40px;
}

.case-metrics {
    display: flex;
    gap: 40px;
    margin-bottom: 28px;
}

.case-metric b {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1B7BF6;
    line-height: 1;
    margin-bottom: 6px;
}

.case-metric span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.case-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.case-brand-logo {
    width: 48px;
    height: 48px;
    background: #f0f4ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #1B7BF6;
    font-size: 0.7rem;
}

.case-brand-tag {
    background: #f0f4ff;
    color: #1B7BF6;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
}

.case-testimonial {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.case-author b {
    display: block;
    font-size: 0.95rem;
    color: #1a1a2e;
    font-weight: 700;
}

.case-author span {
    font-size: 0.85rem;
    color: #888;
}

.case-link {
    display: inline-block;
    margin-top: 16px;
    color: #1B7BF6;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 2px solid #1B7BF6;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.case-link:hover {
    opacity: 0.8;
}

/* ===================================
   PARTNER SECTION
   =================================== */
.partner-section {
    padding: 80px 0;
    background: #fff;
}

.partner-section .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 48px;
}

.partner-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.partner-card {
    text-align: center;
    padding: 40px 28px;
    background: #fafbfe;
    border-radius: 16px;
    border: 1px solid #e5e9f0;
    transition: box-shadow 0.3s, transform 0.2s;
}

.partner-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.partner-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #E8F0FE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.partner-card__icon i {
    font-size: 1.5rem;
    color: #1B7BF6;
}

.partner-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.partner-card__text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.cta-block {
    background: linear-gradient(135deg, #1B7BF6 0%, #0d5bbd 100%);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.btn-cta {
    background-color: #f59e0b;
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.2s;
    display: inline-block;
    text-decoration: none;
}

.btn-cta:hover {
    background-color: #d97706;
}

.cta-person {
    flex-shrink: 0;
    text-align: center;
}

.cta-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.cta-avatar i {
    font-size: 2.5rem;
    color: #fff;
}

.cta-person-name {
    font-weight: 700;
    font-size: 1rem;
}

.cta-person-role {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background: #1a1a2e;
    color: #fff;
}

.footer-links {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-menu a:hover {
    color: #fff;
}

.footer-middle {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: background 0.2s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-badge {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #fff;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-heading {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        margin-top: 40px;
    }

    .trusted-logos {
        gap: 24px;
    }

    .orbital-wrapper {
        margin-top: 40px;
        max-width: 340px;
    }

    .orbital-label {
        font-size: 0.7rem;
    }

    .agency-heading {
        font-size: 1.7rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-block {
        flex-direction: column;
    }

    .case-graph {
        padding: 30px;
    }

    .partner-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-block {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .cta-text {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-heading {
        font-size: 1.7rem;
    }

    .services-section .section-title,
    .cases-section .section-title,
    .partner-section .section-title {
        font-size: 1.7rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-block {
        padding: 30px 20px;
    }

    .case-metrics {
        gap: 20px;
    }

    .case-metric b {
        font-size: 2rem;
    }
}