* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; overflow-x: hidden; color: #2d3748; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }

:root {
    --primary: #218c96;
    --secondary: #1469a2;
    --accent: #6a8ca8;
    --gold: #c8a882;
    --dark: #1a202c;
    --light: linear-gradient(135deg, #e6f7f9 0%, #f0f9ff 100%);
}

/* Navigation */
.navbar { padding: 1.2rem 0; background: white; box-shadow: 0 2px 20px rgba(0,0,0,0.08); position: fixed; width: 100%; top: 0; z-index: 1000; transition: all 0.3s; }
.navbar-brand img { height: 80px; }
.navbar-nav .nav-link { color: var(--dark); font-weight: 500; margin: 0 18px; padding: 8px 0; transition: all 0.3s; font-size: 15px; position: relative; }
.navbar-nav .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
.navbar-nav .nav-link:hover::after { width: 100%; }
.navbar-nav .nav-link:hover { color: var(--primary); }
.btn-book-nav { background: var(--primary); color: white; padding: 12px 30px; border-radius: 30px; border: none; font-weight: 600; transition: all 0.3s; }
.btn-book-nav:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: 0 5px 20px rgba(20,105,162,0.3); }

/* NEW HERO SECTION - Modern Clean Design */
.hero-section { padding: 160px 0 100px; background: linear-gradient(135deg, #e6f7f9 0%, #f0f9ff 100%); min-height: 95vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-section::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="500" cy="500" r="400" fill="%23218c96" opacity="0.05"/><circle cx="700" cy="300" r="250" fill="%231469a2" opacity="0.05"/></svg>') no-repeat center; background-size: cover; }
.hero-content { position: relative; z-index: 2; }
.hero-content .badge { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; padding: 8px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 20px; display: inline-block; }
.hero-content h1 { font-size: 4rem; font-weight: 800; color: var(--dark); margin-bottom: 25px; line-height: 1.2; }
.hero-content h1 span { color: var(--primary); }
.hero-content p { font-size: 1.3rem; color: #4a5568; margin-bottom: 40px; line-height: 1.8; }
.hero-stats { display: flex; gap: 50px; margin-top: 50px; }
.hero-stat { text-align: center; }
.hero-stat h3 { font-size: 2.8rem; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
.hero-stat p { color: #718096; font-weight: 500; }
.btn-hero { padding: 14px 25px; border-radius: 50px; font-weight: 700; font-size: 15px; transition: all 0.3s; text-decoration: none; display: inline-block; margin: 10px; }
.btn-hero-primary { background: var(--primary); color: white; }
.btn-hero-primary:hover { background: var(--secondary); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(33,140,150,0.3); color: white; }
.btn-hero-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-hero-outline:hover { background: var(--primary); color: white; }
.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: 30px; box-shadow: 0 30px 80px rgba(0,0,0,0.15); }
.hero-badge { position: absolute; bottom: 30px; right: 30px; background: white; padding: 30px; border-radius: 20px; box-shadow: 0 15px 50px rgba(0,0,0,0.2); text-align: center; }
.hero-badge h3 { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin: 0; }
.hero-badge p { margin: 0; color: #4a5568; font-weight: 600; }
.hero-image img {height: 500px;object-fit: cover;}



/* Common Styles */
.section-title { text-align: center; margin-bottom: 70px; }
.section-title h2 { font-size: 3rem; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.section-title h2 span { color: var(--primary); }
.section-title p { font-size: 1.1rem; color: #718096; max-width: 700px; margin: 0 auto; }
section#about .col-lg-6.section-title {
    text-align: left;
}

/* video-wrapper */
.video-wrapper {
    position: relative;
    cursor: pointer;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    color: white;
    background: var(--primary);
    border-radius: 50%;
    padding: 20px 30px;
    pointer-events: none;
}
/* video-wrapper */


/* Services Tab Section */
/* Services Tab Section */
.services-tab-section {
    padding: 60px 0;
    background: var(--light);
}

/* Title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

.section-title h2 span {
    color: var(--primary);
}

.section-title p {
    font-size: 1rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

/* Tabs */
.service-tabs {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
    list-style: none;
    margin-bottom: 30px;
    scrollbar-width: none;
}

.service-tabs::-webkit-scrollbar {
    display: none;
}

.service-tab {
    flex-shrink: 0;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    font-size: 0.9rem;
}

.service-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Content */
.service-content {
    display: none;
}

.service-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Content Box */
.service-detail {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.service-detail h3 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
}

.service-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Image */
.service-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

select#serviceDropdown {
    border: var(--primary) solid 2px;
    color: var(--primary);
}
/* Desktop Styling */
@media (min-width: 992px) {
    .services-tab-section { padding: 100px 0; }

    .service-tabs {
        justify-content: center;
        flex-wrap: wrap;
        overflow: visible;
    }

    .service-tab {
        padding: 10px 22px;
        font-size: 0.9rem;
    }

    .service-image {
        height: 450px;
        margin-bottom: 0;
    }

    .service-detail {
        padding: 40px;
    }

    .section-title h2 {
        font-size: 3rem;
    }
}











/* ENHANCED TEAM SLIDER */
.team-section { padding: 100px 0; background: white; }
.team-slider { position: relative; padding: 0 50px; }
.team-card { background: white; border-radius: 25px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.4s; height: 100%; }
.team-card:hover { transform: translateY(-15px); box-shadow: 0 20px 60px rgba(33,140,150,0.2); }
.team-img-wrapper { position: relative; overflow: hidden; height: 350px; }
.team-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .team-img { transform: scale(1.1); }
.team-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, transparent 0%, rgba(26,32,44,0.8) 100%); }
.team-info { padding: 35px; text-align: center; }
.team-info h4 { font-weight: 700; font-size: 1.5rem; color: var(--dark); margin-bottom: 8px; }
.team-info .specialization { color: var(--primary); font-weight: 600; font-size: 1rem; margin-bottom: 15px; display: block; }
.team-intro { color: #4a5568; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.team-social { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.team-social a { width: 40px; height: 40px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; color: var(--primary); transition: all 0.3s; text-decoration: none; }
.team-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); }

/* BLOG GRID SECTION */
.blog-section { padding: 100px 0; background: var(--light); }
.blog-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.3s; height: 100%; }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.blog-img { width: 100%; height: 250px; object-fit: cover; }
.blog-content { padding: 30px; }
.blog-meta { display: flex; gap: 20px; margin-bottom: 15px; font-size: 14px; color: #718096; }
.blog-meta i { color: var(--primary); margin-right: 5px; }
.blog-content h3 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 15px; line-height: 1.4; }
.blog-excerpt { color: #4a5568; line-height: 1.8; margin-bottom: 20px; }
.btn-read-more { color: var(--primary); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; }
.btn-read-more:hover { color: var(--secondary); gap: 12px; }

/* SMILE GALLERY - BEFORE/AFTER */
.gallery-section { padding: 100px 0; background: white; }
.gallery-slider { position: relative; }
.gallery-slide { background: white; border-radius: 25px; overflow: hidden; box-shadow: 0 15px 50px rgba(0,0,0,0.1); }
.before-after-container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba-image { position: relative; height: 400px; overflow: hidden; }
.ba-image img { width: 100%; height: 100%; object-fit: cover; }
.ba-label { position: absolute; top: 20px; left: 20px; background: rgba(0,0,0,0.85); color: white; padding: 10px 25px; border-radius: 50px; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; }
.ba-label.after { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.gallery-story { padding: 40px; background: var(--light); }
.gallery-story h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 15px; font-weight: 700; }
.gallery-story p { color: #4a5568; line-height: 1.9; font-size: 1.05rem; }

/* TESTIMONIAL SLIDER */
.testimonial-section { padding: 100px 0; background: linear-gradient(135deg, rgba(33,140,150,0.05), rgba(20,105,162,0.05)); }
.testimonial-card { background: white; border-radius: 25px; padding: 45px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.3s; height: 100%; }
.testimonial-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.testimonial-header { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; }
.testimonial-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); }
.testimonial-author h5 { font-weight: 700; color: var(--dark); font-size: 1.2rem; margin-bottom: 5px; }
.testimonial-author p { color: #718096; margin: 0; font-size: 14px; }
.testimonial-stars { color: #fbbf24; font-size: 18px; margin-bottom: 20px; }
.testimonial-text { font-size: 1.05rem; color: #4a5568; line-height: 1.9; font-style: italic; }
.quote-icon { font-size: 3rem; color: var(--primary); opacity: 0.2; }


.testimonialSwiper .swiper-slide {
    height: auto !important;
    display: flex;
}

.testimonialSwiper .testimonial-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    flex: 1;                  /* Make all boxes equal height */
    display: flex;
    flex-direction: column;
}


/* INSTAGRAM REELS SLIDER */
.instagram-section { padding: 100px 0; background: var(--dark); color: white; }
.instagram-section .section-title h2 { color: white; }
.instagram-section .section-title p { color: rgba(255,255,255,0.8); }
.reel-card { border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; transition: all 0.3s; }
.reel-card:hover { transform: scale(1.05); }
.reel-thumbnail { width: 100%; aspect-ratio: 9/16; object-fit: cover; }
.reel-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.reel-card:hover .reel-overlay { opacity: 1; }
.play-icon { width: 60px; height: 60px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 24px; }

/* Footer */
footer { background: #0d1117; color: white; padding: 80px 0 30px; }
.footer-section h4 { font-weight: 700; margin-bottom: 25px; color: white; font-size: 1.3rem; }
.footer-section p, .footer-section a { color: rgba(255,255,255,0.7); text-decoration: none; line-height: 2; }
.footer-section a:hover { color: var(--primary); }
.footer-logo { font-size: 2rem; font-weight: 800; color: white; margin-bottom: 20px; }
.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-links a { width: 45px; height: 45px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; transition: all 0.3s; }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 60px; padding-top: 30px; text-align: center; color: rgba(255,255,255,0.5); }

/* Swiper Custom Styles */
.swiper { width: 100%; padding: 20px 0 60px; }
.swiper-button-next, .swiper-button-prev { color: var(--primary); background: white; width: 50px; height: 50px; border-radius: 50%; box-shadow: 0 5px 20px rgba(0,0,0,0.15); }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 20px; font-weight: 900; }
.swiper-pagination-bullet { width: 12px; height: 12px; background: var(--primary); opacity: 0.3; }
.swiper-pagination-bullet-active { opacity: 1; width: 40px; border-radius: 6px; }

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 25px; }
    .section-title h2 { font-size: 2rem; }
    .before-after-container { grid-template-columns: 1fr; }
    .ba-image { height: 300px; }
    .team-slider, .gallery-slider { padding: 0 20px; }
}





/* ============================================ */
/* APPOINTMENT SECTION CSS - BRAND COLORS ONLY */
/* Colors: #218c96, #1469a2, #6a8ca8 */
/* ============================================ */

/* Appointment Section */
.appointment-section {
    padding: 100px 0;
    background: #fff;
    color: white;
    position: relative;
}

/* Section Title */
.appointment-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

/*.appointment-section .section-title h2 {*/
/*    color: white;*/
/*    font-size: 3rem;*/
/*    font-weight: 800;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.appointment-section .section-title h2 span {*/
/*    color: #6a8ca8;*/
/*}*/

.appointment-section .section-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Form Container */
.appointment-form-container {
    background: linear-gradient(135deg, #1469a2 0%, #218c96 100%);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Contact Info Card */
.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: white;
}

/* Contact Info Items */
.contact-info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: #218c96;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.contact-info-item a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: #6a8ca8;
}

.contact-info-item .phone-link {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Form Title */
.appointment-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: white;
}

/* Form Inputs */
.appointment-form .form-control,
.appointment-form .form-select {
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
    color: #1469a2;
    font-size: 15px;
    transition: all 0.3s;
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
    border-color: #218c96;
    box-shadow: 0 0 0 0.2rem rgba(33, 140, 150, 0.25);
    background: white;
}

.appointment-form .form-control::placeholder {
    color: #6a8ca8;
}

.appointment-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.appointment-form .btn-submit {
    background:  white;
    color: #218c96;
    padding: 18px 40px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    width: 100%;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.appointment-form .btn-submit:hover {
    background: #1469a2;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(33, 140, 150, 0.4);
}

.appointment-form .btn-submit:active {
    transform: translateY(0);
}

.appointment-form .btn-submit i {
    margin-right: 8px;
}

/* Map Container */
.appointment-map-container {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: 600px;
}

.appointment-map-container iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

/* Location Info Card */
.location-info-card {
    background: linear-gradient(135deg, #1469a2 0%, #218c96 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-info-card h4 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.location-info-card h4 i {
    color: #218c96;
    margin-right: 8px;
}

.location-info-card p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.location-info-card p strong {
    color: white;
    font-weight: 700;
}

/* Action Buttons */
.location-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.location-actions .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.location-actions .btn i {
    margin-right: 8px;
}

.location-actions .btn-directions {
    background: white;
    color: #218c96;
}

.location-actions .btn-directions:hover {
    background: #6a8ca8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 140, 168, 0.3);
}

.location-actions .btn-whatsapp {
    background: #218c96;
    color: white;
}

.location-actions .btn-whatsapp:hover {
    background: #1469a2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 105, 162, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .appointment-section {
        padding: 80px 0;
    }

    .appointment-section .section-title h2 {
        font-size: 2.5rem;
    }

    .appointment-form-container {
        padding: 30px;
        margin-bottom: 30px;
    }

    .appointment-map-container {
        height: 450px;
    }
}

@media (max-width: 767px) {
    .appointment-section {
        padding: 60px 0;
    }

    .appointment-section .section-title h2 {
        font-size: 2rem;
    }

    .appointment-section .section-title {
        margin-bottom: 40px;
    }

    .appointment-form-container {
        padding: 25px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-info-item {
        flex-direction: row;
        align-items: center;
    }

    .contact-info-item i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .location-actions {
        flex-direction: column;
    }

    .location-actions .btn {
        width: 100%;
    }

    .appointment-map-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .appointment-form .form-control,
    .appointment-form .form-select {
        padding: 12px 15px;
        font-size: 14px;
    }

    .appointment-form .btn-submit {
        padding: 15px 30px;
        font-size: 14px;
    }

    .contact-info-item a {
        font-size: 1rem;
    }

    .contact-info-item .phone-link {
        font-size: 1.1rem;
    }
}




/* ============================================ */
/* STICKY MOBILE FOOTER - CSS */
/* Shows on Mobile & Tablet only */
/* ============================================ */

/* Sticky Footer - Hidden on Desktop */
.sticky-mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none; /* Hidden by default */
    padding: 12px 0;
    border-top: 3px solid #218c96;
}

/* Show on Mobile & Tablet */
@media (max-width: 991px) {
    .sticky-mobile-footer {
        display: block;
    }
}

/* Footer Container */
.sticky-footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Individual Action Items */
.footer-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    padding: 8px;
    border-radius: 8px;
    flex: 1;
    max-width: 100px;
}

.footer-action-item:hover {
    background: rgba(33, 140, 150, 0.1);
    transform: translateY(-2px);
}

.footer-action-item:active {
    transform: translateY(0);
}

/* Icon Circle */
.footer-action-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.footer-action-icon i {
    font-size: 20px;
    color: white;
}

/* Call Button - Primary Teal */
.footer-action-item.call .footer-action-icon {
    background: #218c96;
}

/* Email Button - Secondary Blue */
.footer-action-item.email .footer-action-icon {
    background: #1469a2;
}

/* Book Appointment Button - Accent */
.footer-action-item.book .footer-action-icon {
    background: #6a8ca8;
}

/* Action Label */
.footer-action-label {
    font-size: 12px;
    font-weight: 600;
    margin-top: 3px;
    text-align: center;
}

.footer-action-item.call .footer-action-label {
    color: #218c96;
}

.footer-action-item.email .footer-action-label {
    color: #1469a2;
}

.footer-action-item.book .footer-action-label {
    color: #6a8ca8;
}

/* Hover Effects */
.footer-action-item.call:hover .footer-action-icon {
    background: #1469a2;
    box-shadow: 0 5px 15px rgba(33, 140, 150, 0.4);
}

.footer-action-item.email:hover .footer-action-icon {
    background: #218c96;
    box-shadow: 0 5px 15px rgba(20, 105, 162, 0.4);
}

.footer-action-item.book:hover .footer-action-icon {
    background: #218c96;
    box-shadow: 0 5px 15px rgba(106, 140, 168, 0.4);
}

/* Add padding to body to prevent content being hidden */
@media (max-width: 991px) {
    body {
        padding-bottom: 80px; /* Adjust based on footer height */
    }
}

/* Smaller screens - adjust icon sizes */
@media (max-width: 576px) {
    .footer-action-icon {
        width: 40px;
        height: 40px;
    }

    .footer-action-icon i {
        font-size: 18px;
    }

    .footer-action-label {
        font-size: 11px;
    }

    .sticky-footer-container {
        padding: 0 10px;
    }
}

/* Very small screens */
@media (max-width: 375px) {
    .footer-action-icon {
        width: 38px;
        height: 38px;
    }

    .footer-action-icon i {
        font-size: 16px;
    }

    .footer-action-label {
        font-size: 10px;
    }
}