/**
 * Modern Frontend Design
 * Clean, Professional & Responsive
 */

:root {
    --primary: #db417d;
    --primary-dark: #b83265;
    --primary-light: #dfa4a8;
    --secondary: #dfa4a8;
    --accent: #10b981;
    --dark: #0f172a;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Premium Luxury Enhancements */
:root {
    --luxury-gradient: linear-gradient(135deg, #db417d 0%, #dfa4a8 100%);
    --luxury-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

.modern-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.modern-section.with-bg {
    background: var(--bg-light);
}

.modern-section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.83 3.83L54.213 2.414 50.383 0h-1.415zM11.03 0l-3.83 3.83L5.787 2.414 9.617 0h1.415zM45 0l10 10L56.414 8.586 46.414 0H45zM15 0L5 10 3.586 8.586 13.586 0H15zM0 54.627l.828.83 1.415-1.415L0 51.8v2.827zM0 5.373l.828-.83L2.243 5.96 0 8.2V5.374zM0 48.97l3.83 3.83L2.414 54.213 0 50.383v-1.415zM0 11.03l3.83 3.83L2.414 5.787 0 9.617v1.415zM0 45l10 10L8.586 56.414 0 46.414V45zM0 15L10 5 8.586 3.586 0 13.586V15z" fill="%23db417d" fill-opacity="1" fill-rule="evenodd"/></svg>');
    pointer-events: none;
}

.modern-section-header {
    margin-bottom: 60px;
    text-align: center;
}

.modern-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(219, 65, 125, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(219, 65, 125, 0.2);
}

.modern-section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 20px;
    position: relative;
}

.modern-section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Rich Section Backgrounds */
.section-rich-bg {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

.section-rich-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    pointer-events: none;
}

.section-rich-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Top Header Bar */
.top-header {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-info {
    display: flex;
    gap: 20px;
}

.top-header-info a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-header-info a:hover {
    color: var(--primary);
}

.top-header-social {
    display: flex;
    gap: 15px;
}

.top-header-social a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.top-header-social a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(5deg);
    color: #FFF;
}

@media (max-width: 768px) {
    .top-header {
        display: none;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Glassmorphism */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Modern Navbar */
.modern-navbar {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.modern-navbar .container {
    padding: 16px 20px;
}

.modern-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.modern-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.nav-info-links,
.nav-social-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-info-links a,
.nav-social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-info-links a:hover,
.nav-social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.nav-info-links a.phone-link:hover {
    background: #10b981;
}

.nav-info-links a.map-link:hover {
    background: #ef4444;
}

.nav-social-links a.whatsapp-link:hover {
    background: #25d366;
}

.modern-booking-btn {
    background: var(--luxury-gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(219, 65, 125, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .nav-social-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .modern-booking-btn span {
        display: none;
    }

    .modern-booking-btn {
        padding: 10px;
        width: 40px;
        height: 40px;
        justify-content: center;
    }
}

.modern-booking-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.modern-booking-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(219, 65, 125, 0.4);
}

.modern-booking-btn:hover::after {
    left: 100%;
}

.modern-booking-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.modern-booking-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 24px rgba(219, 65, 125, 0.45);
    background: #b83265;
}

.modern-booking-btn:hover::before {
    width: 300px;
    height: 300px;
}

.modern-booking-btn i {
    font-size: 18px;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.modern-social-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.modern-social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.modern-social-icons a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(219, 65, 125, 0.3);
}

.modern-social-icons a:nth-child(1):hover {
    background: #1877f2;
    /* Facebook */
}

.modern-social-icons a:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    /* Instagram */
}

.modern-social-icons a:nth-child(3):hover {
    background: #1da1f2;
    /* Twitter */
}

.modern-social-icons a:nth-child(4):hover {
    background: #ff0000;
    /* YouTube */
}

.modern-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.modern-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.modern-logo:hover {
    color: var(--primary-dark);
    transform: scale(1.02);
}

.modern-nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.modern-nav-menu li a {
    padding: 10px 18px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modern-nav-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.modern-nav-menu li a.active {
    background: var(--primary);
    color: white;
}

.modern-cta-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.modern-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.modern-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.modern-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.modern-hero {
    background: linear-gradient(135deg, rgba(219, 65, 125, 0.05), rgba(223, 164, 168, 0.05));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), transparent);
    opacity: 0.1;
    border-radius: 0 0 0 50%;
}

.modern-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.modern-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.modern-hero-text h1 span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.modern-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.modern-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.modern-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-lg);
}

.modern-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.modern-btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow);
}

.modern-btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.modern-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modern-hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Hero Slider */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(219, 65, 125, 0.25), rgba(223, 164, 168, 0.15));
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 800px;
    padding: 40px 0;
    animation: slideInRight 1s ease;
}

.hero-slide.active .hero-slide-content {
    animation: slideInRight 1s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-slide-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-slide-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-slide-btn {
    padding: 18px 45px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    color: var(--primary);
    font-size: 18px;
    font-weight: 800;
    border-radius: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-slide-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: var(--primary);
    color: white;
    border-color: transparent;
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-slider-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    right: 30px;
}

.hero-slider-next {
    left: 30px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-slider-dot.active {
    background: white;
    transform: scale(1.3);
}

/* Features Section */
.modern-section {
    padding: 80px 0;
}

.modern-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.modern-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.modern-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.modern-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.modern-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.modern-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.modern-feature-card:hover::before {
    transform: scaleX(1);
}

.modern-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.modern-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.modern-feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Service Cards */
.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.modern-service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.modern-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.modern-service-image {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 400px;
    object-fit: contain;
    background: #f8fafc;
    display: block;
}

.modern-service-content {
    padding: 24px;
}

.modern-service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.modern-service-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.modern-service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.modern-service-link:hover {
    gap: 12px;
}

/* Booking Form */
.modern-booking-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    margin: 0 auto;
}

.modern-form-group {
    margin-bottom: 24px;
}

.modern-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.modern-form-row .modern-form-group {
    margin-bottom: 0;
}

.modern-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.modern-input,
.modern-select,
.modern-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.modern-input:focus,
.modern-select:focus,
.modern-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.modern-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Phone Carrier Info */
.phone-carrier-info {
    margin-top: 8px;
    padding: 8px 12px;
    background: #f0f9ff;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideDown 0.3s ease;
}

.phone-carrier-info i {
    color: var(--primary);
}

/* International Telephone Input Styling */
.iti {
    width: 100%;
}

.iti__flag-container {
    direction: ltr;
}

.iti__selected-flag {
    background: var(--bg-light);
    border-radius: 8px 0 0 8px;
}

/* Package Preview */
.package-preview {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 2px solid var(--primary);
    animation: slideDown 0.4s ease;
}

.package-preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--primary);
}

.package-preview-header i {
    font-size: 24px;
}

.package-preview-header h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.package-preview-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-preview-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
}

.package-preview-item i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
}

.package-preview-label {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 80px;
}

.package-preview-value {
    color: var(--text-secondary);
    flex: 1;
}

.package-preview-features {
    padding: 10px;
    background: white;
    border-radius: 8px;
}

.package-preview-features .package-preview-label {
    display: block;
    margin-bottom: 8px;
}

.package-preview-features i {
    color: var(--accent);
    font-size: 18px;
    margin-left: 8px;
}

.package-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features-list li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--text-secondary);
}

.package-features-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Form Validation Styles */
.modern-input.error,
.modern-select.error,
.modern-textarea.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.modern-input.error:focus,
.modern-select.error:focus,
.modern-textarea.error:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.modern-input.success,
.modern-select.success,
.modern-textarea.success {
    border-color: #10b981;
    background: #f0fdf4;
}

.modern-input.success:focus,
.modern-select.success:focus,
.modern-textarea.success:focus {
    border-color: #059669;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.error-message {
    display: block;
    color: #dc2626;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Doctors Slider */
.doctors-slider-wrapper {
    position: relative;
    padding: 20px 0 40px;
}

.doctors-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: transform 0.5s ease;
}

.doctor-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.doctor-card-inner {
    padding: 0;
}

.doctor-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 250px;
    max-height: 500px;
    overflow: hidden;
    background: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.doctor-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
}

.doctor-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 6px;
}

.doctor-info {
    padding: 24px;
}

.doctor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.doctor-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.doctor-specialization {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: 8px;
}

.doctor-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 14px;
}

.doctor-contact {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.doctor-contact-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.doctor-contact-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.doctor-social {
    display: flex;
    gap: 8px;
}

.doctor-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.doctor-social-btn:hover {
    transform: translateY(-3px);
}

.doctor-social-btn:hover {
    background: var(--primary);
    color: white;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 50;
    /* Increased z-index */
    pointer-events: auto;
}

.slider-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    right: -25px;
}

.slider-next {
    left: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .modern-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modern-hero-buttons {
        justify-content: center;
    }

    .modern-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 1024px) {
    .modern-nav-content {
        gap: 10px;
        position: relative;
    }

    .modern-logo img {
        height: 40px;
    }

    .modern-logo span {
        font-size: 18px;
    }

    .modern-nav-actions {
        order: 2;
        margin-right: 0;
        margin-left: auto;
    }

    .modern-hamburger {
        order: 3;
        margin-right: 0;
    }

    .modern-nav-content {
        padding: 0;
    }

    .modern-logo {
        margin-left: auto;
        /* Push logo to right (RTL: left) or keep it consistent */
        flex: 1;
        /* Allow logo to take available space */
    }

    .modern-nav-menu {
        position: fixed;
        right: 0;
        top: 0;
        flex-direction: column;
        background: white;
        width: 280px;
        height: 100vh;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
        display: flex;
        gap: 15px;
    }

    .modern-nav-menu.active {
        transform: translateX(0);
    }

    .modern-hamburger {
        display: flex;
        z-index: 1001;
    }

    .modern-hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .modern-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .modern-hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .modern-booking-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .nav-info-links a,
    .nav-social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    .doctors-slider {
        grid-template-columns: 1fr;
    }

    .slider-nav {
        display: none;
    }
}

/* Footer - Elegant Design */
.modern-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 100px 0 0;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #db417d, #dfa4a8, #db417d);
    background-size: 200% auto;
    animation: gradient-flow 3s linear infinite;
    z-index: 2;
}

.modern-section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--secondary) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

/* Doctors Grid & Cards */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.doctor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.doctor-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.doctor-image-wrapper {
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.doctor-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.doctor-card:hover .doctor-image {
    transform: translate(-50%, -50%) scale(1.05);
    /* Subtle scale to maintain quality */
}

.doctor-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
}

.doctor-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    /* RTL aware */
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.doctor-info {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
}

.doctor-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.doctor-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.doctor-specialization {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.doctor-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.doctor-contact,
.doctor-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.doctor-contact-btn,
.doctor-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.doctor-contact-btn:hover,
.doctor-social-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.footer-section {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-section {
    animation: fadeInUp 0.6s ease;
}

.footer-section h3.footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.footer-section h3.footer-title i {
    color: var(--primary);
    font-size: 1.6rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.1);
    background: var(--primary);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.5);
    border-color: transparent;
}

.social-icon.whatsapp:hover {
    background: #25d366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Unique Premium Button for Footer */
.footer-premium-btn {
    background: linear-gradient(45deg, #f59e0b, #ef4444);
    color: white !important;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
    z-index: 1;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .modern-footer {
        padding: 80px 0 0;
        margin-top: 80px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 60px 0 0;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        padding: 25px;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* Modern Booking Form */
.booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.modern-booking-form {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-form-group {
    margin-bottom: 24px;
}

.modern-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.modern-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.modern-input,
.modern-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    background: var(--bg-light);
    font-family: inherit;
}

.modern-input:focus,
.modern-select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(219, 65, 125, 0.1);
}

.modern-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Responsive Booking Form */
@media (max-width: 768px) {
    .modern-booking-form {
        padding: 25px;
    }

    .modern-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* General Tablet/Mobile Adjustments */
@media (max-width: 1024px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .modern-section {
        padding: 60px 0;
    }

    .modern-section-header {
        margin-bottom: 40px;
    }

    .modern-section-title {
        font-size: 2.2rem;
    }

    .modern-section-subtitle {
        font-size: 1rem;
    }

    /* Hero Adjustments */
    .hero-slide-title {
        font-size: 2.5rem !important;
    }

    .hero-slide-subtitle {
        font-size: 1.2rem !important;
    }

    /* Stats Grid */
    .doctor-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Navigation Adjustments for Tablet/Mobile */
    .modern-nav-content {
        padding: 15px 0;
    }
}

@media (max-width: 768px) {
    .modern-section-title {
        font-size: 2rem;
    }

    /* Hero Adjustments Mobile */
    .hero-slide-title {
        font-size: 2.2rem !important;
    }

    .hero-slide-subtitle {
        font-size: 1.1rem !important;
    }

    /* Stats Grid Mobile */
    .doctor-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .modern-section-title {
        font-size: 1.75rem;
    }

    .doctor-actions {
        flex-direction: column;
        width: 100%;
    }

    .doctor-actions .btn-modern {
        width: 100%;
        justify-content: center;
    }

    /* Fix Phone Input on Mobile */
    .iti {
        width: 100%;
    }
}

.footer-premium-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(45deg) translateY(100%);
    transition: transform 0.6s ease;
}

.footer-premium-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.4);
    filter: brightness(1.1);
}

.footer-premium-btn:hover::after {
    transform: translate(-50%, -50%) rotate(45deg) translateY(-100%);
}

.footer-premium-btn i {
    font-size: 1.3rem;
    animation: shake 2s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '←';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary);
}

.footer-links a:hover {
    color: white;
    padding-left: 25px;
    transform: translateX(-5px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-hours li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-hours li:last-child {
    border-bottom: none;
}

.footer-hours strong {
    color: white;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Reviews Section */
/* Modern Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 36px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.08);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.review-card::after {
    content: '"';
    position: absolute;
    top: -20px;
    right: 24px;
    font-size: 180px;
    color: rgba(99, 102, 241, 0.03);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 60px rgba(99, 102, 241, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
    border-color: rgba(99, 102, 241, 0.2);
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.review-avatar {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
    position: relative;
}

.review-avatar::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover .review-avatar::before {
    opacity: 1;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-rating {
    display: flex;
    gap: 5px;
    align-items: center;
}

.review-rating i {
    color: #f59e0b;
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
    transition: all 0.3s ease;
}

.review-card:hover .review-rating i.fas {
    transform: scale(1.15) rotate(8deg);
}

.review-rating i.far {
    color: #d1d5db;
}

.review-text {
    color: #475569;
    line-height: 1.9;
    margin: 0 0 24px 0;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.review-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 12px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.review-footer i {
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.3));
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #9ca3af;
}

.empty-state i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state p {
    font-size: 1.1rem;
    margin: 0;
}

/* Hero Slider */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenburns 20s ease-out infinite;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(219, 65, 125, 0.25), rgba(223, 164, 168, 0.15));
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 150px 0;
    text-align: center;
    color: white;
}

.hero-slide-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out;
}

.hero-slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-slide-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-slider-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    right: 30px;
}

.hero-slider-next {
    left: 30px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

/* Doctors Grid & Slider */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.doctors-slider-wrapper {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
    margin-top: 40px;
}

.doctors-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    width: 100%;
}

.doctors-slider .doctor-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
}

/* Reviews Slider */
.reviews-slider-wrapper {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
    margin-top: 40px;
}

.reviews-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    width: 100%;
}

.reviews-slider .review-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
}

.doctor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.doctor-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.15);
}

.doctor-card-inner {
    position: relative;
}

.doctor-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 250px;
    max-height: 500px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform;
    display: block;
}


.doctor-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    color: white;
    font-size: 5rem;
}

.doctor-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(16, 185, 129, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.doctor-info {
    padding: 25px;
}

.doctor-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.doctor-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.doctor-specialization {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.doctor-specialization i {
    color: var(--accent);
}

.doctor-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.doctor-contact {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.doctor-contact-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.doctor-contact-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.doctor-social {
    display: flex;
    gap: 10px;
}

.doctor-social-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.doctor-social-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    right: 0;
}

.slider-next {
    left: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

@keyframes kenburns {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(-10px) translateX(-10px);
    }

    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

@media (max-width: 1024px) {
    .doctors-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .doctors-slider .doctor-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }

    .reviews-slider .review-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }

    .hero-slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .modern-footer {
        padding: 60px 0 0;
        margin-top: 80px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Sliders - 1 card on mobile */
    .doctors-slider-wrapper,
    .reviews-slider-wrapper {
        padding: 0 50px;
    }

    .doctors-slider .doctor-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .reviews-slider .review-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-prev {
        right: 5px;
    }

    .slider-next {
        left: 5px;
    }

    .reviews-prev {
        right: 5px;
    }

    .reviews-next {
        left: 5px;
    }

    .hero-slider {
        height: 500px;
    }

    .hero-slide-title {
        font-size: 2.2rem;
    }

    .hero-slide-subtitle {
        font-size: 1.2rem;
    }

    .hero-slide-content {
        padding: 100px 0;
    }

    .hero-slider-nav {
        width: 40px;
        height: 40px;
    }

    .hero-slider-prev {
        right: 15px;
    }

    .hero-slider-next {
        left: 15px;
    }
}

@media (max-width: 640px) {

    /* Sliders - even smaller spacing on very small screens */
    .doctors-slider-wrapper,
    .reviews-slider-wrapper {
        padding: 0 45px;
    }

    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .slider-dots {
        bottom: -35px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    /* Adjust doctor and review cards for small screens */
    .doctor-card {
        padding: 20px;
    }

    .review-card {
        padding: 20px;
    }

    /* Hide complex elements on very small screens */
    .doctor-profile-modern::before,
    .doctor-profile-modern::after {
        opacity: 0.5;
    }
}

/* Modern Doctor Profile Section - Facebook-like Clean Design */
.doctor-profile-modern {
    padding: 100px 0;
    background: #f0f2f5;
    position: relative;
    overflow: hidden;
}

.doctor-profile-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

.doctor-profile-modern::after {
    display: none;
}

.doctor-profile-wrapper {
    position: relative;
    z-index: 1;
}

.doctor-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.doctor-card-modern::before {
    display: none;
}

.doctor-card-modern:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.doctor-card-modern:hover::before {
    display: none;
}

.doctor-imag.section-rich-bg {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    overflow: hidden;
}

.doctor-image-container {
    position: relative;
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-profile-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.doctor-card-modern:hover .doctor-profile-image {
    transform: scale(1.02);
}

.doctor-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(0, 0, 0, 0.1);
    background: #e4e6eb;
}

.doctor-verified-badge {
    display: none;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.doctor-card-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doctor-name-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e4e6eb;
}

.doctor-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #050505;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.doctor-specialty {
    font-size: 1.1rem;
    color: #65676b;
    font-weight: 500;
    display: inline-block;
    padding: 6px 12px;
    background: #f0f2f5;
    border-radius: 6px;
}

.doctor-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.stat-card {
    background: #f0f2f5;
    padding: 20px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    display: none;
}

.stat-card:hover {
    background: #e4e6eb;
    transform: translateY(-1px);
}

.stat-card:hover::before {
    display: none;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.05);
}

.stat-content {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #050505;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #65676b;
    margin-top: 2px;
    font-weight: 400;
}

.doctor-bio-section {
    margin-bottom: 24px;
}

.doctor-bio-text {
    color: #050505;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.doctor-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-modern {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    position: relative;
}

.btn-modern i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.btn-modern:hover i {
    transform: translateX(-3px);
}

.btn-primary-modern {
    background: var(--primary);
    color: white;
}

.btn-primary-modern::before {
    display: none;
}

.btn-primary-modern:hover {
    background: #0891b2;
}

.btn-primary-modern:hover::before {
    display: none;
}

.btn-outline-modern {
    background: #f0f2f5;
    color: #050505;
    border: none;
}

.btn-outline-modern:hover {
    background: #e4e6eb;
}

/* Responsive Design for Doctor Profile */
@media (max-width: 1024px) {
    .doctor-card-modern {
        grid-template-columns: 1fr;
    }

    .doctor-image-container {
        height: 400px;
    }

    .doctor-card-info {
        padding: 32px 28px;
    }

    .doctor-name {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .doctor-profile-modern {
        padding: 60px 0;
    }

    .doctor-image-container {
        height: 320px;
    }

    .doctor-card-info {
        padding: 28px 20px;
    }

    .doctor-name {
        font-size: 1.8rem;
    }

    .doctor-specialty {
        font-size: 0.95rem;
    }

    .doctor-stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .doctor-bio-text {
        font-size: 0.95rem;
    }

    .doctor-actions {
        flex-direction: column;
    }

    .btn-modern {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .doctor-verified-badge {
        width: 42px;
        height: 42px;
        font-size: 18px;
        top: 16px;
        left: 16px;
        border-width: 2px;
    }

    .doctor-name {
        font-size: 1.6rem;
    }

    .doctor-card-info {
        padding: 24px 16px;
    }

    .stat-card {
        padding: 16px 12px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Blog Posts Slider */
.blog-posts-slider-wrapper {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
    margin-top: 40px;
}

.blog-posts-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    width: 100%;
}

.blog-post-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-post-image {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 400px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8fafc;
}

.blog-post-content {
    padding: 24px;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #65676b;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-post-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #050505;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-excerpt {
    color: #65676b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-post-read-more:hover {
    gap: 12px;
}

.blog-prev {
    right: 5px;
}

.blog-next {
    left: 5px;
}

@media (max-width: 1024px) {
    .blog-post-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .blog-posts-slider-wrapper {
        padding: 0 50px;
    }

    .blog-post-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .blog-post-image {
        height: 180px;
    }

    .blog-post-content {
        padding: 20px;
    }

    .blog-post-title {
        font-size: 1.1rem;
    }
}

/* Review Card Blog Style */
.blog-style-card {
    flex: 0 0 calc(33.333% - 20px) !important;
    min-width: calc(33.333% - 20px) !important;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-style-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.review-image {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 400px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8fafc;
}

.review-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #65676b;
}

.review-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #050505;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.review-text {
    color: #65676b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
    flex: 1;
}

.review-source-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 8px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .blog-style-card {
        flex: 0 0 calc(50% - 15px) !important;
        min-width: calc(50% - 15px) !important;
    }
}

@media (max-width: 768px) {
    .blog-style-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }
}