* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* إزالة كل الـ blue effects من اللينكات والأزرار */

/* إزالة الـ outline */
*:focus {
    outline: none !important;
}

/* إزالة الـ blue highlight من اللينكات */
a {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    text-decoration: none !important;
}

a:focus,
a:active,
a:hover,
a:visited {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* إزالة الـ blue effect من الأزرار */
button {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

button:focus,
button:active,
button:hover {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* إزالة الـ blue selection من الموبايل */
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* منع أي box-shadow أزرق */
*:focus,
*:active {
    box-shadow: none !important;
}


:root {
    --gold: #D4AF37;
    --gold-light: #E6C158;
    --gold-dark: #B8941F;
    --black: #000000;
    --black-transparent: rgba(0, 0, 0, 0.85);
    --white: #FFFFFF;
    --gray-dark: #1A1A1A;
    --gray-light: #F5F5F5;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    background-color: var(--black);
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

body.fade-transition {
    opacity: 0.5;
}

body[dir="rtl"] {
    font-family: 'Tajawal', 'Inter', sans-serif;
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar {
    background-color: transparent;
    padding: 1.5rem 0;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    background-color: var(--black-transparent);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo Fix */
.logo {
    flex: 0 0 auto;
    z-index: 1100;
}

.logo-link {
    display: block;
    text-decoration: none;
    height: 48px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100%;
    width: auto;
    transition: var(--transition);
    max-width: 180px;
    object-fit: contain;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.logo-img:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Navigation Links */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    opacity: 0.9;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
    opacity: 1;
}

.nav-link:hover::after {
    width: 100%;
}

/* Right Side Elements */
.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 1100;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-family: inherit;
}

.language-toggle:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.language-icon {
    width: 18px;
    height: 18px;
}

.current-lang {
    font-weight: 500;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    min-width: 140px;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow);
}

body[dir="rtl"] .language-dropdown {
    right: auto;
    left: 0;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--white);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.95rem;
}

body[dir="rtl"] .lang-option {
    text-align: right;
}

.lang-option:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.lang-option.active {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    font-weight: 500;
}

/* CTA Button */
.nav-cta, .mobile-cta, .hero-cta {
    background-color: var(--gold);
    color: var(--black);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
}

.nav-cta:hover, .mobile-cta:hover, .hero-cta:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
    background-color: var(--gold);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
    background-color: var(--gold);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--black-transparent);
    backdrop-filter: blur(10px);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.mobile-nav-link {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 500;
    padding: 1rem 0;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-link:hover {
    color: var(--gold);
    transform: translateX(10px);
}

body[dir="rtl"] .mobile-nav-link:hover {
    transform: translateX(-10px);
}

/* Mobile Language Switcher */
.mobile-language-switcher {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.mobile-lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.mobile-lang-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.mobile-lang-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.mobile-cta-container {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.mobile-cta {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-image: url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    width: 100%;
}

.hero-title {
    font-family: 'Tajawal', 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    animation: fadeUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 1s ease-out 0.2s both;
}

.hero-cta {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    animation: fadeUp 1s ease-out 0.4s both;
    margin: 0 auto;
    display: inline-flex;
}

/* Trust Section */
.trust-section {
    padding: 6rem 2rem;
    background-color: var(--black);
    position: relative;
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
}

.trust-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
}

.trust-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.trust-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.trust-card {
    background-color: var(--gray-dark);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.trust-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.trust-card-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background-color: var(--gray-dark);
    position: relative;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.about-content {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
        border-color: var(--gold);

}

.about-content:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

body[dir="rtl"] .about-text {
    text-align: right;
}

/* Doctors Section - UPDATED */
.doctors-section {
    padding: 6rem 2rem;
    background-color: var(--black);
    position: relative;
}

.doctors-container {
    max-width: 1200px;
    margin: 0 auto;
}

.doctors-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--white);
    position: relative;
    font-family: 'Tajawal', 'Inter', sans-serif;
}

.doctors-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--gold);
    border-radius: 2px;
}

/* Doctors Grid */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

/* Doctor Cards */
.doctor-card {
    background-color: var(--gray-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.doctor-image-wrapper {
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius);
    background-color: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.doctor-card:hover .doctor-image {
    transform: scale(1.05);
}

.doctor-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.doctor-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gold);
    font-family: 'Tajawal', 'Inter', sans-serif;
    text-align: left;
}

body[dir="rtl"] .doctor-name {
    text-align: right;
}

.doctor-qualification {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
}

body[dir="rtl"] .doctor-qualification {
    text-align: right;
}

.doctor-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    text-align: left;
    flex: 1;
}

body[dir="rtl"] .doctor-description {
    text-align: right;
}

/* Services Section */
.services-section {
    padding: 6rem 2rem;
    background-color: var(--gray-dark);
    position: relative;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--black);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
}

.service-svg {
    width: 66px;
    height: 66px;
    color: var(--gold);
}

.service-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-name {
    color: var(--gold);
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Smile Transformations Section */
.transformations-section {
    padding: 6rem 2rem;
    background-color: var(--black);
    position: relative;
}

.transformations-container {
    max-width: 1280px;
    margin: 0 auto;
}

.transformations-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
}

.transformations-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.transformations-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.transformation-card {
    background-color: var(--gray-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.transformation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.transformation-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
    background-color: var(--black);
}

.transformation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.transformation-card:hover .transformation-image {
    transform: scale(1.05);
}

.transformation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.transformation-card:hover .transformation-overlay {
    opacity: 1;
    transform: translateY(0);
}

.case-label {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-description {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background-color: var(--gray-dark);
    position: relative;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
}

.testimonials-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--black);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-name {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background-color: var(--black);
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion {
    width: 100%;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--gray-dark);
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--gold);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: inherit;
}

body[dir="rtl"] .faq-question {
    text-align: right;
}

.faq-question:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.faq-question-text {
    flex: 1;
    margin-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
    color: var(--gold);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Footer Section */
.footer-section {
    padding: 6rem 2rem 3rem;
    background-color: var(--gray-dark);
    position: relative;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-content {
    width: 100%;
}

.footer-trust {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-trust-text {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;

    /* Subtle gold shine on text only */
    text-shadow:
        0 1px 2px rgba(255, 196, 0, 0.978),
        0 0 6px rgb(255, 196, 0);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

body[dir="rtl"] .footer-heading::after {
    left: auto;
    right: 0;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

body[dir="rtl"] .footer-nav a:hover {
    transform: translateX(-5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-item span:first-child {
    color: var(--gold);
    font-weight: 500;
    margin-right: 0.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.social-item:hover {
    transform: translateX(5px);
}

body[dir="rtl"] .social-item:hover {
    transform: translateX(-5px);
}

.social-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    transition: var(--transition);
}

.social-item:hover .social-icon {
    color: var(--gold-light);
    transform: scale(1.1);
}

.social-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition);
}

.social-item:hover .social-name {
    color: var(--gold);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - UPDATED */

/* Large screens (≥1100px) - Show everything, hide hamburger */
@media (min-width: 1100px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-center {
        display: flex !important;
    }
    
    .language-switcher,
    .nav-cta {
        display: block !important;
    }
}

/* Medium screens (769px - 1099px) - Hide navigation and buttons, show hamburger */
@media (max-width: 1099px) and (min-width: 769px) {
    .nav-center {
        display: none;
    }
    
    .language-switcher,
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
}

/* Small screens (≤768px) - Hide navigation and buttons, show hamburger */
@media (max-width: 768px) {
    .nav-center {
        display: none;
    }
    
    .language-switcher,
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
}

/* Common responsive styles for all screen sizes */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .trust-title, .about-title, .doctors-title, .services-title, .transformations-title,
    .testimonials-title, .faq-title {
        font-size: 2.5rem;
    }
    
    .trust-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-grid, .transformations-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .trust-section, .about-section, .doctors-section, .services-section,
    .transformations-section, .testimonials-section, .faq-section, .footer-section {
        padding: 4rem 1.5rem;
    }
    
    .trust-title, .about-title, .doctors-title, .services-title,
    .transformations-title, .testimonials-title, .faq-title {
        font-size: 2.2rem;
    }
    
    .trust-subtitle, .services-subtitle, .transformations-subtitle,
    .testimonials-subtitle, .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-cards, .doctors-grid, .services-grid, .transformations-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .doctor-image-wrapper {
        height: 250px;
    }
    
    .doctor-name {
        font-size: 1.6rem;
    }
    
    .doctor-qualification {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.open .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-trust {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
    
    .footer-trust-text {
        font-size: 1.3rem;
    }
    
    .mobile-nav-link {
        font-size: 1.5rem;
        padding: 0.75rem 0;
    }
    
    .mobile-cta {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* تصميم زر اللغة في القائمة المتنقلة */
.mobile-language-container {
    display: block;
    text-align: center;
    margin: 2rem 0;
    width: 100%;
}

.mobile-language-container .language-switcher {
    position: relative;
    display: inline-block;
}

.mobile-language-container .language-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-family: inherit;
    min-width: 140px;
    justify-content: center;
}

.mobile-language-container .language-toggle:hover {
    background-color: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.mobile-language-container .language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow);
}

.mobile-language-container .language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-language-container .lang-option {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--white);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.95rem;
}

.mobile-language-container .lang-option:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.mobile-language-container .lang-option.active {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    font-weight: 500;
}

/* إخفاء زر اللغة في النافبار العلوي عند الشاشات الصغيرة */
@media (max-width: 1100px) {
    .nav-right .language-switcher:not(.mobile) {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-img {
        max-height: 40px;
    }
    
    .language-toggle {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .trust-card, .about-content, .service-card, .transformation-card,
    .testimonial-card, .doctor-card {
        padding: 1.5rem;
    }
    
    .trust-card-icon, .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
    }
    
    .icon-svg, .service-svg {
        width: 28px;
        height: 28px;
    }
    
    .trust-card-title, .service-name, .testimonial-name {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .trust-card-text, .service-description, .about-text, .doctor-description,
    .case-description, .testimonial-text, .faq-answer p, .contact-item {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .doctor-name, .doctor-qualification {
        text-align: center;
    }
    
    .transformation-image-wrapper {
        height: 250px;
    }
    
    .testimonial-stars {
        font-size: 1.3rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.open .faq-answer {
        padding: 0 1.25rem 1rem;
    }
    
    .footer-section {
        padding: 4rem 1rem 2rem;
    }
    
    .footer-trust-text {
        font-size: 1.1rem;
    }
    
    .footer-heading {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    body[dir="rtl"] .footer-heading::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .footer-nav, .contact-info, .social-links {
        text-align: center;
    }
    
    .social-item {
        justify-content: center;
    }
}

/* Bilingual Support */
body[dir="rtl"] .trust-card-text,
body[dir="rtl"] .service-description,
body[dir="rtl"] .case-description,
body[dir="rtl"] .about-text,
body[dir="rtl"] .doctor-description,
body[dir="rtl"] .testimonial-text,
body[dir="rtl"] .faq-answer p,
body[dir="rtl"] .contact-item,
body[dir="rtl"] .social-name,
body[dir="rtl"] .footer-nav a {
    text-align: right;
}

body[dir="rtl"] .trust-card-title,
body[dir="rtl"] .service-name,
body[dir="rtl"] .doctor-name,
body[dir="rtl"] .doctor-qualification,
body[dir="rtl"] .testimonial-name,
body[dir="rtl"] .faq-question,
body[dir="rtl"] .footer-heading {
    text-align: right;
}

body[dir="rtl"] .service-icon,
body[dir="rtl"] .trust-card-icon {
    margin-right: auto;
    margin-left: 0;
}

@media (max-width: 768px) {
    body[dir="rtl"] .trust-card-title,
    body[dir="rtl"] .service-name,
    body[dir="rtl"] .trust-card-text,
    body[dir="rtl"] .service-description,
    body[dir="rtl"] .about-text,
    body[dir="rtl"] .doctor-description,
    body[dir="rtl"] .testimonial-text,
    body[dir="rtl"] .testimonial-name,
    body[dir="rtl"] .faq-answer p,
    body[dir="rtl"] .contact-item,
    body[dir="rtl"] .social-name,
    body[dir="rtl"] .footer-nav a,
    body[dir="rtl"] .footer-heading {
        text-align: center;
    }
    
    body[dir="rtl"] .faq-question {
        text-align: right;
    }
    
    body[dir="rtl"] .service-icon,
    body[dir="rtl"] .trust-card-icon {
        margin-right: auto;
        margin-left: auto;
    }
}