/* ===================================
   Jordan Medical Tourism Website
   Modern CSS Styles with RTL Support
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #5eead4;
    --secondary-color: #1e3a5f;
    --secondary-light: #2d4a6f;
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --success-color: #10b981;
    --error-color: #ef4444;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --transition: all 0.3s ease;
    --font-family: 'Tajawal', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark), var(--secondary-color));
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: var(--transition);
    background: linear-gradient(135deg, rgba(15, 40, 70, 0.97), rgba(13, 148, 136, 0.85));
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    padding: 0.6rem 0;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.4));
    animation: heartbeat 1.2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.4));
    }
    14% { 
        transform: scale(1.2);
        filter: drop-shadow(0 4px 15px rgba(239, 68, 68, 0.7));
    }
    28% { 
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.4));
    }
    42% { 
        transform: scale(1.15);
        filter: drop-shadow(0 4px 12px rgba(239, 68, 68, 0.6));
    }
    56% { 
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.4));
    }
}

.navbar.scrolled .logo {
    color: var(--secondary-color);
    text-shadow: none;
}

.navbar.scrolled .logo i {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    font-size: 2rem;
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links > li > a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 1rem;
    position: relative;
    text-shadow: none;
    border-radius: var(--radius);
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links > li > a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.navbar.scrolled .nav-links > li > a {
    color: var(--text-color);
    text-shadow: none;
}

.navbar.scrolled .nav-links > li > a:hover {
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary-color);
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    width: 60%;
}

.nav-links > li > a.active {
    color: white;
    background: rgba(94, 234, 212, 0.2);
    font-weight: 600;
}

.navbar.scrolled .nav-links > li > a.active {
    color: var(--primary-color);
    background: rgba(13, 148, 136, 0.15);
}

.navbar.scrolled .nav-links a.active {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown > a i {
    font-size: 0.7rem;
    margin-right: 0.25rem;
    transition: var(--transition);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 30px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-color) !important;
    font-size: 0.9rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.dropdown-menu li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(5px);
    transition: var(--transition);
    color: var(--primary-color);
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(13, 148, 136, 0.05));
    color: var(--primary-color) !important;
    padding-right: 1.5rem;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-menu li a::after {
    display: none;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-actions .btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, #5eead4, #14b8a6);
    border: none;
    box-shadow: 0 4px 15px rgba(94, 234, 212, 0.4);
    font-weight: 600;
}

.nav-actions .btn:hover {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 234, 212, 0.5);
}

.navbar.scrolled .nav-actions .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.35);
}

.navbar.scrolled .nav-actions .btn:hover {
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.45);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: white;
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .mobile-menu-btn {
    background: rgba(13, 148, 136, 0.1);
}

.navbar.scrolled .mobile-menu-btn:hover {
    background: rgba(13, 148, 136, 0.2);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--primary-color);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-top: 0;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    filter: brightness(1.1) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.55), rgba(30, 58, 95, 0.65));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: white;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-slider .swiper-pagination {
    bottom: 40px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-light);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 5rem 0;
    margin: 0;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.25);
    letter-spacing: 0.5px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    background: var(--bg-light);
    padding: 0;
    position: relative;
    margin-top: -100px;
    z-index: 10;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--bg-light));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border-left: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:last-child {
    border-left: none;
}

.feature-card:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.25);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card:hover .feature-icon {
    background: white;
}

.feature-card:hover .feature-icon i {
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background: white;
    margin-top: 0;
    padding-top: 5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(1.05) contrast(1.02);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid white;
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(1.05) contrast(1.02);
}

.about-experience {
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience .number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.about-feature span {
    font-weight: 500;
}

/* ===================================
   Destinations Section
   =================================== */
.destinations-section {
    background: var(--bg-light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.destination-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.destination-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.destination-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.destination-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    pointer-events: none;
}

.destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(1.05) contrast(1.02) saturate(1.1);
}

.destination-card:hover .destination-img img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-content {
    padding: 1.5rem;
}

.destination-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.destination-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.destination-treatments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.treatment-tag {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===================================
   Statistics Section
   =================================== */
.stats-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    position: relative;
    padding: 4rem 0;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/dead-sea.png') center/cover;
    opacity: 0.15;
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-value {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #5eead4, white, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-icon i {
    font-size: 1.75rem;
    color: white;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 0.75rem;
}

/* ===================================
   Why Jordan Section
   =================================== */
.why-jordan-section {
    background: var(--bg-light);
}

.why-jordan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-jordan-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.why-jordan-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.why-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.why-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.why-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.why-jordan-image {
    position: relative;
}

.why-jordan-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.05) contrast(1.02);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    padding: 1.25rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.badge-text {
    font-size: 0.85rem;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    background: white;
}

.testimonials-slider {
    padding: 2rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow);
    border: 1px solid rgba(13, 148, 136, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: var(--primary-light);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-rating i {
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonials-slider .swiper-pagination {
    position: relative;
    margin-top: 1.5rem;
}

.testimonials-slider .swiper-pagination-bullet {
    background: var(--primary-color);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    padding: 6rem 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/dead-sea.png') center/cover;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-contact {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.9;
}

.cta-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background-size: cover;
    background-position: center;
    padding: 10rem 0 5rem;
    position: relative;
}

.page-header-large {
    padding: 12rem 0 6rem;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.6), rgba(30, 58, 95, 0.7));
}

.page-header-content {
    position: relative;
    text-align: center;
    color: white;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span:not(:last-child) {
    opacity: 0.6;
}

.destination-name-en,
.service-name-en {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-form-card > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
    background: rgba(13, 148, 136, 0.02);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group .error {
    display: block;
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Working Hours */
.working-hours-section {
    background: white;
    padding: 3rem 0;
}

.working-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.working-hours-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-list li:last-child {
    border-bottom: none;
}

.emergency-contact {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-icon i {
    font-size: 1.5rem;
}

.emergency-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

.emergency-info p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.emergency-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(180deg, var(--secondary-color), #0f172a);
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-color));
}

.footer-top {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-light);
}

.footer-col > p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-right: 5px;
}

.contact-info li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-info li i {
    color: var(--primary-light);
    margin-top: 4px;
}

.contact-info li span {
    opacity: 0.8;
}

.footer .social-links a {
    background: rgba(255, 255, 255, 0.1);
}

.footer .social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ===================================
   WhatsApp Float & Back to Top
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6); }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    animation: none;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-dark));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.3);
}

.back-to-top i {
    animation: bounce-up 1.5s ease-in-out infinite;
}

@keyframes bounce-up {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ===================================
   Destinations Page
   =================================== */
.intro-section {
    background: white;
    padding: 4rem 0 2rem;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.intro-content p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.destinations-page-section {
    background: white;
    padding-top: 2rem;
}

.destination-full-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.destination-full-card.reverse {
    direction: ltr;
}

.destination-full-card.reverse .destination-full-content {
    direction: rtl;
}

.destination-full-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.destination-full-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.destination-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.destination-badge i {
    color: var(--primary-color);
}

.destination-full-content .destination-name-en {
    color: var(--primary-color);
    font-weight: 600;
}

.destination-full-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.destination-full-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.destination-treatments-list h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.destination-treatments-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.destination-treatments-list ul li {
    background: var(--bg-light);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destination-treatments-list ul li i {
    font-size: 0.75rem;
}

.destination-info {
    margin-bottom: 1.5rem;
}

.destination-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.destination-info span i {
    color: var(--primary-color);
}

/* Destination Details */
.destination-details-section {
    background: white;
    padding: 4rem 0;
}

.destination-details-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.content-block {
    margin-bottom: 2.5rem;
}

.content-block h2,
.content-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.content-block p {
    color: var(--text-light);
    line-height: 1.9;
}

.destination-gallery {
    margin-bottom: 2.5rem;
}

.destination-gallery h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.treatments-block {
    margin-bottom: 2.5rem;
}

.treatments-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.treatments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.treatment-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.treatment-icon i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.treatment-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.treatment-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.facilities-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.facilities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.facility-tag {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.facility-tag i {
    color: var(--primary-color);
}

/* Sidebar Cards */
.sidebar-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.sidebar-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.info-card ul li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.info-card ul li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.booking-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.booking-card h4 {
    color: white;
}

.booking-card p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.booking-card .btn {
    margin-bottom: 0.75rem;
}

/* Related Section */
.related-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ===================================
   Services Page
   =================================== */
.services-page-section {
    background: white;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-intro h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-intro p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-full-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-full-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-full-image {
    position: relative;
    height: 200px;
}

.service-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon-overlay {
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.service-icon-overlay i {
    font-size: 1.5rem;
    color: white;
}

.service-full-content {
    padding: 2.5rem 1.5rem 1.5rem;
}

.service-full-content .service-name-en {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
}

.service-full-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.service-full-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Service Details */
.service-details-section {
    background: white;
    padding: 4rem 0;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.procedures-block {
    margin-bottom: 2.5rem;
}

.procedures-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.procedures-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.procedures-list li:last-child {
    border-bottom: none;
}

.procedures-list li i {
    color: var(--primary-color);
}

.advantages-block {
    margin-bottom: 2.5rem;
}

.advantages-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.advantage-item i {
    color: var(--accent-color);
}

.price-card {
    text-align: center;
}

.price-range {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
}

.price-range .price {
    font-size: 1.25rem;
    font-weight: 700;
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.help-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Process Section */
.process-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow);
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===================================
   Hospitals Page
   =================================== */
.jci-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2.5rem 0;
    margin-top: -2rem;
}

.jci-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
}

.jci-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jci-logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.jci-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.jci-text p {
    opacity: 0.95;
}

.hospitals-section {
    background: white;
}

.hospitals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hospital-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hospital-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.hospital-image {
    position: relative;
    height: 200px;
}

.hospital-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.05) contrast(1.02);
    transition: var(--transition);
}

.hospital-card:hover .hospital-image img {
    transform: scale(1.05);
}

.hospital-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.hospital-content {
    padding: 1.5rem;
}

.hospital-name-en {
    display: block;
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.hospital-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.hospital-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.hospital-specialties h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.specialties-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.specialty-tag {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.hospital-stats-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.hospital-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.hospital-stat {
    text-align: center;
}

.hospital-stat .stat-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.hospital-stat .stat-icon i {
    font-size: 1.75rem;
    color: white;
}

.hospital-stat .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.hospital-stat .stat-label {
    color: var(--text-light);
}

.hospital-features-section {
    background: white;
}

.hospital-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.hospital-feature {
    text-align: center;
    padding: 2rem;
}

.hospital-feature .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.hospital-feature .feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.hospital-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.hospital-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   Packages Page
   =================================== */
.packages-section {
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.package-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.package-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.package-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.package-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.package-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.package-price {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.package-price .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.package-includes h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.package-includes ul {
    margin-bottom: 2rem;
}

.package-includes ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-light);
}

.package-includes ul li i {
    color: var(--success-color);
}

.custom-package-section {
    background: var(--bg-light);
}

.custom-package-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.custom-package-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.custom-package-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.custom-package-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.included-section {
    background: white;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.included-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.included-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.included-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.included-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.375rem;
}

.included-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===================================
   FAQ Page
   =================================== */
.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(13, 148, 136, 0.05);
}

.faq-item.active .faq-question {
    background: var(--primary-color);
    color: white;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: white;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

.faq-sidebar .sidebar-card {
    background: var(--bg-light);
}

.whatsapp-card {
    background: linear-gradient(135deg, #128C7E, #25D366) !important;
    color: white;
}

.whatsapp-card h4,
.whatsapp-card p {
    color: white;
}

/* ===================================
   About Page
   =================================== */
.about-page-section {
    background: white;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-page-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-page-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mission-box,
.vision-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.mission-box h4,
.vision-box h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.mission-box h4 i,
.vision-box h4 i {
    color: var(--primary-color);
}

.mission-box p,
.vision-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-img-grid img {
    border-radius: var(--radius-lg);
    height: 300px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-img-grid .img-1 {
    grid-row: span 2;
    height: 100%;
}

/* Values Section */
.values-section {
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.value-icon i {
    font-size: 1.75rem;
    color: white;
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
}

.team-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.team-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1rem 1rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
}

.team-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.team-info span {
    color: var(--primary-color);
    font-weight: 500;
}

/* Accreditation Section */
.accreditation-section {
    background: var(--bg-light);
}

.accreditation-content {
    max-width: 700px;
    margin: 0 auto;
}

.jci-badge {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow);
}

.jci-badge img {
    width: 120px;
    height: auto;
}

.jci-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.jci-info p {
    color: var(--text-light);
}

/* Why Choose Section */
.why-choose-section {
    background: var(--bg-light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-choose-item {
    text-align: center;
    padding: 1.5rem;
}

.why-choose-item .why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.why-choose-item .why-icon i {
    font-size: 1.5rem;
    color: white;
}

.why-choose-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.375rem;
}

.why-choose-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .services-grid,
    .services-full-grid,
    .hospitals-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hospital-stats-grid,
    .hospital-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .included-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, var(--secondary-color), var(--secondary-light));
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.5rem 2rem;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        overflow-y: auto;
        z-index: 1001;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        color: white !important;
        padding: 0.875rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        font-size: 1rem;
        text-shadow: none !important;
    }
    
    .nav-links a:hover {
        color: var(--primary-light) !important;
        padding-right: 0.5rem;
    }
    
    .nav-links a.active {
        color: var(--primary-light) !important;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-right: 1rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: var(--radius);
        margin: 0.5rem 0;
    }
    
    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1002;
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    /* Mobile menu overlay */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    
    .nav-links.active::before {
        opacity: 1;
        pointer-events: auto;
    }
    
    .about-grid,
    .about-page-grid,
    .why-jordan-grid,
    .custom-package-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .destination-details-grid,
    .service-details-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-full-card,
    .destination-full-card.reverse {
        grid-template-columns: 1fr;
        direction: rtl;
    }
    
    .destination-full-card.reverse .destination-full-content {
        direction: rtl;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        flex: 0 0 calc(33.333% - 1.5rem);
    }
    
    .working-hours-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-header h2,
    .about-content h2,
    .about-page-content h2,
    .why-jordan-content h2,
    .cta-content h2 {
        font-size: 1.75rem;
        line-height: 1.4;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .features-section {
        margin-top: -60px;
    }
    
    .features-grid,
    .destinations-grid,
    .services-grid,
    .services-full-grid,
    .hospitals-grid,
    .packages-grid,
    .values-grid,
    .why-choose-grid,
    .stats-grid,
    .hospital-stats-grid,
    .hospital-features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature-card {
        border-left: none;
        border-bottom: 1px solid var(--border-color);
        padding: 1.5rem 1rem;
    }
    
    .feature-card:last-child {
        border-bottom: none;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .destination-card {
        margin: 0 0.5rem;
    }
    
    .destination-img {
        height: 220px;
    }
    
    .destination-content {
        padding: 1.25rem;
    }
    
    .destination-content h3 {
        font-size: 1.15rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .about-images {
        order: -1;
    }
    
    .about-img-main img {
        height: 300px;
    }
    
    .about-img-secondary {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }
    
    .about-img-secondary img {
        height: 180px;
    }
    
    .about-experience {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: auto;
        padding: 1rem;
    }
    
    .about-experience .number {
        font-size: 2rem;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
    }
    
    .about-features,
    .why-jordan-items,
    .about-mission-vision {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem 0;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .why-jordan-image {
        order: -1;
    }
    
    .image-badge {
        bottom: -15px;
        right: 15px;
        padding: 0.75rem 1.25rem;
    }
    
    .badge-number {
        font-size: 1.75rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .cta-contact {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer .social-links {
        justify-content: center;
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-form-card h3 {
        font-size: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .treatments-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .team-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-grid img,
    .about-img-grid .img-1 {
        height: 200px;
    }
    
    .jci-content {
        flex-direction: column;
        text-align: center;
    }
    
    .jci-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hospital-card {
        margin: 0;
    }
    
    .hospital-image {
        height: 180px;
    }
    
    .hospital-content {
        padding: 1.25rem;
    }
    
    .hospital-content h3 {
        font-size: 1.15rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .package-header h3 {
        font-size: 1.1rem;
    }
    
    .package-price .price {
        font-size: 1.5rem;
    }
    
    .page-header {
        padding: 7rem 0 3rem;
    }
    
    .page-header-content h1 {
        font-size: 1.75rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 1.65rem;
        padding: 0 0.5rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .feature-card {
        padding: 1.25rem 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .destination-img {
        height: 200px;
    }
    
    .destination-content {
        padding: 1rem;
    }
    
    .destination-content h3 {
        font-size: 1.1rem;
    }
    
    .destination-content p {
        font-size: 0.85rem;
    }
    
    .treatment-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.25rem;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .about-img-main img {
        height: 250px;
    }
    
    .about-experience {
        padding: 0.75rem;
    }
    
    .about-experience .number {
        font-size: 1.75rem;
    }
    
    .about-experience .text {
        font-size: 0.75rem;
    }
    
    .why-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .why-icon {
        margin: 0 auto;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .page-header {
        padding: 6rem 0 2.5rem;
    }
    
    .page-header-content h1 {
        font-size: 1.5rem;
    }
    
    .page-header-content p {
        font-size: 0.9rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .contact-info h2 {
        font-size: 1.35rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-form-card {
        padding: 1.25rem;
    }
    
    .contact-form-card h3 {
        font-size: 1.15rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .footer-top {
        padding: 2.5rem 0;
    }
    
    .footer-logo {
        font-size: 1.25rem;
    }
    
    .footer-col > p {
        font-size: 0.9rem;
    }
    
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-col ul li {
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 80px;
        left: 15px;
    }
    
    .back-to-top {
        width: 42px;
        height: 42px;
        left: 15px;
        font-size: 1rem;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .hospital-image {
        height: 160px;
    }
    
    .hospital-content h3 {
        font-size: 1.05rem;
    }
    
    .specialty-tag {
        font-size: 0.7rem;
    }
    
    .image-badge {
        padding: 0.6rem 1rem;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 60px;
    }
    
    .scroll-indicator span {
        font-size: 0.75rem;
    }
}
