/* CSS Variables for Color Scheme */
:root {
    --primary-brown: #653D28;
    --soft-peach: #FDB380;
    --clinical-orange: #D19F88;
    --warm-beige: #FAF9F6;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --border-color: #E5E5E5;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-brown);
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: var(--primary-brown);
    font-size: 24px;
    font-weight: 700;
}

.logo img {
    max-width: 120px;
    height: auto;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--soft-peach);
}

.header-cta {
    background-color: var(--clinical-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.header-cta:hover {
    background-color: var(--primary-brown);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--white) 100%);
    background-image: url('img/herosectionweb.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.hero-mobile-img {
    display: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.clinic-info {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
}
.clinic-info a{
    color:#000;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-brown);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--clinical-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(101, 61, 40, 0.3);
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Lead Form Card */
.lead-form-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.lead-form-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.form-subline {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 14px;
}

.lead-form .form-group {
    margin-bottom: 15px;
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.lead-form input:focus,
.lead-form select:focus {
    outline: none;
    border-color: var(--clinical-orange);
}

/* What Is Section */
.what-is-section {
    padding: 80px 0;
    background-color: var(--warm-beige);
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

.content-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Four Dimensions Section */
.four-dimensions-section {
    padding: 80px 0;
    background-color: var(--white);
}

.four-dimensions-section .section-title {
    margin-bottom: 20px;
}

.four-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 400;
}

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.four-dimensions-section p {
    text-align: center;
    color: var(--text-dark);
    font-size: 16px;
    margin-top: 20px;
}

.dimension-card {
    background-color: var(--warm-beige);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dimension-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dimension-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--soft-peach), var(--clinical-orange));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.dimension-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.dimension-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Treatment Section */
.treatment-section {
    padding: 80px 0;
    background-color: var(--warm-beige);
}

.treatment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.treatment-list ul {
    list-style: none;
}

.treatment-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text-dark);
}

.treatment-list i {
    color: var(--soft-peach);
    font-size: 24px;
}

.treatment-image .image-placeholder,
.placeholder-image {
    width: 100%;
    height: 350px;
    
    border-radius: 15px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.treatment-image .image-placeholder img {
    width: 85%;
    height: 100%;
    object-fit: cover;
    border: 4px solid var(--soft-peach);
    border-radius: 20px;
}


/* Why Better Section */
.why-better-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--warm-beige) 0%, #F5E6D3 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    justify-items: center;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--soft-peach);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:not(.benefit-item-wide) {
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-item-content {
    flex: 1;
}

.benefit-item h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-brown);
    text-decoration: underline;
    text-decoration-color: var(--soft-peach);
    text-underline-offset: 5px;
    text-align: left;
}

.benefit-item-wide {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background-color: var(--soft-peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 32px;
    color: var(--white);
}

.benefit-item p {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.disclaimer {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 14px;
}

/* Gallery Section */
/* Results Gallery Section - Real Results from Dr Marwah's Clinic */
.results-gallery-section {
    padding: 80px 0;
    background-color: var(--warm-beige);
}

.results-gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.results-gallery-section .gallery-item {
    padding: 0;
    border-radius: 20px;
    background: transparent;
    box-shadow: none;
}

.results-gallery-section .image-container {
    position: relative;
    border: 4px solid var(--soft-peach);
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    background-color: var(--white);
    display: inline-block;
}

.results-gallery-section .image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Machines Video Section - Our 2 Powerful Machines */
.machines-video-section {
    padding: 80px 0;
    background-color: var(--warm-beige);
}

.machines-video-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.machines-video-section .gallery-item {
    padding: 0;
    border-radius: 20px;
    background: transparent;
    box-shadow: none;
}

.machines-video-section .image-container {
    position: relative;
    border: 4px solid var(--soft-peach);
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 350px;
}

.machines-video-section .image-container video,
.machines-video-section .image-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    border: none;
}

.gallery-caption {
    text-align: center;
    margin-top: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
}



.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.timeline-item {
    text-align: center;
}

.timeline-marker {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--soft-peach), var(--clinical-orange));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.timeline-marker span {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
}

.timeline-marker small {
    font-size: 14px;
    color: var(--white);
}

.timeline-content p {
    color: var(--text-dark);
    font-size: 16px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-brown), var(--clinical-orange));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.video-placeholder i {
    font-size: 64px;
    margin-bottom: 15px;
}

.video-placeholder p {
    font-size: 18px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--warm-beige);
}

.why-choose-section .section-title {
    margin-bottom: 15px;
}

.why-choose-section > .container > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.clinic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.clinic-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
}

.feature-item i {
    font-size: 28px;
    color: var(--soft-peach);
    flex-shrink: 0;
}

.feature-item p {
    color: var(--text-dark);
    font-size: 16px;
}

.clinic-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clinic-images img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Image Slider Styles */
.image-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: auto;
}

.slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(101, 61, 40, 0.8);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: var(--primary-brown);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--warm-beige);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--clinical-orange);
}

.faq-question:hover h3 {
    color: var(--white);
}

.faq-question:hover i {
    color: var(--white);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-brown);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
}

/* Consultation Form Section */
.consultation-form-section {
    padding: 80px 0;
    background-color: var(--warm-beige);
}

.consultation-form-section .section-title {
    margin-bottom: 15px;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-wrapper > p {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 30px;
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.consultation-form .form-group {
    margin-bottom: 20px;
}

.consultation-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-brown);
    font-weight: 600;
    font-size: 14px;
}

.consultation-form input,
.consultation-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.consultation-form input:focus,
.consultation-form select:focus {
    outline: none;
    border-color: var(--clinical-orange);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.badge-item {
    text-align: center;
}

.badge-item i {
    font-size: 40px;
    color: var(--soft-peach);
    margin-bottom: 10px;
}

.badge-item p {
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
}
.badge-item img {
    width: 60px;
    display: block;
    margin: 0 auto;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-brown), var(--clinical-orange));
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-buttons p {
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.final-cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-brown);
}

.final-cta-section .btn-primary:hover {
    background-color: var(--soft-peach);
    color: var(--white);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.contact-info i {
    font-size: 28px;
}

.contact-info p {
    font-size: 20px;
    font-weight: 600;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
}

.contact-info small {
    display: block;
    font-size: 14px;
    font-weight: 400;
}

/* Footer */
.footer {
    background-color: var(--primary-brown);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: var(--soft-peach);
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section p {
    color: var(--white);
    line-height: 1.8;
}

.footer-terms-and-condition h3{
    color: var(--soft-peach);
    margin-bottom: 20px;
}
.footer-terms-and-condition p{
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-grid,
    .content-grid,
    .treatment-grid,
    .clinic-grid {
        grid-template-columns: 1fr;
    }

    .dimensions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefit-item-wide {
        grid-column: 1 / -1;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-gallery-section .gallery-grid,
    .machines-video-section .gallery-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    /* Hero: mobile image + form (left content hide) */
    .hero-section {
        background-image: none;
        background: transparent;
        padding: 0;
    }

    .hero-mobile-img {
        display: block;
        line-height: 0;
    }

    .hero-mobile-img .hero-mobile-bg {
        width: 100%;
        height: auto;
        display: block;
        vertical-align: top;
    }

    .hero-desktop-content .hero-left {
        display: none;
    }

    .hero-desktop-content {
        padding-top: 0;
    }

    .hero-desktop-content .container {
        padding-top: 24px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .dimensions-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .consultation-form .form-row {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .lead-form-card {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .trust-badges {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .slider-dots {
        bottom: 10px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--soft-peach);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.success-message.hide {
    animation: slideOut 0.3s ease;
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    color: #fff;
}