/* La Densitaé - Custom Styles */

:root {
    --primary-color: #0b5cb1;
    --secondary-color: #1e3a5f;
    --accent-color: #2563eb;
    --text-dark: #111827;
    --text-muted: #6b7280;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

/* Use Playfair only for special display headings */
.display-heading {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo-img {
    max-height: 50px;
}

.divider-tag {
    font-size: 12px;
    color: var(--text-muted);
    border-left: 2px solid #e5e7eb;
    padding-left: 12px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.btn-cta {
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* Mega Menu */
.mega-menu-column-header {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    padding: 10px 15px;
    display: block;
}

.mega-menu-list li {
    padding: 5px 15px;
}

.mega-menu-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.mega-menu-list a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-carousel .hero-slide {
    height: 600px;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.service-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Cards */
.service-card, .doctor-card, .testimonial-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
    overflow: hidden;
}

.service-card:hover, .doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.call-btn {
    background: var(--primary-color);
}

.whatsapp-btn {
    background: #25d366;
}

/* Statistics */
.stat-item {
    padding: 15px;
}

.stats-strip {
    position: relative;
}

/* Forms */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 92, 177, 0.1);
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: rgba(11, 92, 177, 0.05);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(11, 92, 177, 0.1);
}

/* Owl Carousel */
.owl-nav button {
    width: 40px;
    height: 40px;
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 50% !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav .owl-prev {
    left: -20px;
}

.owl-nav .owl-next {
    right: -20px;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot span {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
}

.owl-dot.active span {
    background: var(--primary-color);
}

/* Footer */
.footer-section a {
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--primary-color) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-carousel .hero-slide {
        height: 450px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Content Styles */
.content-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section h2, .content-section h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section ul {
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}
