@font-face {
    font-family: 'CameraPlainVariable';
    src: url('https://cdn.gpteng.co/mcp-widgets/v1/fonts/CameraPlainVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

#lovable-badge {
    --badge-bg: #1b1b1b;
    --badge-text: #c5c1b9;
    --badge-text-hover: #dcdad5;
    --badge-radius: 6px;
    --badge-padding: 8px;
    --badge-gap: 6px;
    --badge-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.88),
        0 1px 0 0 rgba(0, 0, 0, 0.04),
        0 2px 2px -1px rgba(0, 0, 0, 0.08),
        0 4px 4px -2px rgba(0, 0, 0, 0.08),
        0 8px 8px -4px rgba(0, 0, 0, 0.08),
        0 16px 16px -8px rgba(0, 0, 0, 0.08);
    --badge-transition-duration: 0.2s;
    --badge-transition-easing: cubic-bezier(0.16, 1, 0.32, 1);
    --focus-color: #575ECF;
    --focus-offset: 2px;
    --focus-width: 2px;

    position: fixed;
    bottom: 12px;
    right: 12px;
    height: 24px;
    display: flex;
    align-items: center;
    z-index: 1000000;
    background-color: var(--badge-bg);
    color: var(--badge-text);
    border-radius: var(--badge-radius);
    box-shadow: var(--badge-shadow);
    font-size: 12px;
    font-family: CameraPlainVariable, "CameraPlainVariable Fallback", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400 !important;
    text-transform: none !important;
    font-feature-settings: normal !important;
    transform: translateZ(0);
    will-change: transform, opacity;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 78px;
    background: #0b1d33;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    max-width: 1300px;
    height: 100%;
    margin: auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo img {
    height: 42px;
}


.main-nav {
    display: flex;
    gap: 36px;
    margin-right: 40px;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ff7a00;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: #fff;
}

@media (max-width: 1024px) {

    .main-nav {
        position: fixed;
        top: 78px;
        left: 0;
        width: 100%;
        height: calc(40vh - 78px);
        background: #0b1d33;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        display: none;
        z-index: 998;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        font-size: 18px;
    }

    .menu-toggle {
        display: flex;
    }
}

.floating-btn {
    position: fixed;
    right: -75px;
    top: 50%;
    transform: rotate(-90deg) translateY(-16%);
    background: #e91e63;
    color: #fff;
    padding: 14px 22px;
    border-radius: 20px 20px 0px 0px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    z-index: 9999;
}


.floating-btn:hover {
    background: #d81b60;
}


@media (max-width: 768px) {
    .floating-btn {
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        transform: none;
        border-radius: 0px;
        padding: 16px 0px;
        width: 100%;
        text-align: center;
    }
}
.faq-wrapper {
  max-width: 900px;
}

.faq-card {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-card.active {
  border-color: #f97316;
  box-shadow: 0 10px 30px rgba(249,115,22,0.15);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-number {
  color: #f97316;
  margin-right: 8px;
}

.faq-icon {
  font-size: 22px;
  color: #f97316;
  transition: transform 0.3s ease;
}

.faq-card.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
  color: #555;
}

.faq-card.active .faq-content {
  max-height: 200px;
  padding: 0 24px 20px;
}
#logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#logo-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: logoScroll 60s linear infinite;
}


#logo-slider .logo-box {
    flex-shrink: 0;
    width: 240px;
    height: 120px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


#logo-slider .logo-box img {
    max-height: 80px;
    max-width: 180px;
    object-fit: contain;
}


@keyframes logoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


@media (max-width: 1024px) {
    #logo-slider .logo-box {
        width: 200px;
        height: 105px;
    }

    #logo-slider .logo-box img {
        max-height: 70px;
    }
}


@media (max-width: 768px) {
    #logo-track {
        gap: 20px;
        animation-duration: 55s;
        
    }

    #logo-slider .logo-box {
        background: transparent;
    box-shadow: none;
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 0;
    }

    #logo-slider .logo-box img {
        max-height: 48px;
    max-width: 120px;
    }
}


@media (max-width: 480px) {
    #logo-track {
        gap: 32px;
    }

    #logo-slider .logo-box {
        width: 140px;
        height: 75px;
    }

    #logo-slider .logo-box img {
        max-height: 42px;
    max-width: 105px;
    }
}


#lovable-badge-cta {
    display: flex;
    align-items: center;
    gap: var(--badge-gap);
    padding: 0 var(--badge-padding);
    height: 100%;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    border-radius: var(--badge-radius) 0 0 var(--badge-radius);
    transition:
        background-color var(--badge-transition-duration) ease,
        color var(--badge-transition-duration) ease,
        transform 0.1s ease;
}

#lovable-badge-cta:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--badge-text-hover);
}

#lovable-badge-cta:active {
    transform: scale(0.98);
}

#lovable-badge-cta:focus {
    outline: none;
}

#lovable-badge-cta:focus-visible {
    outline: var(--focus-width) solid var(--focus-color);
    outline-offset: var(--focus-offset);
    z-index: 1;
}

#lovable-badge-text {
    line-height: 1;
}

#lovable-badge-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
}

#lovable-badge-close {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 var(--badge-radius) var(--badge-radius) 0;
    flex-shrink: 0;
    transition:
        background-color var(--badge-transition-duration) ease,
        transform 0.1s ease;
}

#lovable-badge-close:hover {
    background: rgba(255, 255, 255, 0.04);
}

#lovable-badge-close:active {
    transform: scale(0.92);
}

#lovable-badge-close:focus {
    outline: none;
}

#lovable-badge-close:focus-visible {
    outline: var(--focus-width) solid var(--focus-color);
    outline-offset: calc(var(--focus-offset) * -1);
    z-index: 1;
}

#lovable-badge-close svg path {
    fill: var(--badge-text);
    transition: fill var(--badge-transition-duration) ease;
}

#lovable-badge-close:hover svg path {
    fill: var(--badge-text-hover);
}

@media (prefers-reduced-motion: reduce) {

    #lovable-badge-cta,
    #lovable-badge-close,
    #lovable-badge-close svg path {
        transition: none;
    }

    #lovable-badge-cta:active,
    #lovable-badge-close:active {
        transform: none;
    }
}

@media (prefers-contrast: high) {
    #lovable-badge {
        --badge-bg: #000;
        --badge-text: #fff;
        --badge-text-hover: #fff;
        border: 2px solid currentColor;
    }

    #lovable-badge-cta:focus-visible,
    #lovable-badge-close:focus-visible {
        outline-width: 3px;
    }
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}

.logo-box {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo {
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* .thankyou-section {
    padding: 120px 20px;
    text-align: center;
    background: #fff;
}

.thankyou-box h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.subtitle {
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    max-width: 850px;
    margin: 0 auto 50px;
}

.support-box {
    margin-top: 30px;
}

.support-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

.support-item {
    font-size: 16px;
    margin: 6px 0;
    color: #444;
}

.support-item a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.support-item a:hover {
    text-decoration: underline;
}

.divider {
    margin: 0 8px;
    color: #aaa;
}

.underline {
    width: 50px;
    height: 4px;
    background: #2bb673;
    margin: 25px auto 0;
    border-radius: 2px;
}


@media (max-width: 768px) {
    .thankyou-box h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 13px;
    }
} */

@media (min-width: 1024px) {
    .lg\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}


.site-footer {
    background: #0b1d33;
    color: #cfd6e1;
    padding: 60px 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 18px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #ff7a00;
    position: absolute;
    left: 0;
    bottom: -6px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links a,
.footer-contact a {
    color: #cfd6e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ff7a00;
}

.map-link {
    color: #ff7a00;
    font-size: 14px;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-social a {
    margin-left: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

.footer-social a:hover {
    color: #ff7a00;
}


@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .footer-social a {
        margin: 0 6px;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.quote-modal.active {
    display: block;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.quote-box {
    position: relative;
    max-width: 420px;
    background: #fff;
    margin: 10vh auto;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    animation: slideUp .4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.quote-box h2 {
    margin-bottom: 8px;
}

.quote-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.quote-box input,
.quote-box select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.quote-box button {
    width: 100%;
    padding: 12px;
    background: #ff8b1f;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
}

.quote-box button:hover {
    background: #ff7b00;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 12px;
    font-size: 22px;
    cursor: pointer;
}