:root {
    --primary: rgb(69, 30, 68);
    --primary-light: #5A2E66;
    --accent: #FF4D17;
    --accent-hover: #E64515;
    --text: #1A1A1A;
    --text-muted: #666;
    --bg: #F9F7FA;
    --white: #FFFFFF;
    --radius: 12px;
    --pill: 50px;
    --shadow: 0 10px 30px rgba(62, 31, 71, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

/* Hamburger Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    margin-right: 20px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent);
}

@media (max-width: 1200px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s ease-in-out;
        z-index: 1000;
        padding: 40px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        margin-right: 0;
        font-size: 20px;
        color: var(--primary);
    }
    
    .btn-outline-nav {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    color: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 450px;
    gap: 40px;
    align-items: center;
}

.hero-image-container {
    width: 100%;
}

.simulator-promo-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Lead Form Card */
.lead-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    color: var(--text);
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.step-indicator {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
}

.step-indicator span {
    color: var(--accent);
    font-size: 28px;
    font-weight: 800;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 28px;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 15px;
}

.welcome-header {
    margin-top: 40px;
    text-align: center;
}

.welcome-header h2 {
    font-size: 32px;
}

/* Form Steps */
.form-step {
    display: none;
    animation: slideUp 0.4s ease forwards;
}

.form-step.active {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Inputs */
.custom-input-group input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid #DDD;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.custom-input-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(255, 77, 23, 0.1);
}

/* Radio & Checkbox Stacks */
.radio-stack, .checkbox-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.radio-card-simple, .checkbox-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-radius: 12px;
    border: 1px solid #EEE;
    cursor: pointer;
    transition: var(--transition);
}

.radio-card-simple:hover, .checkbox-item:hover {
    background: #FDFBFF;
    border-color: var(--primary-light);
}

.radio-card-simple input, .checkbox-item input {
    display: none;
}

.radio-content-simple {
    display: flex;
    flex-direction: column;
}

.radio-content-simple .title {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
}

.radio-content-simple .desc {
    font-size: 13px;
    color: var(--text-muted);
}

.radio-circle, .checkmark-square {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #DDD;
    position: relative;
}

.checkmark-square {
    border-radius: 4px;
}

input:checked + .radio-content-simple + .radio-circle,
input:checked + .checkmark-square {
    background: var(--accent);
    border-color: var(--accent);
}

input:checked + .radio-content-simple + .radio-circle::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-pill {
    border-radius: var(--pill);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(255, 77, 23, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 77, 23, 0.4);
}

.btn-outline {
    background: var(--white);
    border: 2px solid var(--accent);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(255, 77, 23, 0.05);
}

.btn-outline-nav {
    border-radius: var(--pill);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    text-decoration: none;
}

.btn-start {
    margin-top: auto;
    width: 100%;
    padding: 20px;
}

.form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.form-actions-single {
    margin-top: 32px;
}

.form-actions-single .btn {
    width: 100%;
}

/* Extra Styles (reCAPTCHA, Privacy) */
.checkbox-group {
    margin: 20px 0;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-muted);
}

.custom-checkbox input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #DDD;
    border-radius: 4px;
    flex-shrink: 0;
    transition: var(--transition);
}

.custom-checkbox input:checked + .checkmark {
    background: var(--accent);
    border-color: var(--accent);
    position: relative;
}

.custom-checkbox input:checked + .checkmark::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 2px;
    left: 5px;
}

.privacy-text {
    font-size: 12px;
    color: var(--text-muted);
    margin: 12px 0;
}

.privacy-text a {
    color: var(--accent);
}

.error-message {
    color: #FF4D17;
    font-size: 13px;
    font-weight: 500;
    margin-top: 6px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-group.error .error-message,
.checkbox-group.error .error-message,
.radio-stack.error .error-message {
    display: block;
}

.form-group.error input {
    border-color: #FF4D17;
    background-color: rgba(255, 77, 23, 0.02);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Plans Selection Section */
.plans-selection {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
    position: relative;
}

.plans-selection .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.plans-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.plans-content-left {
    flex: 0 0 380px;
    position: relative;
    z-index: 50;
    background: var(--white);
}

.plans-slider-wrapper {
    flex: 1;
    min-width: 0;
    max-width: 760px; /* Reduced from 810px to ensure cards are slightly cut off */
    position: relative;
    overflow: hidden;
    padding: 10px 5px;
}

/* Nav on top of cards */
.slider-header-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.slider-nav-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 8px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.arrow-btn svg {
    width: 20px;
    height: 20px;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.15;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    opacity: 1;
    background: var(--accent);
}

.plans-slider-container {
    width: 100%;
    position: relative;
}

.plans-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card {
    flex: 0 0 380px;
    height: 520px; /* Restored to original */
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px; /* Restored to original */
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    filter: brightness(1.05) contrast(1.05);
    transition: var(--transition);
}

.plan-card:hover {
    filter: brightness(1.15) contrast(1.1);
    transform: translateY(-5px);
}

.plans-title {
    font-size: 48px;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 20px;
}

.compare-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    font-size: 18px;
    margin-bottom: 40px;
    display: inline-block;
}

.plans-cta-box {
    margin-top: 40px;
}

.btn-simular {
    width: 100%;
    max-width: 320px;
    padding: 20px;
    font-size: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
}

.phone-icon-img {
    width: 24px;
    height: 24px;
}



.plan-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%); /* Lightened gradient */
    z-index: 1;
}

.plan-card-content {
    position: relative;
    z-index: 2;
}

.plan-label {
    font-size: 32px; /* Restored to original */
    font-family: 'Outfit', sans-serif;
    margin-bottom: 15px; /* Restored to original */
}

.plan-label strong {
    font-weight: 800;
}

.plan-desc {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 250px;
}

.plan-price-box {
    margin-bottom: 30px;
}

.price-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 36px; /* Restored to original */
    font-weight: 800;
    color: var(--accent);
}

.btn-saiba-mais {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-card-footer {
    position: relative;
    z-index: 2;
    font-size: 11px;
    opacity: 0.7;
    line-height: 1.4;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
}

.network-banner {
    padding: 80px 0;
    background-color: var(--white);
}

.banner-orange-box {
    background-color: var(--accent);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 77, 23, 0.2);
}

.banner-orange-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 35px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.btn-network {
    display: inline-block;
    background-color: var(--white);
    color: var(--accent);
    padding: 18px 50px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-network:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.differentials-selection {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.diff-layout {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.diff-content-left {
    flex: 0 0 380px;
    background-color: #3B1C3B;
    padding: 60px 40px;
    border-radius: 12px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.diff-slider-wrapper {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
    padding: 10px 5px;
}


.diff-tag {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.diff-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--accent);
    color: var(--white);
    padding: 18px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.btn-whatsapp img {
    width: 24px;
    height: 24px;
}

.cta-small {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
    text-align: center;
}

.phone-link-white {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #FF7A50; /* Lighter orange for readability on purple */
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
}

.phone-link-white img {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .diff-layout {
        flex-direction: column;
    }
    .diff-content-left {
        flex: 0 0 auto;
        width: 100%;
        padding: 40px 24px;
        text-align: center;
    }
    .diff-slider-header {
        justify-content: center;
        margin: 20px 0;
    }
    .diff-title {
        font-size: 32px;
    }
    .btn-whatsapp {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .diff-slider-wrapper {
        flex: none;
        width: 100%;
        padding: 20px 0;
        overflow: visible;
    }
    .diff-slider-container {
        overflow: hidden;
    }
    .diff-card {
        flex: 0 0 280px;
        min-width: 280px;
        min-height: 340px;
    }
    .diff-slider-container {
        max-width: 100%;
    }
}
}

.diff-slider-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.diff-nav-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F8F8F8;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid #EAEAEA;
}

.arrow-btn-diff {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #3B1C3B;
    background: transparent;
    color: #3B1C3B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.arrow-btn-diff:hover {
    background: #3B1C3B;
    color: var(--white);
}

.diff-dots {
    display: flex;
    gap: 6px;
}

.dot-diff {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3B1C3B;
    opacity: 0.2;
    cursor: pointer;
}

.dot-diff.active {
    opacity: 1;
}

.diff-slider-container {
    width: 100%;
    max-width: 820px;
}

.diff-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.diff-card {
    flex: 0 0 320px; /* Optimized width based on inspection */
    background-color: #FDF9F2;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px; /* Adjusted to fit the exact spacings */
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.diff-card h3 {
    font-size: 24px; /* Exact size from Image 2 */
    color: #451E44; /* Exact Purple from Image 2 */
    font-weight: 800;
    margin: 0;
    padding: 12px 0; /* py-3 = 12px */
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
}

.diff-card p {
    font-size: 16px; /* Exact size from Image 3 */
    color: #333333; /* Exact Gray from Image 3 */
    font-weight: 600; /* Semibold */
    line-height: 1.4;
    margin: 0;
    padding-bottom: 40px; /* pb-10 = 40px */
    font-family: 'Outfit', sans-serif;
}

.diff-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid rgba(128, 128, 128, 0.3); /* Gray border-b with 30% opacity */
    padding-bottom: 8px; /* pb-2 = 8px */
    margin-top: auto;
}

.diff-icon {
    margin: 0;
    flex-shrink: 0;
    padding-top: 9px; /* pt-9 requested as 9px */
}

.diff-icon img {
    width: 105px; /* Exact width from Image 1 */
    height: 128px; /* Exact height from Image 1 */
    object-fit: contain;
    opacity: 1;
    display: block;
}

.btn-saiba-mais-diff {
    color: #FB4C00; /* Exact Orange from Image 4 */
    font-weight: 700;
    text-decoration: none;
    font-size: 16px; /* Exact size from Image 4 */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

@media (max-width: 992px) {
    .plans-layout {
        flex-direction: column;
        gap: 30px;
    }
    .plans-content-left {
        flex: 0 0 auto;
        width: 100%;
        text-align: center;
    }
    .slider-header-top {
        justify-content: center;
        margin-top: 20px;
    }
    .plans-title {
        font-size: 32px;
    }
    .btn-simular {
        margin-left: auto;
        margin-right: auto;
    }
    .phone-link {
        justify-content: center;
    }
    .plans-slider-wrapper {
        flex: none;
        width: 100%;
        max-width: 100%;
        padding: 20px 0;
        overflow: visible; /* Prevent clipping arrows just in case */
    }
    .plans-slider-container {
        overflow: hidden; /* Move overflow to inner container to allow arrows to breathe if needed */
    }
    .plan-card {
        flex: 0 0 300px;
        min-width: 300px;
        height: 480px;
    }
}

@media (max-width: 480px) {
    .plan-card {
        flex: 0 0 280px;
        min-width: 280px;
        padding: 20px;
    }
    .plan-label { font-size: 24px; }
    .diff-icon img {
        width: 80px;
        height: 100px;
    }
}

/* Success Msg */
.success-msg {
    text-align: center;
    padding: 80px 40px;
    animation: slideUp 0.5s ease;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #5cb85c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon svg {
    width: 50px;
    height: 50px;
}

.success-msg h3 {
    font-size: 26px;
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 800;
}

.success-msg p {
    font-size: 18px;
    color: var(--text);
    line-height: 1.5;
    max-width: 320px;
    margin: 0 auto 24px;
}

.restart-link {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.restart-link:hover {
    color: var(--primary);
}

.hidden { display: none !important; }

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-image-container {
        display: none;
    }
    .lead-form-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Footer */
.footer {
    padding: 20px 0 30px; /* Reduced from 60px to 20px */
    background-color: #4B463E;
    color: var(--white);
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.3); /* Added top line */
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-address {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 65px; /* Increased from 40px */
    width: auto;
    margin-bottom: 20px;
    align-self: flex-start;
    filter: brightness(0) invert(1);
}

.footer-address p {
    margin-bottom: 5px;
    opacity: 0.9;
    line-height: 1.4;
}

.footer-ans {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-text {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background-color: #EEE8D5; /* Cream/Beige color from image */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B1C3B; /* Dark purple color from image */
    transition: var(--transition);
}

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

.social-icon svg {
    stroke: currentColor;
}

.ans-img {
    height: 30px; /* Decreased from 50px */
    width: auto;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    margin-bottom: 30px;
}

.footer-bottom {
    text-align: center;
    opacity: 0.8;
}

.footer-bottom p {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .banner-orange-box {
        padding: 40px 20px;
    }
    .banner-orange-box h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    .btn-network {
        width: 100%;
        padding: 16px 20px;
    }
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .footer-address {
        align-items: center;
    }
    .footer-logo {
        align-self: center;
    }
    .footer-ans {
        justify-content: center;
        width: 100%;
    }
    .clinics-title, .plans-title, .diff-title {
        font-size: 28px !important;
    }
    .lead-form-card {
        padding: 24px;
    }
    .form-header h2 {
        font-size: 22px;
    }
}

/* Clinics Section */
.clinics-section {
    padding: 100px 0;
    background-color: var(--white);
}

.clinics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.clinic-header-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-right: 30px;
}

.clinics-title {
    font-size: 44px;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.clinics-subtitle {
    color: #444;
    font-size: 18px;
    line-height: 1.5;
}

.clinic-card {
    height: 380px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.clinic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.clinic-content {
    position: relative;
    z-index: 2;
}

.clinic-content h3 {
    font-size: 32px;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.clinic-content p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 500;
}

.btn-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: underline;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-location:hover {
    color: var(--accent);
}

@media (max-width: 1100px) {
    .clinics-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .clinics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .clinics-grid {
        grid-template-columns: 1fr;
    }
    .clinic-header-box {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .clinic-card {
        height: 320px;
    }
}

