/* 
   Modern Premium UI Overrides
   - Global Typography
   - Dynamic Colors
   - Glassmorphism & Shadows
   - Micro-animations
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --premium-primary: #1ab0ff;
    --premium-primary-hover: #0a9dec;
    --premium-dark: #1b263b; /* The dark top background color */
    --premium-bg: #f2f7fb;
    --premium-text: #4b5563;
    --premium-heading: #1f2937;
}

body {
    font-family: 'Inter', sans-serif !important;
    background-color: var(--premium-bg);
    color: var(--premium-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    color: var(--premium-heading);
}

/* Premium Navigation & Dropdowns */
.navbar-area {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.navbar-brand img, .main-responsive-menu .logo img {
    height: 46px !important;
    max-height: 46px !important;
    width: auto !important;
    display: inline-block !important;
    object-fit: contain !important;
    vertical-align: middle !important;
}

/* Modern Hover Dropdown Menu Styling */
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
    border-radius: 12px !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.12) !important;
    padding: 8px !important;
    min-width: 180px !important;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #334155 !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
    background-color: #f1f5f9 !important;
    color: #0d9488 !important;
    padding-left: 14px !important;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a::before {
    display: none !important;
}

/* Hide legacy floating Buy Now button */
.buy-now-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.nav-link {
    font-weight: 600 !important;
    color: #4b5563 !important;
    padding: 10px 15px !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--premium-primary) !important;
}

.nav-btn {
    background-color: var(--premium-primary);
    color: white !important;
    border-radius: 6px;
    padding: 8px 20px !important;
    font-weight: 600;
    transition: background 0.3s;
}

.nav-btn:hover {
    background-color: var(--premium-primary-hover);
}

/* Hero Section */
.hero-section {
    background-color: var(--premium-dark);
    padding: 80px 0;
    color: white;
}

.hero-title {
    font-size: 2.5rem;
    color: white !important;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 4px solid var(--premium-primary);
    padding-left: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 40px;
    padding-left: 24px;
}

.hero-contact-card {
    background: white;
    border-radius: 8px;
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    color: var(--premium-heading);
}

.hero-contact-icon {
    background: #e0f2fe;
    color: var(--premium-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.hero-contact-text span {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
}

.hero-contact-text a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--premium-heading);
    text-decoration: none;
}

.hero-btn {
    background-color: var(--premium-primary);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.hero-btn:hover {
    background-color: var(--premium-primary-hover);
    color: white;
}

.hero-img {
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    height: auto;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--premium-bg);
}

.section-title {
    font-size: 2rem;
    color: var(--premium-dark) !important;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800 !important;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.1rem;
    color: var(--premium-dark) !important;
    margin-bottom: 15px;
    font-weight: 700 !important;
}

.service-desc {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-btn {
    background-color: var(--premium-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.3s;
}

.service-btn:hover {
    background-color: var(--premium-primary-hover);
    color: white;
}

/* Profile Section */
.profile-section {
    padding: 80px 0;
    background-color: white;
}

.profile-img {
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.profile-title {
    font-size: 1.8rem;
    color: var(--premium-heading) !important;
    margin-bottom: 20px;
    font-weight: 800 !important;
}

.profile-desc {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.profile-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.profile-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--premium-heading);
}

.profile-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--premium-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Lower CTA Section */
.lower-cta {
    background-color: #cffafe; /* cyan-100 */
    padding: 60px 0;
}

.lower-cta-title {
    color: var(--premium-dark) !important;
    font-size: 1.8rem;
    font-weight: 800 !important;
}

.lower-cta-subtitle {
    color: var(--premium-primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

/* Animations & Micro-interactions */
@keyframes float-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(26, 176, 255, 0.3); }
    50% { box-shadow: 0 0 30px rgba(26, 176, 255, 0.7); }
}

.floating-badge {
    animation: float-slow 4s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 176, 255, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.floating-badge .badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--premium-primary), #0a9dec);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Hero Stats Counter Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.hero-stat-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.hero-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--premium-primary);
    margin-bottom: 2px;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: #d1d5db;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Timeline / Qualifications */
.timeline-container {
    position: relative;
    padding-left: 30px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background: linear-gradient(to bottom, var(--premium-primary), #0a9dec);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f4f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px -5px rgba(26, 176, 255, 0.15);
}

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 24px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--premium-primary);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--premium-primary);
}

/* Video Card Showcase */
.video-showcase-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.video-showcase-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
    opacity: 0.88;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.video-showcase-card:hover .video-showcase-thumb {
    opacity: 0.75;
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background: rgba(26, 176, 255, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(26, 176, 255, 0.8);
    transition: transform 0.3s ease;
}

.video-showcase-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
}

/* Custom Accordion FAQ */
.custom-faq-item {
    border: none !important;
    background: white;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.custom-faq-button {
    font-weight: 700 !important;
    color: var(--premium-dark) !important;
    font-size: 1rem !important;
    padding: 18px 24px !important;
    background: white !important;
    box-shadow: none !important;
}

.custom-faq-button:not(.collapsed) {
    color: var(--premium-primary) !important;
    background: #f0f9ff !important;
}

/* Quick Appointment Card */
.quick-appointment-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 176, 255, 0.15);
}

