@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-red: #C41E3A;
    --primary-dark-red: #8B0000;
    --primary-blue: #1A3A5C;
    --primary-light-blue: #2B5F8E;
    --white: #FFFFFF;
    --off-white: #F5F6FA;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #1A1A2E;
    --dark-bg: #0D1117;
    --gold: #C8A951;
    --success: #198754;
    --warning: #FFC107;
    --danger: #DC3545;
    --info: #0DCAF0;
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 45px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 65px rgba(0,0,0,0.15);
    --transition-fast: all 0.2s cubic-bezier(0.4,0,0.2,1);
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    --transition-slow: all 0.5s cubic-bezier(0.4,0,0.2,1);
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 50px;
    --radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
    color: var(--gray-800);
    overflow-x: hidden;
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 16px;
    font-weight: 400;
}

::selection {
    background: var(--primary-red);
    color: white;
}

::placeholder {
    color: var(--gray-400);
    opacity: 1;
}

a {
    transition: var(--transition-fast);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-red), #ff6b81);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark-red);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-900, #0f172a), var(--dark-bg, #1e293b));
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    animation: pulseLogo 1.8s infinite;
    margin-bottom: 15px;
}

#preloader p {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:nth-child(2) {
    right: 50px;
}

.why-hero {
    background: linear-gradient(rgba(10, 15, 35, 0.88), rgba(10, 15, 35, 0.88)), url('images/bg.webp') center/cover;
    padding: 140px 0 100px;
    color: #fff;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.12);
    padding: 12px 28px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 14px;
    backdrop-filter: blur(8px);
    color: white;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-hero h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
}

.why-hero h1 span {
    color: #CC0000;
}

.why-hero p {
    font-size: 20px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    max-height: 550px;
    border-radius: 30px;
}

.why-features {
    padding: 100px 0;
    background: #f8f9fc;
}

.section-title span {
    color: #CC0000;
    font-weight: 700;
}

.section-title h2 {
    font-size: 45px;
    margin: 15px 0;
    font-weight: 800;
}

.feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #CC0000, #ff4d4d);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 20px;
    font-size: 28px;
}

.feature-box h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    color: #666;
    line-height: 2;
}

.why-cta {
    padding: 100px 0;
    background: linear-gradient(45deg, #0f172a, #1e293b);
    color: #fff;
}

.why-cta h2 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFD700;
}

.why-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.chat-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 999;
    background: var(--primary-red, #C41E3A);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(196, 30, 58, 0.18);
    cursor: pointer;
    transition: var(--transition);
}

.chat-box {
    position: fixed;
    bottom: 210px;
    right: 90px;
    z-index: 998;
    width: 370px;
    max-height: 500px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-box.show {
    display: flex;
    animation: slideUp 0.3s ease;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header h6 {
    margin: 0;
    font-weight: 600;
}

.chat-header .fa-times {
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.chat-header .fa-times:hover {
    opacity: 1;
}

.chat-body {
    padding: 15px;
    flex: 1;
    overflow-y: auto;
    max-height: 320px;
}

.chat-message {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    max-width: 85%;
    font-size: 15px;
    line-height: 1.6;
}

.bot-message {
    background: var(--gray-50);
    border-top-right-radius: 4px;
}

.chat-footer {
    padding: 10px 15px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    gap: 10px;
    background: var(--white);
}

.chat-footer input {
    flex: 1;
    border-radius: 25px;
    border: 1px solid var(--gray-200);
    padding: 8px 15px;
    font-size: 15px;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.btn-send {
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: var(--transition-fast);
}

.btn-send:hover {
    background: var(--primary-dark-red);
    transform: scale(1.1);
}

.navbar {
    padding: 12px 0;
    transition: 0.3s ease;
    background: transparent;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    z-index: 9999;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.navbar.scrolled .nav-logo {
    border-color: var(--primary-red);
}

.brand-text {
    font-size: 22px;
    font-weight: 700;
    color: white;
    transition: 0.3s ease;
}

.navbar.scrolled .brand-text {
    color: var(--gray-900);
}

.brand-text strong {
    color: var(--primary-red);
}

.navbar .nav-link {
    position: relative;
    padding: 10px 16px !important;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--gray-800) !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-red) !important;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active-page::after {
    width: 60%;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 3px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    transition: 0.3s ease;
}

.navbar.scrolled .lang-switch {
    background: var(--gray-100);
}

.lang-switch a,
.lang-switch span {
    padding: 5px 14px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.lang-switch a {
    color: rgba(255, 255, 255, 0.75);
}

.navbar.scrolled .lang-switch a {
    color: var(--gray-700);
}

.lang-switch .lang-active {
    background: var(--primary-red);
    color: white !important;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
    padding: 6px 10px;
    border-radius: 10px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e, #1a3a5c 50%, #c41e3a);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 50px 15px;
    animation: fadeUp 1s ease;
}

.section-badge {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 22px;
    font-size: 15px;
    letter-spacing: 0.5px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.35;
    letter-spacing: -0.3px;
}

.text-gradient {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 18px rgba(196, 30, 58, 0.18);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(196, 30, 58, 0.22);
}

.page-hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-hero-subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto;
    line-height: 1.9;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.35);
}

.hero-features {
    display: flex;
    gap: 35px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
    z-index: 5;
    margin-bottom: 60px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-feature-item i {
    font-size: 24px;
    color: var(--gold);
}

.hero-wave {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.services-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #1a3a5c 50%, #c41e3a);
}

.services-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    z-index: 1;
}

.services-hero-section .hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 150px 15px 60px;
}

.services-hero-section .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    padding: 12px 28px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-hero-section .hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero-section .text-gradient {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-hero-section .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.9;
}

.services-hero-section .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.services-hero-section .hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
    z-index: 5;
}

.services-hero-section .hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.services-hero-section .hero-feature-item i {
    font-size: 20px;
    color: var(--gold);
}

.services-hero-section .hero-wave {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.stats-section {
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-dark-red));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--gray-100);
}

.stat-icon {
    font-size: 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray-600);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.4;
}

.text-primary-custom {
    color: var(--primary-red);
}

.section-subtitle {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
}

.about-section {
    padding: 80px 0;
}

.about-image-wrapper {
    position: relative;
}

.about-main-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transition: 0.3s ease;
}

.about-image-wrapper:hover .about-main-img {
    transform: scale(1.02);
}

.about-experience {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    color: white;
    padding: 25px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience span {
    font-size: 2.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-experience small {
    font-size: 14px;
    opacity: 0.8;
}

.about-shape {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-red);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.3;
    transition: 0.3s ease;
}

.about-image-wrapper:hover .about-shape {
    top: -15px;
    right: -15px;
    opacity: 0.5;
}

.about-text {
    color: var(--gray-600);
    margin-bottom: 18px;
    font-size: 1.02rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.about-feature i {
    color: var(--success);
    font-size: 18px;
}

.services-section {
    padding: 80px 0;
    background: var(--off-white);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    opacity: 0;
    border-radius: 50%;
    transform: translate(30px, 30px);
    transition: 0.3s ease;
}

.service-card:hover::after {
    opacity: 0.03;
    transform: translate(0, 0) scale(3);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05), rgba(26, 58, 92, 0.06));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 22px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-red);
    color: white;
    transform: rotate(-5deg) scale(1.1);
}

.service-card h4 {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.8;
}

.service-link {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.journey-section {
    padding: 80px 0;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 55px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-red), var(--primary-blue), var(--primary-red));
    opacity: 0.3;
}

.journey-step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary-red);
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    flex-shrink: 0;
    z-index: 1;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.journey-step:hover .step-number {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

.step-content {
    background: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    flex: 1;
    transition: var(--transition);
}

.journey-step:hover .step-content {
    box-shadow: var(--shadow-md);
}

.step-content h4 {
    font-weight: 600;
    margin-bottom: 8px;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: rotate 60s linear infinite;
}

.cta-banner h2 {
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    position: relative;
    z-index: 1;
}

.cta-banner p {
    opacity: 0.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border-right: 4px solid transparent;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-right-color: var(--primary-red);
}

.testimonial-stars {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--gold);
}

.testimonial-card p {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-100);
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
}

.testimonial-author small {
    color: var(--gray-500);
    font-size: 12px;
}

.blog-section {
    padding: 80px 0;
    background: var(--off-white);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.3s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.02);
}

.blog-content {
    padding: 22px;
}

.blog-date {
    color: var(--gray-500);
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.blog-content h4 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.blog-content p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
}

.blog-link {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.footer-section {
    position: relative;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 25px;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold), var(--primary-red));
}

.footer-section::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    bottom: -120px;
    left: -120px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
    background: white;
    padding: 3px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.footer-logo span {
    color: white;
    font-size: 22px;
    font-weight: 600;
}

.footer-logo strong {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(196, 30, 58, 0.18);
}

.footer-section h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 22px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-red);
    transform: translateX(-5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary-red);
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 50px;
    padding-top: 25px;
    font-size: 14px;
    padding: 22px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.hero-section::before,
.page-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(rgba(255, 255, 255, 0.08), transparent 70%);
    top: -200px;
    right: -150px;
    border-radius: 50%;
    animation: floatingGlow 8s ease-in-out infinite;
    z-index: 1;
}

.hero-section::after,
.page-hero::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(rgba(255, 255, 255, 0.05), transparent 70%);
    bottom: -120px;
    left: -120px;
    border-radius: 50%;
    animation: floatingGlow 10s ease-in-out infinite reverse;
    z-index: 1;
}

.footer {
    position: relative;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.footer h4,
.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 22px;
}

.footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer a:hover {
    color: white;
    padding-right: 5px;
}

.footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer .social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer .social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
}

.page-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e, #1a3a5c 50%, #c41e3a);
    padding: 140px 0 80px;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.55);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 5;
}

.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-effect {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(18);
    }
}

.service-card,
.doctor-card,
.blog-card,
.faq-item {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover,
.doctor-card:hover,
.blog-card:hover,
.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b81);
    z-index: 999999;
    transition: width 0.1s linear;
}

.service-detail-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.service-detail-image:hover .service-img-main {
    transform: scale(1.05);
}

.service-detail-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
}

.service-img-main {
    width: 100%;
    border-radius: 24px;
    transition: 0.5s ease;
}

.faq-item {
    background: white;
    border-radius: 18px;
    padding: 25px;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-img-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    box-shadow: var(--shadow-md);
}

.service-description {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
}

.treatment-steps {
    margin-top: 20px;
}

.treatment-steps h5 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.step-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border-right: 3px solid transparent;
}

.step-item:hover {
    border-right-color: var(--primary-red);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.step-dot {
    width: 35px;
    height: 35px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 15px;
}

.step-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--gray-900);
}

.step-item p {
    margin: 0;
    font-size: 15px;
    color: var(--gray-600);
}

.faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.accordion-button {
    font-weight: 600;
    font-size: 1rem;
    padding: 18px 25px;
    background: var(--white);
    color: var(--gray-900);
    box-shadow: none !important;
    border-radius: var(--radius-sm) !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-red);
    color: white;
}

.accordion-button i {
    color: var(--primary-red);
}

.accordion-button:not(.collapsed) i {
    color: white;
}

.accordion-body {
    padding: 20px 25px;
    color: var(--gray-600);
    line-height: 1.8;
}

.booking-section {
    padding: 80px 0;
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.step-indicator.active .step-circle {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 0 0 8px rgba(196, 30, 58, 0.15);
}

.step-indicator.completed .step-circle {
    background: var(--success);
    color: white;
}

.step-indicator span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
}

.step-indicator.active span {
    color: var(--primary-red);
}

.step-line {
    flex: 1;
    height: 3px;
    background: var(--gray-200);
    margin: 0 10px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.step-line.completed {
    background: var(--success);
}

.booking-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 28px;
    overflow: hidden;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.step-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.step-desc {
    color: var(--gray-600);
    margin-bottom: 25px;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-option-card {
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.service-option-card:hover {
    border-color: var(--primary-red);
}

.service-option-card.selected {
    border-color: var(--primary-red);
    background: rgba(196, 30, 58, 0.04);
}

.service-option-card .option-icon {
    font-size: 30px;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.service-option-card h5 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.service-option-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.option-check {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--gray-300);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.service-option-card.selected .option-check {
    background: var(--primary-red);
}

.doctor-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.doctor-option-card {
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.doctor-option-card:hover {
    border-color: var(--primary-red);
}

.doctor-option-card.selected {
    border-color: var(--primary-red);
    background: rgba(196, 30, 58, 0.04);
}

.doctor-option-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.doctor-info h6 {
    font-weight: 600;
    margin-bottom: 3px;
}

.doctor-info span {
    font-size: 14px;
    color: var(--gray-600);
}

.doctor-rating {
    font-size: 12px;
}

.confidential-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(196, 30, 58, 0.04);
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid var(--gray-200);
}

.confidential-check input {
    display: none;
}

.confidential-check .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-400);
    border-radius: 5px;
    flex-shrink: 0;
    transition: var(--transition);
    margin-top: 2px;
}

.confidential-check input:checked + .checkmark {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.consultation-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.consultation-card {
    cursor: pointer;
}

.consultation-card input {
    display: none;
}

.consult-card-content {
    padding: 15px;
    text-align: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.consult-card-content i {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: block;
}

.consult-card-content h6 {
    font-weight: 600;
    margin-bottom: 3px;
}

.consult-card-content span {
    font-size: 12px;
    color: var(--gray-600);
}

.consultation-card input:checked + .consult-card-content {
    border-color: var(--primary-red);
    background: rgba(196, 30, 58, 0.04);
}

.booking-summary {
    background: var(--gray-50);
    padding: 20px;
    border-radius: var(--radius-sm);
    border-right: 4px solid var(--primary-red);
}

.booking-summary h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.summary-label {
    color: var(--gray-600);
}

.summary-value {
    font-weight: 600;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.payment-card {
    cursor: pointer;
}

.payment-card input {
    display: none;
}

.payment-card-content {
    padding: 15px;
    text-align: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.payment-card-content span {
    font-weight: 600;
    font-size: 15px;
}

.payment-card.selected .payment-card-content {
    border-color: var(--primary-red);
    background: rgba(196, 30, 58, 0.04);
}

.upload-area {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.upload-area.drag-over {
    border-color: var(--primary-red);
    background: rgba(196, 30, 58, 0.04);
}

.upload-placeholder i {
    color: var(--gray-400);
    margin-bottom: 10px;
}

.upload-placeholder p {
    margin-bottom: 5px;
}

.upload-placeholder span {
    color: var(--gray-400);
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.upload-preview {
    position: relative;
}

.upload-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: var(--radius-sm);
}

.upload-preview button {
    position: absolute;
    top: 10px;
    right: 10px;
}

.agreement-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.agreement-check input {
    display: none;
}

.agreement-check .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-400);
    border-radius: 5px;
    flex-shrink: 0;
    transition: var(--transition);
}

.agreement-check input:checked + .checkmark {
    background: var(--success);
    border-color: var(--success);
}

.agreement-check a {
    color: var(--primary-red);
    font-weight: 600;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.success-animation {
    animation: scaleIn 0.5s ease;
}

.booking-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
    background: rgba(196, 30, 58, 0.08);
    padding: 10px 25px;
    border-radius: var(--radius-full);
    display: inline-block;
    letter-spacing: 2px;
}

.blog-full-section {
    padding: 80px 0;
}

.blog-toolbar {
    margin-bottom: 30px;
}

.search-box {
    position: relative;
}

.search-box input {
    border-radius: var(--radius-full);
    padding: 12px 20px 12px 50px;
    border: 2px solid var(--gray-200);
}

.search-box button {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-600);
    font-size: 18px;
}

.blog-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cat-btn {
    padding: 8px 18px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.cat-btn:hover,
.cat-btn.active {
    background: var(--primary-red);
    color: white;
}

.blog-card-full {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.blog-card-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.blog-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card-full:hover .blog-img-wrapper img {
    transform: scale(1.02);
}

.blog-category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.blog-card-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--gray-600);
}

.blog-card-content h4 {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.blog-card-content p {
    color: var(--gray-600);
    font-size: 15px;
    margin-bottom: 15px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
}

.blog-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author strong {
    font-size: 15px;
    display: block;
}

.blog-author small {
    font-size: 11px;
    color: var(--gray-600);
}

.blog-read-more {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.blog-read-more:hover {
    padding-right: 5px;
}

.blog-pagination {
    margin-top: 40px;
}

.page-link {
    color: var(--gray-600);
    border: 2px solid var(--gray-200);
    margin: 0 3px;
    border-radius: 10px !important;
    font-weight: 600;
    padding: 10px 18px;
    transition: var(--transition);
}

.page-link:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.page-item.active .page-link {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.newsletter-section {
    padding: 60px 0;
}

.newsletter-card {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    padding: 28px;
    border-radius: var(--radius);
    color: white;
}

.newsletter-card h3 {
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    border-radius: var(--radius-full);
    padding: 12px 20px;
    border: none;
}

.contact-section {
    padding: 80px 0;
}

.contact-info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-right: 3px solid transparent;
}

.contact-info-card:hover {
    border-right-color: var(--primary-red);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(196, 30, 58, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-red);
    flex-shrink: 0;
}

.contact-info-card h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-card a,
.contact-info-card span {
    display: block;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 15px;
}

.contact-info-card a:hover {
    color: var(--primary-red);
}

.emergency-banner {
    background: #FFF3CD;
    border: 2px solid #FFC107;
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.emergency-banner i {
    font-size: 30px;
    color: #FF6B00;
    flex-shrink: 0;
}

.emergency-phone {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF6B00;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
}

.contact-form-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.map-section {
    padding-bottom: 0;
}

.map-wrapper {
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    display: block;
}

.director-section {
    padding: 80px 0;
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.director-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.director-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.director-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.director-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
}

.director-content {
    padding: 28px;
}

.director-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.director-name span {
    color: var(--primary-red);
}

.director-title {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.director-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.director-stat {
    text-align: center;
    background: var(--gray-100);
    padding: 15px 20px;
    border-radius: var(--radius-sm);
}

.director-stat .stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
}

.director-stat .stat-lbl {
    font-size: 12px;
    color: var(--gray-600);
}

.director-bio {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.director-credentials {
    margin-bottom: 20px;
}

.director-credentials h6 {
    font-weight: 600;
    margin-bottom: 12px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.credentials-grid span {
    font-size: 14px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 6px;
}

.credentials-grid i {
    color: var(--success);
}

.director-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.team-filter-section {
    padding: 40px 0 0;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-600);
}

.filter-btn i {
    margin-left: 6px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.team-grid-section {
    padding: 40px 0 80px;
}

.team-item {
    transition: var(--transition);
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.team-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-card-image img {
    transform: scale(1.02);
}

.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(196, 30, 58, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-card-overlay {
    opacity: 1;
}

.team-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.team-card-body {
    padding: 20px;
    text-align: center;
}

.team-rating {
    margin-bottom: 8px;
    font-size: 15px;
}

.team-rating span {
    color: var(--gray-600);
    font-weight: 600;
}

.team-card-body h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.team-specialty {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
}

.team-bio-short {
    color: var(--gray-600);
    font-size: 15px;
    margin-bottom: 15px;
}

.team-card-actions {
    padding-top: 10px;
    border-top: 1px solid var(--gray-200);
}

.doctor-admin-card {
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.doctor-admin-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.doctor-admin-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.doctor-admin-info {
    padding: 20px;
}

.doctor-admin-info h6 {
    font-weight: 600;
}

.doctor-admin-info span {
    font-size: 14px;
    color: var(--gray-600);
}

.doctor-admin-rating {
    font-size: 14px;
    margin: 5px 0;
}

.add-new-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    border: 2px dashed var(--gray-300);
    cursor: pointer;
    background: transparent;
}

.add-new-card:hover {
    border-color: var(--primary-red);
}

.add-new-content {
    text-align: center;
    color: var(--gray-600);
}

.add-new-content i {
    color: var(--primary-red);
    margin-bottom: 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    padding: 5px;
}

.team-card,
.team-member {
    flex: 1 1 220px;
    max-width: 250px;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.team-card:hover,
.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    background-color: #f9f9f9;
}

.team-card img,
.team-member img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #e53935;
}

.team-member h3,
.team-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #CC0000;
    line-height: 1.4;
    margin: 10px 0 15px 0;
}

.team-member p,
.team-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 10px;
}

.team-member a.btn,
.team-card a.btn {
    margin-top: 10px;
    background-color: #e53935;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.team-member a.btn:hover,
.team-card a.btn:hover {
    background-color: #cc0000;
}

.team-member {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-radius: 15px;
    padding: 15px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 450px;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    background-color: #f9f9f9;
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #e53935;
}

.team-member h3 {
    font-size: 18px;
    font-weight: 700;
    color: #CC0000;
    margin: 10px 0 10px 0;
}

.team-member p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 5px;
    text-align: center;
    overflow: hidden;
}

.team-member a.btn {
    margin-top: 10px;
    background-color: #e53935;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.team-member a.btn:hover {
    background-color: #d32f2f;
}

.navbar-nav .dropdown-menu {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-width: 200px;
}

.about-card {
    background: #fff;
    color: #0f172a;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.about-card:hover,
.about-card:active {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
    background-color: #f8f8f8;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.navbar-nav .dropdown-item {
    color: #333;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.custom-dropdown-toggle {
    color: #fff;
    text-decoration: none;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.custom-dropdown-toggle:hover,
.custom-dropdown-toggle:focus {
    color: #e53935;
    text-decoration: none;
}

section {
    position: relative;
    padding: 100px 0;
}

.container {
    position: relative;
    z-index: 2;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

[class*="col-"] {
    padding-right: 12px;
    padding-left: 12px;
}

.service-card,
.blog-card,
.team-card,
.testimonial-card,
.stat-card {
    will-change: transform;
}

a,
button,
.btn {
    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

button,
input,
textarea,
select {
    outline: none;
    box-shadow: none !important;
}

textarea {
    resize: none;
}

.card,
.service-card,
.blog-card,
.team-card,
.testimonial-card,
.stat-card,
.contact-form-card,
.booking-card {
    border-radius: var(--radius);
}

.service-card,
.blog-card,
.blog-card-full,
.team-card,
.testimonial-card,
.stat-card,
.contact-info-card,
.booking-card,
.contact-form-card,
.director-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
}

.service-card:hover,
.blog-card:hover,
.blog-card-full:hover,
.team-card:hover,
.testimonial-card:hover,
.stat-card:hover,
.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.blog-img,
.team-card-image img,
.blog-img-wrapper img {
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img,
.team-card:hover .team-card-image img,
.blog-card-full:hover .blog-img-wrapper img {
    transform: scale(1.02);
}

.service-icon,
.contact-icon {
    border-radius: var(--radius-sm);
}

.service-card p,
.blog-card p,
.testimonial-card p,
.team-card p {
    line-height: 1.8;
    color: var(--gray-600);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.4;
    color: var(--gray-900);
    margin-bottom: 15px;
}

p {
    line-height: 1.8;
    margin-bottom: 15px;
}

small {
    font-size: 14px;
    line-height: 1.6;
}

.hero-subtitle,
.section-subtitle,
.about-text,
.service-card p,
.blog-card p,
.testimonial-card p {
    max-width: 100%;
}

.btn,
.btn-primary-custom,
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-custom {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    background: transparent;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

@keyframes pulseLogo {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes floatingGlow {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(20px) translateX(10px);
    }
    100% {
        transform: translateY(0px) translateX(0px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .loader-logo img {
        width: 90px;
        height: 90px;
    }
    #preloader p {
        font-size: 16px;
    }
    .why-hero {
        padding: 120px 0 70px;
        text-align: center;
    }
    .why-hero h1 {
        font-size: 38px;
    }
    .section-title h2 {
        font-size: 32px;
    }
    .why-cta h2 {
        font-size: 35px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .team-member {
        height: auto;
        padding: 10px;
    }
    .team-member img {
        width: 100px;
        height: 100px;
    }
    .about-card {
        margin-bottom: 20px;
    }
    .card-img {
        height: 180px;
    }
    .hero-section {
        min-height: auto;
        padding: 140px 0 90px;
    }
    .hero-title {
        font-size: 2rem;
        line-height: 1.5;
    }
    .page-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 991.98px) {
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    .navbar-nav .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
    }
    .navbar-nav .dropdown-item:hover {
        background-color: transparent;
        color: #333;
        transform: none;
    }
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .navbar-nav .dropdown-item:hover {
        background-color: #e53935;
        color: #fff;
        transform: translateX(5px);
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    .hero-features {
        gap: 20px;
    }
    .about-features,
    .credentials-grid,
    .doctor-options,
    .service-options,
    .consultation-types,
    .payment-methods {
        grid-template-columns: 1fr !important;
    }
    .step-navigation {
        flex-direction: column;
        gap: 10px;
    }
    .step-navigation .btn {
        width: 100%;
    }
    .director-actions {
        flex-direction: column;
    }
    .director-actions .btn {
        width: 100%;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form .btn,
    .newsletter-form input {
        width: 100%;
    }
    .stats-section .col-6 {
        width: 50%;
    }
    .navbar {
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
        padding: 10px 0;
    }
    .brand-text {
        color: var(--gray-900);
        font-size: 18px;
    }
    .navbar .nav-link {
        color: var(--gray-800) !important;
        padding: 12px !important;
        border-radius: 10px;
    }
    .navbar-collapse {
        background: white;
        margin-top: 12px;
        padding: 15px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .navbar .nav-link:hover {
        color: var(--primary-red) !important;
    }
    .navbar .nav-link.active-page {
        color: var(--primary-red) !important;
    }
    .navbar .nav-link::after {
        display: none;
    }
    .lang-switch {
        background: var(--gray-100);
        margin-top: 10px;
        justify-content: center;
    }
    .lang-switch a {
        color: var(--gray-700);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 22px;
        font-size: 15px;
    }
    .stat-card {
        padding: 20px 15px;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .testimonial-card,
    .service-card,
    .blog-card,
    .team-card {
        margin-bottom: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 768px) {
    .contact-section {
        margin-bottom: 20px !important;
        padding-bottom: 20px !important;
    }
    .stats-section {
        margin-top: 0 !important;
        padding-top: 10px !important;
    }
    .chat-box {
        bottom: 120px !important;
        right: 10px;
        width: calc(100vw - 20px);
        max-width: 350px;
        z-index: 99999;
        left: 10px;
    }
    .hero-section {
        padding-top: 100px;
    }
    .page-hero-title {
        font-size: 2rem;
    }
    .page-hero-subtitle {
        font-size: 0.95rem;
    }
    .btn-outline-custom {
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.5);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 16px;
        transition: 0.3s ease;
    }
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.5;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        max-width: 280px;
    }
    .hero-features {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    .services-hero-section .hero-title {
        font-size: 1.8rem;
    }
    .services-hero-section .hero-subtitle {
        font-size: 0.95rem;
    }
    .services-hero-section .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .services-hero-section .btn-primary-custom,
    .services-hero-section .btn-outline-custom {
        width: 100%;
        max-width: 280px;
    }
    .services-hero-section .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    .page-hero {
        min-height: 55vh;
        padding: 120px 0 60px;
    }
    .section-badge {
        font-size: 14px;
        padding: 8px 18px;
    }
    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .hero-feature-item {
        font-size: 14px;
    }
    .section-title {
        font-size: 1.8rem;
        line-height: 1.5;
    }
    .stat-number {
        font-size: 2rem;
    }
    .booking-card,
    .contact-form-card,
    .director-content {
        padding: 20px;
    }
    body {
        font-size: 15px;
    }
    p {
        line-height: 1.9;
    }
}

#preloader .loader-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader .loader-logo img {
    width: 100% !important;
    height: 100% !important;
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media only screen and (max-width: 480px) {
     .loader-logo {
        width: 100px;
        height: 100px;
    }
     .loader-logo img {
        max-width: 100px;
        max-height: 100px;
    }
}