:root {
    --primary: #1a73e8;
    --accent: #00d2ff;
    --bg-dark: #0a0b10;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #e0e0e0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: #fff0;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
}
.pricing-subtitle{
    max-width:700px;
    margin:0 auto 50px;
    text-align:center;
    color:#b8c0d6;
    line-height:1.8;
    font-size:1rem;
}
input,
textarea {
    -webkit-user-select: text !important;
    user-select: text !important;
}
select {
    cursor: text;
}
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: "Inter", "Segoe UI", sans-serif;
    overflow-x: hidden;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 60px;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    background: rgb(5 6 10 / 0.6);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
    z-index: 1000;
    user-select: none;
    -webkit-user-select: none;
}
.navbar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(255 255 255 / 0.05), transparent);
    pointer-events: none;
}
.logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}
.logo span {
    color: var(--primary);
}
.nav-links {
    display: flex;
    gap: 10px;
    list-style: none;
    align-items: center;
}
.nav-links li {
    margin-left: 30px;
}
.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
    opacity: 0.92;
}
.nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}
.burger {
    display: none;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}
.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: 0.3s;
}
#static-text {
    display: inline-block;
    color: #fff;
    opacity: 0.92;
}
.glow-animate {
    animation: glowSmooth 0.25s ease-out;
}
@keyframes fadeGlowIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        text-shadow: 0 0 0 #fff0;
    }
    60% {
        opacity: 1;
        transform: translateY(-2px) scale(1.02);
        text-shadow:
            0 0 15px rgb(26 115 232 / 0.6),
            0 0 30px rgb(26 115 232 / 0.4);
    }
    100% {
        transform: translateY(0) scale(1);
        text-shadow:
            0 0 8px rgb(26 115 232 / 0.4),
            0 0 18px rgb(26 115 232 / 0.3);
    }
}
.entry-animate {
    animation: fadeGlowIn 0.8s ease-out forwards;
}
.move-up {
    transform: translateY(-3px);
    transition: transform 0.25s ease-out;
}
.move-down {
    transform: translateY(3px);
    transition: transform 0.25s ease-out;
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 8%;
    overflow: hidden;
    background: url(/assets/images/hero-small.webp);
    background-size: cover;
    background-position: center;
}
@media (min-width: 1024px) {
    .hero {
        background: url(/assets/images/hero.webp);
    }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgb(10 11 16 / 0.4) 0%,
        rgb(10 11 16 / 0.6) 40%,
        rgb(10 11 16 / 0.9) 75%,
        #0a0b10 100%
    );
    pointer-events: none;
    z-index: 1;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #0a0b10);
    z-index: 1;
}
@media (max-width: 768px) {
    #dynamic-text {
        text-shadow: 0 0 5px rgb(26 115 232 / 0.4);
    }
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    min-height: 220px;
}
.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-content h1 span {
    color: var(--primary);
}
#dynamic-text {
    display: inline-block;
    animation: floatSmooth 3.5s ease-in-out infinite alternate;
    text-shadow:
        0 0 6px rgb(26 115 232 / 0.5),
        0 0 12px rgb(26 115 232 / 0.3);
    transition: all 0.3s ease;
}
@keyframes floatSmooth {
    0% {
        transform: translateY(0);
        text-shadow:
            0 0 6px rgb(26 115 232 / 0.4),
            0 0 10px rgb(26 115 232 / 0.2);
    }
    100% {
        transform: translateY(-4px);
        text-shadow:
            0 0 10px rgb(26 115 232 / 0.6),
            0 0 20px rgb(26 115 232 / 0.4);
    }
}
@media (max-width: 600px) {
    #dynamic-text {
        white-space: normal;
    }
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    height: 58px;
    padding: 0 28px;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    border: 1px solid #fff0;
    transition: 0.3s ease;
    box-sizing: border-box;
}
.btn-primary:hover {
    text-decoration: none;
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgb(255 255 255 / 0.2);
}
.btn-primary::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: rgb(255 255 255 / 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.btn-primary:active::after {
    width: 200%;
    height: 200%;
    transition:
        width 0.4s ease,
        height 0.4s ease;
}
.btn-primary-expl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 58px;
    padding: 0 28px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    transition: 0.3s ease;
    margin: 10px;
    box-sizing: border-box;
}
.btn-primary-expl:hover {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 25px rgb(255 255 255 / 0.2);
    transform: translateY(-2px);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 25px rgb(255 255 255 / 0.35);
}
.btn-outline {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px auto;
    padding: 14px 28px;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: #fff0;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
    text-align: center;
    width: fit-content;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px rgb(26 115 232 / 0.4);
    transform: translateY(-2px);
}
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}
.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}
.about-section {
    padding: 100px 8%;
    background: var(--bg-dark);
}
.founder-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.founder-card .card-body p {
    text-align: left;
    line-height: 1.7;
    opacity: 0.85;
}
.profile-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}
.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-top: 30px;
}
.stat {
    text-align: center;
    min-width: 120px;
}
.stat h3 {
    color: var(--primary);
    font-size: 2rem;
}
.services-section {
    padding: 80px 8%;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.footer {
    background: #050608;
    padding: 80px 8% 20px;
    border-top: 1px solid var(--glass-border);
}
.footer-email{
    color: rgba(255,255,255,0.85);
    text-decoration:none;
}

.footer-email:hover{
    color:var(--primary);
}
.footer-contact a{
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-contact a:hover{
    color: var(--primary);
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}
.footer-brand p {
    margin: 15px 0;
    opacity: 0.6;
}
.socials a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: 0.3s;
}
.socials a:hover {
    color: var(--primary);
}
.footer-bottom a.footer-link {
    color: var(--primary) !important;
    text-decoration: none !important;
    border-bottom: 1px solid #444 !important;
    padding-bottom: 1px;
    transition: 0.3s ease;
}
.footer-bottom a.footer-link:hover {
    border-bottom-color: var(--primary) !important;
    opacity: 0.8;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    opacity: 1;
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
}
@media screen and (max-width: 900px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 80vh;
        overflow-x: hidden;
        top: 8vh;
        background: var(--bg-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 300px;
        max-width: 85vw;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 45px;
        backdrop-filter: blur(24px);
        background: rgba(5, 10, 25, 0.95);
        backface-visibility: hidden;
        will-change: transform;
    }
    .nav-links li {
        margin: 12px 0;
    }
    .burger {
        display: block;
    }
}
.nav-active {
    transform: translateX(0%);
}
.nav-active ~ .burger {
    opacity: 1;
}
.reveal {
    opacity: 0;
    transform: translateY(20px);
}
.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}
.socials a {
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease;
}
.socials a i {
    vertical-align: middle;
    transition: all 0.3s ease;
}
.socials a:hover i {
    transform: scale(1.2);
}
.socials a:hover .fa-linkedin {
    color: #0077b5;
    filter: drop-shadow(0 0 6px rgb(0 119 181 / 0.6));
    padding: 4px;
}
.socials .fa-instagram {
    min-width: 18px;
    max-width: 24px;
    min-height: 18px;
    max-height: 24px;
    align-self: center;
    border-radius: 60px;
}
.socials a:hover .fa-instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    padding: 4px;
    color: #fff;
    -webkit-text-fill-color: #fff0;
    filter: drop-shadow(0 0 6px rgb(214 41 118 / 0.5));
}
.socials a:hover .fa-facebook {
    color: #1877f2;
    filter: drop-shadow(0 0 6px rgb(24 119 242 / 0.6));
    padding: 4px;
}
.socials a:hover .fa-whatsapp {
    color: #25d366;
    filter: drop-shadow(0 0 6px rgb(37 211 102 / 0.6));
    padding: 4px;
}
.pricing-section {
    padding: 80px 8%;
    text-align: center;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}
.pricing-card {
    transition: 0.4s;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}
.bundle-badge {
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}
.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin: 20px 0;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.pricing-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
    margin: 12px 0;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e0e0e0;
    background: rgb(255 255 255 / 0.04);
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.pricing-card li:hover {
    background: rgb(26 115 232 / 0.08);
    border-color: var(--primary);
    transform: translateX(4px);
}
.pricing-card li i {
    color: var(--primary);
    font-size: 14px;
    min-width: 18px;
}
.pricing-card .btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 220px;
    margin: 15px auto;
}
.pricing-card .btn-primary:hover {
    background: #155ec0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(26 115 232 / 0.3);
}
.service-dropdown {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    padding: 0;
    background: rgb(255 255 255 / 0.06);
    position: relative;
    z-index: 5;
    border: 1px solid #fff0;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    width: 100%;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.4);
    font-size: 14px;
    opacity: 0;
    transform: translateY(-8px);
    transition:
        max-height 0.45s ease,
        opacity 0.25s ease,
        transform 0.3s ease,
        padding 0.3s ease,
        margin-top 0.3s ease,
        border 0.2s ease;
}
.service-dropdown.active {
    max-height: 500px;
    overflow: visible;
    margin-top: 20px;
    padding: 18px;
    opacity: 1;
    transform: translateY(0);
    border: 2px solid var(--glass-border);
}
.service-dropdown li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.service-dropdown.active li {
    opacity: 1;
    transform: translateY(0);
}
.service-dropdown.active li:nth-child(1) {
    transition-delay: 0.05s;
}
.service-dropdown.active li:nth-child(2) {
    transition-delay: 0.1s;
}
.service-dropdown.active li:nth-child(3) {
    transition-delay: 0.15s;
}
.service-dropdown.active li:nth-child(4) {
    transition-delay: 0.2s;
}
.service-dropdown li:hover {
    background: rgb(255 255 255 / 0.08);
}
input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: rgb(255 255 255 / 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
}
@media screen and (max-width: 900px) {
    .nav-links li {
        margin: 15px 0;
    }
    .nav-signup-btn {
        width: 150px;
        text-align: center;
    }
}
.founder-card {
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
}
.profile-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
}
.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 15px;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.profile-text {
    text-align: left;
}
.profile-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}
.profile-text p {
    font-size: 0.95rem;
    opacity: 0.7;
    letter-spacing: 0.2px;
}
.card-body {
    margin-top: 15px;
    padding: 0;
    text-align: left;
}
.card-body p {
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.7;
}
.stats-grid {
    margin-top: 25px;
    justify-content: center;
}
.founder-card:hover {
    box-shadow: 0 10px 30px rgb(26 115 232 / 0.2);
}
.footer {
    background: #050608;
    padding: 80px 8% 20px;
    border-top: 1px solid var(--glass-border);
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}
.testimonials-section {
    padding: 80px 8%;
    text-align: center;
}
.btn-outline i {
    font-size: 1.2rem;
    margin-right: 8px;
}
.hero-btns .btn-outline,
.hero-btns .btn-primary,
.hero-btns .btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    height: 58px;
    padding: 0 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}
.hero-btns .btn-outline:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff;
}
.why-section {
    padding: 80px 8%;
}
.why-section .services-grid {
    max-width: 1100px;
    margin: 0 auto;
}
.why-section .glass-card {
    margin-bottom: 20px;
}
.footer-contact i {
    min-width: 20px;
    text-align: center;
    color: whitesmoke;
}
.footer-contact h3 {
    margin-bottom: 15px;
}
.footer-contact {
    margin-left: 0;
}
.footer-contact p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-bottom a.footer-link {
    color: whitesmoke;
    text-decoration: none;
    margin: 0 5px;
    font-weight: 500;
    transition: 0.3s ease;
}
.footer-bottom a.footer-link:hover {
    color: #fff;
    text-decoration: none;
}
.cursor {
    display: inline-block;
    margin-left: 5px;
    color: var(--primary);
    animation: blink 1s infinite;
}
@media screen and (max-width: 900px) {
    .cursor {
        display: none !important;
    }
}
@media screen and (max-width: 768px) {
    .cursor {
        display: none !important;
    }
}
@keyframes blink {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
#dynamic-text {
    text-shadow:
        0 0 10px rgb(26 115 232 / 0.6),
        0 0 20px rgb(26 115 232 / 0.4),
        0 0 40px rgb(26 115 232 / 0.3);
    transition: transform 0.25s ease-out;
}
@keyframes glowSmooth {
    0% {
        opacity: 0.8;
        transform: scale(0.98);
        text-shadow: 0 0 5px rgb(26 115 232 / 0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
        text-shadow:
            0 0 12px rgb(26 115 232 / 0.7),
            0 0 25px rgb(26 115 232 / 0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow:
            0 0 8px rgb(26 115 232 / 0.5),
            0 0 18px rgb(26 115 232 / 0.3);
    }
}
.hero {
    perspective: 1000px;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    z-index: 0;
}
.contact-section {
    padding: 80px 8%;
    text-align: center;
}
.contact-container {
    max-width: 500px;
    margin: auto;
    background: rgb(255 255 255 / 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(12px);
}
.contact-container h2 {
    margin-bottom: 10px;
}
.contact-container p {
    opacity: 0.7;
    margin-bottom: 25px;
}
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 10px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-align: center;
    width: 100%;
    max-width: 260px;
    background: var(--primary);
    color: #fff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}
.btn-submit:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgb(255 255 255 / 0.25);
}
.btn-submit:active {
    transform: scale(0.96);
    box-shadow: 0 3px 8px rgb(0 0 0 / 0.2);
}
.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}
.btn-submit:not(:disabled):hover {
    box-shadow: 0 0 10px rgb(26 115 232 / 0.4);
}
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#contact-form select {
    background: rgb(20 22 30 / 0.9);
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
#contact-form select option {
    background: #0a0b10;
    color: #fff;
}
#contact-form select:focus {
    box-shadow: 0 0 8px rgb(26 115 232 / 0.4);
}
#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgb(255 255 255 / 0.05);
    color: #fff;
    outline: none;
}
#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 8px rgb(26 115 232 / 0.4);
}
#contact-form textarea {
    min-height: 100px;
    resize: none;
}
#contact-form button {
    width: 100%;
    margin-top: 10px;
}
#contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgb(255 255 255 / 0.05);
    color: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
}
.form-agree {
    margin-top: 10px;
    font-size: 0.85rem;
    text-align: left;
}
.form-agree span {
    color: var(--primary);
    cursor: pointer;
    text-decoration: underline;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
}
.checkbox-wrapper input {
    display: none;
}
.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary);
    accent-color: var(--primary);
    border-radius: 4px;
    border-color: var(--primary);
    position: relative;
    transition: 0.3s;
}
.checkbox-wrapper input:checked + .custom-checkbox {
    background: var(--primary);
}
.custom-checkbox::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
}
.checkbox-wrapper input:checked + .custom-checkbox::after {
    opacity: 1;
}
.agree-text span {
    color: var(--primary) !important;
    cursor: pointer;
    text-decoration: underline;
}
.checkbox-wrapper input:checked + .custom-checkbox {
    box-shadow: 0 0 8px var(--primary);
}
.checkbox-wrapper:hover .custom-checkbox {
    border-color: #4da3ff;
}
.form-agree {
    color: #ccc !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}
.agree-text {
    color: #ccc !important;
    text-decoration: none !important;
    line-height: 1.4;
    font-size: 0.85rem;
}
.agree-text a {
    color: floralwhite;
    text-decoration: none !important;
    border-bottom: 1.5px solid #888;
    padding-bottom: 1px;
    transition: 0.3s ease;
}
.agree-text a:hover {
    border-bottom-color: var(--primary);
    color: var(--primary) !important;
    opacity: 0.8;
}
.form-agree a,
.form-agree a:visited {
    color: var(--primary) !important;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.7);
    z-index: 999;
    justify-content: center;
    align-items: center;
}
.popup-content {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    max-width: 300px;
}
.popup-content button {
    margin-top: 15px;
    padding: 8px 20px;
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
}
.footer a {
    cursor: pointer;
}
.fab fa-whatsapp {
    font-size: 50px;
}
.whatsapp-btn {
    text-decoration: none !important;
    border-bottom: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    border: 2px solid #25d366;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    width: fit-content;
}
.whatsapp-btn:hover {
    text-decoration: none !important;
}
.burger div {
    transition: all 0.3s ease;
}
.burger.toggle .line1 {
    transform: rotate(45deg) translate(5px, 5px);
    transform-origin: center;
}
.burger.toggle .line2 {
    opacity: 0;
}
.burger.toggle .line3 {
    transform: rotate(-45deg) translate(6px, -6px);
    transform-origin: center;
}
.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 0 20px rgb(37 211 102 / 0.4);
    transition: 0.3s ease;
    transform: translateZ(0);
    will-change: transform;
}
.floating-wa:hover {
    transform: scale(1.08);
}
.trust-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 8%;
    background: rgb(255 255 255 / 0.03);
    border-top: 1px solid rgb(255 255 255 / 0.05);
    border-bottom: 1px solid rgb(255 255 255 / 0.05);
    backdrop-filter: blur(10px);
}
.trust-strip div {
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 18px;
    background: rgb(255 255 255 / 0.04);
    border: 1px solid rgb(255 255 255 / 0.06);
    border-radius: 50px;
    transition: 0.3s ease;
}
.trust-strip div:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.verified-section {
    padding: 80px 8%;
    text-align: center;
}
.verified-card {
    max-width: 700px;
    margin: auto;
}
.verified-card h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}
.verified-card p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 25px;
}
.hero-subtext {
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
    font-size: 1.1rem;
}
.portfolio-section {
    padding: 80px 8%;
    text-align: center;
}
.portfolio-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.portfolio-card p {
    opacity: 0.8;
    line-height: 1.7;
}
.counter-section {
    padding: 80px 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.counter-box {
    min-width: 220px;
    text-align: center;
}
.counter-box h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}
.counter-box p {
    opacity: 0.8;
}
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #1a73e8, #00d2ff);
    z-index: 99999;
    box-shadow: 0 0 10px rgb(0 210 255 / 0.5);
}
.map-section {
    padding: 80px 8%;
    text-align: center;
}
.map-container {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgb(255 255 255 / 0.08);
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.3);
}
.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}
.btn-call {
    background: rgb(255 255 255 / 0.06);
    color: #fff;
    border: 1px solid rgb(255 255 255 / 0.12);
    backdrop-filter: blur(10px);
}
.btn-call:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.btn-call:hover {
    background: var(--primary);
    transform: translateY(-2px);
}
.reviews-section {
    padding: 80px 8%;
    text-align: center;
}
.review-card {
    max-width: 600px;
    margin: auto;
}
.review-card p {
    margin-bottom: 25px;
    opacity: 0.8;
    line-height: 1.7;
}
.btn-google-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}
.btn-google-review:hover {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 0 20px rgb(255 255 255 / 0.3);
}
.footer-qr {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-qr h3 {
    margin-bottom: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    opacity: 0.92;
}
.footer-qr img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
    cursor: pointer;
    transition: 0.3s ease;
    opacity: 0.92;
    border-radius: 18px;
    background: rgb(255 255 255 / 0.03);
    padding: 10px;
    border: 1px solid rgb(255 255 255 / 0.06);
}
.footer-qr img:hover {
    transform: scale(1.08);
    opacity: 1;
}
.qr-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 0.75);
    backdrop-filter: blur(12px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.qr-popup-content {
    position: relative;
    text-align: center;
    background: rgb(20 20 25 / 0.92);
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 28px;
    padding: 30px;
    max-width: 420px;
    width: 100%;
}
.qr-popup-content img {
    width: 100%;
    max-width: 320px;
    border-radius: 24px;
}
.qr-popup-content p {
    margin-top: 20px;
    opacity: 0.8;
}
.qr-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}
.nav-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 12px 24px;
    height: 40px;
    width: auto;
    min-width: 0;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s ease;
}
.nav-quote-btn:hover {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 0 15px rgb(255 255 255 / 0.18);
}
.call-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 0.75);
    backdrop-filter: blur(12px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.call-popup-content {
    position: relative;
    width: 100%;
    max-width: 420px;
    text-align: center;
    background: rgb(15 15 20 / 0.95);
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 28px;
    padding: 35px 25px;
}
.call-popup-content h3 {
    margin-bottom: 18px;
    font-size: 1.5rem;
}
.call-number {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.call-popup-content img {
    width: 320px;
    max-width: 100%;
    border-radius: 24px;
    margin: 10px 0 20px;
}
.scan-text {
    opacity: 0.75;
}
.call-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    #dynamic-text::after,
    .typing-text::after,
    .typewriter::after {
        display: none !important;
        content: none !important;
    }
    .cursor {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
}
