/* 
======================================
    LIGO GYNAC LANDING PAGE CSS
======================================
    Primary Color: #00a6b8 (Teal)
    Dark Teal: #00495a
    Light Blue: #e6fbff
    Gradient: linear-gradient(135deg, #00a6b8 0%, #008896 100%)
======================================
*/

:root {
    --primary: #00a6b8;
    --primary-dark: #008896;
    --secondary: #00495a;
    --light-bg: #e6fbff;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 35px rgba(0, 166, 184, 0.15);
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 40px 0;
}

.bg-light {
    background-color: var(--gray-100);
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 166, 184, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 166, 184, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Section Header */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--light-bg);
    color: var(--primary);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 40px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 5px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
}

.logo-text .highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--secondary);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: var(--font-heading);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(0,166,184,0.2) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
    animation: morph 8s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

.hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 600px;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    font-weight: 600;
    color: var(--secondary);
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    color: var(--primary);
    font-size: 1.5rem;
}

.badge-1 {
    top: 10%;
    left: -10%;
}

.badge-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content {
    flex: 1;
}

.feature-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--secondary);
}

.feature-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Services Grid with Image Cards */
.services-grid.image-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-card-img {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.service-card-img:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-img:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content .service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary);
}

.card-content .service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    flex: 1;
}

.consult-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.consult-link:hover {
    color: var(--secondary);
    gap: 12px;
}

/* Why Choose Us */
.why-us {
    background: linear-gradient(135deg, var(--secondary) 0%, #002d38 100%);
    color: var(--white);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-badge {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.feature-box {
    display: flex;
    gap: 24px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 166, 184, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.feature-text p {
    color: rgba(255,255,255,0.7);
}

/* Contact */
.contact-wrapper {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.contact-info {
    flex: 1;
    background: var(--light-bg);
    padding: 60px 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-muted);
}

.contact-form-container {
    flex: 1.5;
    padding: 60px 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
    background: var(--gray-100);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 166, 184, 0.1);
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    /* padding-top: 80px; */
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* Banner Form */
.hero-form-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.banner-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.banner-form-card h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--secondary);
}

.banner-form-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Custom Hero Visual Layout */
.hero-custom {
    padding: 120px 0 60px;
    background-color: var(--light-bg);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.custom-hero-container {
    display: flex;
    align-items: center;
    /* gap: 50px; */
}

.custom-hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.visual-shape-bg {
    position: absolute;
    width: 150%;
    height: 150%;
    background: var(--primary);
    border-radius: 50%;
    left: -70%;
    z-index: 0;
}

.visual-circle-img {
    position: relative;
    z-index: 1;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 8px solid var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}

.visual-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-badge {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    border: 6px solid var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    z-index: 2;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.visual-badge .badge-num {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.visual-badge .badge-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.decor-cross {
    position: absolute;
    color: var(--white);
    font-size: 2rem;
    z-index: 1;
    opacity: 0.8;
}

.top-cross {
    top: 10%;
    right: 15%;
}

.bottom-cross {
    bottom: 10%;
    left: 10%;
    color: var(--primary);
}

.decor-dots {
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(var(--primary) 25%, transparent 25%);
    background-size: 15px 15px;
    z-index: 1;
}

.left-dots {
    top: 15%;
    left: 5%;
    background-image: radial-gradient(var(--white) 25%, transparent 25%);
}

.right-dots {
    top: -20px;
    right: -20px;
    opacity: 0.5;
}

.custom-hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
    max-width: 100%;
    overflow-wrap: break-word;
}

.hero-text-header {
    margin-bottom: 30px;
}

.hero-text-header .hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--secondary);
}

.hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.hero-cta-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-text-header .text-primary {
    color: var(--primary);
}

.hero-bottom-info {
    align-self: flex-end;
    margin-top: 15px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

.hero-bottom-info a {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}

@media (max-width: 992px) {
    .custom-hero-container {
        flex-direction: column;
    }
    .visual-shape-bg {
        width: 150%;
        height: 150%;
        border-radius: 50%;
        left: -25%;
        top: -50%;
    }
    .visual-circle-img {
        width: 300px;
        height: 300px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.animate-slide-in-right {
    animation: slideInRight 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    animation-delay: 0.3s;
    opacity: 0; /* Wait for delay */
}

/* Testimonials Marquee */
.testimonial-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    /* background: var(--light-bg); */
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollTestimonials 30s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px)); /* shift exactly half the track length minus gap */
    }
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    width: 350px;
    flex-shrink: 0;
    border: 1px solid var(--gray-200);
}

.testimonial-card .stars {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--primary);
    font-size: 1.1rem;
}

/* FAQ */
.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 300px;
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary);
}

/* SEO Searches */
.seo-searches {
    background: #f9fbff;
}

.seo-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 15px;
    line-height: 1.8;
}

.seo-links-container a {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.seo-links-container a:hover {
    color: var(--primary);
}

.seo-links-container .divider {
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* Floating Action Buttons */
.floating-btn-desktop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999;
    transition: var(--transition);
}

.floating-btn-desktop:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    color: var(--white);
}

.floating-btn-wa {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999;
    transition: var(--transition);
}

.floating-btn-wa:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    color: var(--white);
    background-color: #128C7E;
}

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
}

.mobile-bottom-bar .mobile-action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
}

.mobile-bottom-bar .mobile-action-btn:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: var(--gray-200);
}

.mobile-bottom-bar .mobile-action-btn i {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

#mob-wa i { color: #25D366; }
#mob-call i { color: #e74c3c; }
#mob-appt i { color: var(--primary); }

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container, .about-container, .contact-wrapper {
        flex-direction: column;
    }
    .services-grid.image-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-form-wrapper {
        margin-top: 40px;
        justify-content: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .floating-badge {
        display: none;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .nav-links {
        display: flex;
    }
    .nav-links .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    .mobile-menu-btn {
        display: none;
    }
    .hero-custom {
    background-color: var(--primary);
}
    .features-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .floating-btn-desktop {
        display: none;
    }
    .floating-btn-wa {
        display: none;
    }
    .mobile-bottom-bar {
        display: flex;
    }
    body {
        padding-bottom: 60px;
    }
    .services-grid.image-cards {
        grid-template-columns: 1fr;
    }
    .banner-form-card {
        scroll-margin-top: 120px;
        padding: 25px; /* Reduce padding for mobile */
        max-width: 100%;
        margin: 0 auto;
    }
    .custom-hero-visual {
        align-items: center; /* Center the form visually */
        /* padding: 0 10px;  */
        /* margin-top: 30px; */
    }
    .hero-bottom-info {
        align-self: center; /* Center the link on mobile */
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    .hero-cta-info {
        align-items: center;
    }
    .visual-circle-img {
        width: 180px;
        height: 180px;
        border-width: 5px;
    }
    .visual-badge {
        width: 80px;
        height: 80px;
    }
    .decor-dots {
        display: none; /* Hide decorative dots on mobile to prevent text overlap */
    }
    .visual-shape-bg {
        display: none; /* Hide the large teal circle on mobile */
    }
}
