/* Color Palette */
:root {
    --primary-brown: #653D28;
    --soft-peach: #FDB380;
    --clinical-orange: #D19F88;
    --warm-beige: #FAF9F6;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-light: #666666;
}

/* Reset & 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);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* 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: url('../img/herobannerweb.png') center center / cover no-repeat;
    padding: 80px 0;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-brown);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #7d4d33;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 61, 40, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    background: url('../img/herobannerweb.png') center center / cover no-repeat;
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Mobile hero image - hidden on desktop */
.hero-mobile-banner {
    display: none;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.clinic-text {
    font-size: 0.95rem;
    color: var(--primary-brown);
    margin: 0;
    font-weight: 500;
}

/* Form Card */
.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(101, 61, 40, 0.1);
}

.form-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 1.5px solid #E5E5E5;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--clinical-orange);
    box-shadow: 0 0 0 3px rgba(209, 159, 136, 0.1);
}

.form-group select {
    cursor: pointer;
    color: var(--text-dark);
}

/* What Is Section */
.what-is-section {
    padding: 100px 0;
    background-color: var(--white);
}

.what-is-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.technology-box {
    background-color: var(--warm-beige);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--soft-peach);
}

.technology-box h3 {
    color: var(--primary-brown);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.technology-box i {
    color: var(--clinical-orange);
    margin-right: 10px;
}

.summary-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 30px;
}

.content-image img {
    width: 70%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background-color: var(--warm-beige);
}

.how-it-works-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.diagram-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagram-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(101, 61, 40, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    text-align: left;
}

.step-card:hover {
    transform: translateY(-8px);
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--clinical-orange) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-card-content {
    flex: 1;
}

.step-card h3 {
    margin-bottom: 15px;
    margin-top: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Ideal For Section */
.ideal-for-section {
    padding: 100px 0;
    background-color: var(--white);
}

.ideal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ideal-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 15px 0;
    font-size: 1.05rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
}

.check-list i {
    color: var(--soft-peach);
    margin-right: 15px;
    font-size: 1.3rem;
    margin-top: 3px;
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background-color: var(--warm-beige);
}

.results-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.result-card {
    background-color: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(101, 61, 40, 0.06);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(101, 61, 40, 0.12);
}

.result-card i {
    color: var(--soft-peach);
    font-size: 2rem;
    margin-bottom: 15px;
}

.result-card p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.disclaimer {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin-top: 30px;
}

/* Before After Section */
.before-after-section {
    margin-top: 80px;
}

.before-after-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-brown);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    padding: 10px;
}

.gallery-item img {
    width: 100%;
    height: auto; /* show natural image height to preserve proportions */
    object-fit: contain;
    display: block;
}

.gallery-caption {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-brown);
    margin: 0;
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background-color: var(--white);
}

.experience-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--warm-beige);
    border-radius: 10px;
}

.experience-item i {
    color: var(--clinical-orange);
    font-size: 2rem;
    min-width: 40px;
}

.experience-item p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.experience-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Videos Section */
.videos-section {
    margin-top: 80px;
}

.videos-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-brown);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.video-item {
    display: flex;
    flex-direction: column;
}

.video-item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

.video-title {
    margin-top: 20px;
    text-align: center;
    font-size: 0.6rem;
    color: var(--primary-brown);
    font-weight: 600;
    margin-bottom: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background-color: var(--warm-beige);
}

.why-choose-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.why-choose-item {
    text-align: center;
    padding: 30px 20px;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--clinical-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.why-choose-item:hover .icon-circle {
    transform: scale(1.1);
}

.icon-circle i {
    color: var(--white);
    font-size: 2.5rem;
}

.why-choose-item p {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
}

/* Clinic Slider */
.clinic-slider {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: none;
    flex-direction: column;
}

.slide.active {
    display: flex;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px 16px 0 0;
}

.slide-caption {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    font-weight: 600;
    color: var(--primary-brown);
    font-size: 1.1rem;
    margin: 0;
    border-radius: 0 0 16px 16px;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background-color: var(--primary-brown);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow i {
    font-size: 1.2rem;
    color: var(--primary-brown);
}

.slider-arrow:hover i {
    color: var(--white);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    background-color: var(--warm-beige);
    border-radius: 12px;
    border-left: 4px solid var(--soft-peach);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-brown);
}

.faq-item h3 i {
    color: var(--clinical-orange);
    margin-right: 10px;
}

.faq-item p {
    margin: 0;
    color: var(--text-dark);
}

/* Lead Form Section */
.lead-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-brown) 0%, #7d4d33 100%);
}

.lead-form-section h2,
.lead-form-section .form-subtitle {
    color: var(--white);
    text-align: center;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lead-form-section .lead-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 50px;
}

.lead-form-section input,
.lead-form-section select {
    background-color: var(--white) !important;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.badge-item {
    text-align: center;
    color: var(--white);
}

.badge-item i {
    font-size: 2.5rem;
    color: var(--soft-peach);
    margin-bottom: 10px;
}

.badge-item p {
    color: var(--primary-brown);
    font-weight: 600;
    margin: 0;
    font-size: 12px;
}
.badge-item img{
    width:50px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--warm-beige) 0%, #FFF5ED 100%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text {
    text-align: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.cta-text a[href^="tel"] {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 700;
    -webkit-tap-highlight-color: transparent;
}

.cta-text a[href^="tel"]:hover {
    color: var(--clinical-orange);
}

/* Fix phone numbers in final CTA section for mobile */
@media (max-width: 768px) {
    .cta-text a[href^="tel"] {
        color: var(--primary-brown) !important;
    }
}

.cta-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: var(--primary-brown);
    color: var(--white);
    padding: 60px 0 30px;
}

/* Prevent iPhone Safari from auto-styling phone numbers as blue links */
.footer * {
    -webkit-tap-highlight-color: transparent;
}

.footer a,
.footer a:link,
.footer a:visited,
.footer a:active {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer a:hover {
    color: rgba(255, 255, 255, 1) !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--soft-peach);
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.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 phone numbers with tel: links - white color, clickable */
.footer-phone,
.footer-section a[href^="tel:"] {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.3s ease;
}

.footer-phone:hover,
.footer-phone:active,
.footer-section a[href^="tel:"]:hover,
.footer-section a[href^="tel:"]:active {
    color: rgba(255, 255, 255, 1) !important;
    text-decoration: underline !important;
}

.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-copyright {
    flex: 1;
    min-width: 0;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.footer-links a:hover {
    color: var(--soft-peach);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .content-grid,
    .ideal-grid,
    .experience-grid,
    .cta-content {
        grid-template-columns: 1fr;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid,
    .results-grid,
    .why-choose-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 0 !important;
        background: linear-gradient(135deg, #FAF9F6 0%, #FFF5ED 100%) !important;
    }

    .hero-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-grid {
        gap: 0;
    }

    /* Mobile: Show hero image, hide text - no space above/below */
    .hero-mobile-banner {
        display: block !important;
        margin: 0;
        padding: 0;
    }
    .hero-mobile-banner img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 0;
        vertical-align: top;
    }
    .hero-content h1,
    .hero-content .hero-subtitle {
        display: none !important;
    }

    .steps-grid,
    .results-grid,
    .why-choose-grid,
    .gallery-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile: icons vala section (US FDA, 36 Years, etc.) hide */
    .trust-badges {
        display: none !important;
    }

    /* Mobile: Call Now button hide */
    .header-cta {
        display: none !important;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    section {
        padding: 60px 0 !important;
    }

    /* Slider responsive */
    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-arrow i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .form-card h2,
    .lead-form-section h2 {
        font-size: 1.5rem;
    }
}
/* FOOTER BASE */
.main-footer {
    background: #4a1f0f;
    padding: 60px 0 25px;
    color: #fff;
    font-family: "Inter", sans-serif;
}

/* 2 COLUMN LAYOUT */
.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

/* LEFT */
.footer-left {
    width: 38%;
}

.footer-left p {
    margin-top: 10px;
    line-height: 1.6;
    color: #f1e6dd;
    max-width: 330px;
}

.footer-social {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: .3s;
}

.footer-social a:hover {
    background: #fff;
    color: #4a1f0f;
}

/* RIGHT */
.footer-right {
    width: 58%;
    display: flex;
    justify-content: space-between;
}

.footer-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-block ul li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 15px;
    color: #fcefe9;
}

.footer-block a {
    color: #fff;
    text-decoration: none;
}

.footer-block a:hover {
    text-decoration: underline;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin: 18px 0;
}

.app-btn {
    width: 150px;
    margin-right: 12px;
    margin-top: 12px;
}

/* CONTACT */
.footer-contact {
    margin-top: 40px;
}

.footer-contact h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-contact ul li {
    list-style: none;
    margin-bottom: 8px;
    color: #eee;
    font-size: 15px;
}

.footer-contact i {
    margin-right: 8px;
}

/* COPYRIGHT */
.footer-copy {
    margin-top: 20px;
    font-size: 14px;
    color: #f8dfd4;
}

/* MOBILE RESPONSIVE */
@media(max-width: 900px) {
    .footer-row {
        flex-direction: column;
    }
    .footer-right {
        flex-direction: column;
        gap: 40px;
    }
    .footer-left, .footer-right {
        width: 100%;
    }
}
/* 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;
}

