/* Healthy Smile Dental Surgery - Visual Restructuring Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --navy-color: #07162C;
    --navy-rgb: 7, 22, 44;
    --primary-color: #17C3B2; /* Vibrant Teal */
    --primary-rgb: 23, 195, 178;
    --accent-color: #7ED957; /* Accent Green */
    --bg-color: #F8FCFF;
    --dark-text: #07162C;
    --light-text: #6B7280;
    --white: #ffffff;
    --border-radius-custom: 6px;
    --shadow-soft: 0 10px 30px rgba(7, 22, 44, 0.04);
    --shadow-premium: 0 15px 35px rgba(7, 22, 44, 0.08);
    --transition-smooth: all 0.3s ease;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Global Reset & Base */
body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: #4B5563;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}
a:hover {
    color: var(--navy-color);
}

/* Header Top Bar */
.top-bar-custom {
    background-color: var(--navy-color);
    color: #9CA3AF;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.top-bar-custom a {
    color: #9CA3AF;
}
.top-bar-custom a:hover {
    color: var(--primary-color);
}
.top-bar-custom .top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.top-bar-custom .top-bar-divider {
    color: rgba(255, 255, 255, 0.15);
    margin: 0 15px;
}
.top-bar-custom .social-links a {
    font-size: 14px;
    margin-left: 12px;
}

/* Navbar */
.navbar-premium {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.02);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar-premium .nav-link {
    font-weight: 600;
    color: var(--navy-color) !important;
    font-size: 15px;
    padding: 8px 16px !important;
    position: relative;
}
.navbar-premium .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -15px;
    left: 16px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
}
.navbar-premium .nav-link:hover::after,
.navbar-premium .nav-link.active::after {
    width: calc(100% - 32px);
}
.navbar-premium .nav-link:hover,
.navbar-premium .nav-link.active {
    color: var(--primary-color) !important;
}

/* Book Appointment Buttons */
.btn-book-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    border: none;
    padding: 10px 22px;
    border-radius: var(--border-radius-custom);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}
.btn-book-nav:hover {
    background-color: #129e90;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 195, 178, 0.2);
}

.btn-call-hero {
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: var(--border-radius-custom);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}
.btn-call-hero:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section-custom {
    position: relative;
    background-color: #F3F9FC;
    background-image: radial-gradient(circle at 80% 50%, rgba(23, 195, 178, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    padding: 100px 0 140px;
    overflow: hidden;
}
.hero-title-main {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-subtitle-dashes {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}
.hero-desc-custom {
    color: #4B5563;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 520px;
}
.hero-img-container {
    position: relative;
    z-index: 2;
}
.hero-img-custom {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 20px;
}
/* Sub-hero Bullet Line */
.sub-hero-bullet-line {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 35px;
}
.sub-hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy-color);
}
/* Floating Badge on Hero */
.hero-floating-badge {
    position: absolute;
    left: 20px;
    bottom: 40px;
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    max-width: 200px;
}
.hero-floating-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(23, 195, 178, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Feature Overlays (White Card Over Hero bottom) */
.features-overlay-container {
    margin-top: -80px;
    position: relative;
    z-index: 20;
    padding-bottom: 60px;
}
.features-card-wrap {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(7, 22, 44, 0.06);
    padding: 30px 20px;
    border: 1px solid rgba(7, 22, 44, 0.02);
}
.feature-item-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.feature-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.feature-bg-blue {
    background-color: rgba(0, 180, 216, 0.08);
    color: #00B4D8;
}
.feature-bg-green {
    background-color: rgba(126, 217, 87, 0.08);
    color: #76D254;
}
.feature-text-block .title {
    font-weight: 700;
    font-size: 15px;
    color: var(--navy-color);
    margin-bottom: 2px;
}
.feature-text-block .desc {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.4;
}

/* About Section Overlapping Images */
.about-images-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}
.about-img-main {
    width: 75%;
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-premium);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.about-img-overlay {
    width: 55%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-premium);
    position: absolute;
    right: 10px;
    bottom: 20px;
    z-index: 2;
    border: 6px solid var(--white);
}

/* Bullet Checklist Grid */
.about-bullets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0 35px;
}
.about-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--navy-color);
    font-size: 14px;
}

/* Counter Stat Banner */
.stats-banner-custom {
    background-color: var(--navy-color);
    padding: 60px 0;
    color: var(--white);
}
.stat-item-col {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}
.stat-item-col:last-child {
    border-right: none;
}
.stat-num-val {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}
.stat-label-title {
    font-size: 14px;
    color: #9CA3AF;
    font-weight: 600;
}
.stat-icon-wrap {
    font-size: 24px;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 10px;
}

/* Doctor Cards Grid */
.doctor-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(7, 22, 44, 0.02);
    transition: var(--transition-smooth);
    height: 100%;
}
.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}
.doctor-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Transformations & Testimonials split */
.split-col-heading {
    font-weight: 800;
    font-size: 24px;
    color: var(--navy-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Before/After list thumbnails */
.ba-list-thumbnails {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.ba-thumb-item {
    width: 33.33%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.ba-thumb-item:hover {
    transform: scale(1.03);
}
.ba-thumb-item img {
    width: 100%;
    height: 90px;
    object-fit: cover;
}

/* Testimonial Quote layout */
.testimonial-quote-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(7, 22, 44, 0.02);
    position: relative;
}
.testimonial-quote-icon {
    font-size: 32px;
    color: var(--primary-color);
    opacity: 0.15;
    position: absolute;
    top: 20px;
    left: 20px;
}

/* Blog & CTA card mascot block */
.blog-card-custom {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(7, 22, 44, 0.02);
    transition: var(--transition-smooth);
}
.blog-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}
.blog-card-custom img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.blog-card-custom .title {
    font-weight: 700;
    font-size: 15px;
    color: var(--navy-color);
    line-height: 1.4;
    margin-bottom: 10px;
}
.blog-card-custom .desc {
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 15px;
}

/* Call Action mascot card (Need an Appointment?) */
.cta-mascot-card {
    background-color: #F3F9FC;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(23, 195, 178, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cta-mascot-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-color);
    margin-bottom: 10px;
}
.cta-mascot-desc {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
    margin-bottom: 25px;
}
.cta-mascot-img-wrap {
    text-align: right;
    margin-top: 15px;
}
.cta-mascot-img {
    height: 70px;
    object-fit: contain;
}

/* Priority CTA Banner */
.cta-priority-banner {
    background-color: var(--primary-color);
    padding: 40px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-priority-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}
.cta-priority-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 14px;
}
.cta-priority-btn {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    padding: 12px 25px;
    border-radius: var(--border-radius-custom);
    font-size: 15px;
    transition: var(--transition-smooth);
}
.cta-priority-btn:hover {
    background-color: var(--navy-color);
    color: var(--white);
}

/* Footer layout */
.footer-column-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
}
.footer-column-links li {
    margin-bottom: 10px;
}
.footer-column-links a {
    color: #9CA3AF;
    font-size: 13px;
}
.footer-column-links a:hover {
    color: var(--primary-color);
}
.footer-social-btn-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.06);
    color: #9CA3AF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    transition: var(--transition-smooth);
}
.footer-social-btn-circle:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
.footer-newsletter-wrap {
    display: flex;
    gap: 8px;
}
.footer-newsletter-input {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-custom);
    color: var(--white);
    padding: 8px 12px;
    font-size: 13px;
    width: 100%;
}
.footer-newsletter-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-custom);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.footer-newsletter-btn:hover {
    background-color: #129e90;
}

/* Responsive elements */
@media (max-width: 991px) {
    .navbar-premium .nav-link::after {
        display: none !important;
    }
    .stat-item-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .about-images-wrapper {
        height: auto;
        display: flex;
        gap: 15px;
    }
    .about-img-main, .about-img-overlay {
        position: relative;
        width: 50%;
        height: 200px;
        right: 0;
        bottom: 0;
        border: none;
    }
    .ba-list-thumbnails {
        flex-wrap: wrap;
    }
    .ba-thumb-item {
        width: 45%;
    }
}

/* Slider arrows */
.slider-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: var(--navy-color);
    transition: var(--transition-smooth);
}
.slider-arrow-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
.slider-arrow-left {
    left: 20px;
}
.slider-arrow-right {
    right: 20px;
}

/* Floating Actions & Buttons styling */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}
.float-btn:hover {
    transform: scale(1.1);
}
.float-whatsapp {
    background-color: #25D366;
}
.float-phone {
    background-color: var(--primary-color);
}
.back-to-top {
    background-color: var(--navy-color);
}
.float-whatsapp-hero {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #25D366;
    color: var(--white) !important;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    transition: var(--transition-smooth);
}
.float-whatsapp-hero:hover {
    transform: scale(1.1);
}

/* Premium Additional Styles */
.bg-gradient-premium {
    background: linear-gradient(135deg, rgba(23, 195, 178, 0.06) 0%, rgba(7, 22, 44, 0.02) 100%), var(--bg-color);
}

.section-subtitle-dashes {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.btn-premium-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #129e90 100%);
    color: var(--white) !important;
    border: none;
    padding: 12px 28px;
    border-radius: var(--border-radius-custom);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(23, 195, 178, 0.15);
}
.btn-premium-primary:hover {
    background: linear-gradient(135deg, #129e90 0%, var(--navy-color) 100%);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 195, 178, 0.25);
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(7, 22, 44, 0.03);
    box-shadow: var(--shadow-soft);
    padding: 35px 30px;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(23, 195, 178, 0.2);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}
.service-card:hover::before {
    opacity: 1;
}

.service-badge {
    display: inline-block;
    background-color: rgba(23, 195, 178, 0.08);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.8px;
    transition: var(--transition-smooth);
}
.service-card:hover .service-badge {
    background-color: var(--primary-color);
    color: var(--white);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-color: rgba(23, 195, 178, 0.06);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}
.service-card:hover .icon-box {
    background-color: var(--navy-color);
    color: var(--white);
    transform: scale(1.05) rotate(5deg);
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    border: 1px solid rgba(7, 22, 44, 0.05);
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    background-color: var(--white);
}
.faq-accordion .accordion-item:hover {
    box-shadow: var(--shadow-premium);
    border-color: rgba(23, 195, 178, 0.15);
}
.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy-color);
    padding: 20px 25px;
    background-color: var(--white);
    box-shadow: none;
    transition: var(--transition-smooth);
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(23, 195, 178, 0.02);
    border-bottom: 1px solid rgba(23, 195, 178, 0.05);
}
.faq-accordion .accordion-button::after {
    background-size: 14px;
    transition: var(--transition-smooth);
}
.faq-accordion .accordion-body {
    padding: 22px 25px;
    color: #6B7280;
    line-height: 1.6;
    font-size: 14px;
    background-color: rgba(23, 195, 178, 0.01);
}

/* Team Profile Social Overlays */
.doctor-img-box {
    position: relative;
    overflow: hidden;
}
.doctor-img-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.doctor-card:hover .doctor-img-box img {
    transform: scale(1.05);
}
.doctor-socials {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}
.doctor-card:hover .doctor-socials {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.doctor-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--navy-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
}
.doctor-social-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Gallery Before/After comparison */
.gallery-filter-btn {
    display: inline-block;
    padding: 10px 24px;
    margin: 5px;
    background-color: var(--white);
    color: var(--navy-color);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(7, 22, 44, 0.03);
    transition: var(--transition-smooth);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(23, 195, 178, 0.2);
    transform: translateY(-1px);
}

.gallery-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(7, 22, 44, 0.02);
    transition: var(--transition-smooth);
    cursor: pointer;
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}
.gallery-comparison {
    display: flex;
    overflow: hidden;
    position: relative;
}
.gallery-comparison .before,
.gallery-comparison .after {
    width: 50%;
    position: relative;
}
.gallery-comparison img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}
.gallery-item:hover .gallery-comparison img {
    transform: scale(1.03);
}

.gallery-label {
    position: absolute;
    bottom: 10px;
    background-color: rgba(7, 22, 44, 0.7);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.before .gallery-label {
    left: 10px;
}
.after .gallery-label {
    right: 10px;
}

/* Contact Details Sidebar */
.contact-info-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(7, 22, 44, 0.03);
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.contact-info-item:last-child {
    margin-bottom: 0;
}
.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(23, 195, 178, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.contact-info-item:hover .contact-info-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

/* Pagination Styles */
.pagination .page-link {
    color: var(--navy-color);
    border: 1px solid rgba(7, 22, 44, 0.05);
    background-color: var(--white);
    font-weight: 600;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}
.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(23, 195, 178, 0.25);
}
.pagination .page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white) !important;
    transform: translateY(-2px);
}
.pagination .page-item.disabled .page-link {
    color: #9CA3AF;
    background-color: #F3F4F6;
    border-color: rgba(7, 22, 44, 0.02);
    box-shadow: none;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.preloader-logo {
    height: 80px;
    width: auto;
    animation: pulseLogo 1.5s ease-in-out infinite;
}
.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(23, 195, 178, 0.1);
    border-radius: 50%;
    border-top-color: #17C3B2;
    animation: spinPreloader 1s linear infinite;
}

@keyframes spinPreloader {
    to { transform: rotate(360deg); }
}
@keyframes pulseLogo {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.preloader-fade-out {
    opacity: 0;
    visibility: hidden;
}


