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

:root {
    --primary-gold: #ff721a;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --accent-gold: #ff8c3a;
    --border-gold: rgba(255, 114, 26, 0.3);
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 320px;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-gold);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 900;
    letter-spacing: 3px;
    margin: 0;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.lang-toggle {
    background: linear-gradient(135deg, rgba(255, 114, 26, 0.1) 0%, rgba(255, 114, 26, 0.15) 100%);
    border: 2px solid rgba(255, 114, 26, 0.3);
    color: var(--primary-gold);
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.lang-toggle::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 114, 26, 0.3), transparent);
    transition: left 0.5s ease;
}

.lang-toggle:hover::after {
    left: 100%;
}

.lang-toggle:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-color: var(--primary-gold);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 114, 26, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 16s infinite;
}

.hero-slide:nth-child(1) {
    background-image: url('images/DSC03840.jpg');
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    background-image: url('images/DSC03887.jpg');
    animation-delay: 8s;
}

@keyframes slideShow {
    0% { opacity: 0; transform: scale(1); }
    5% { opacity: 1; }
    45% { opacity: 1; }
    50% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 0; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 114, 26, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 114, 26, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23d4af37" opacity="0.1"/></svg>');
    opacity: 0.05;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 114, 26, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-gold);
    animation: bounce 2s infinite;
    z-index: 3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--darker-bg);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-gold);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--primary-gold);
    margin: 20px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 26, 0.95) 100%);
    padding: 45px 35px;
    text-align: center;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 114, 26, 0.15), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 50px rgba(255, 114, 26, 0.3);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, var(--card-bg) 100%);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
    display: inline-block;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-title-en {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 500;
    opacity: 0.9;
    font-style: italic;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

/* Booking Section */
.booking {
    padding: 100px 0;
    background: var(--dark-bg);
}

/* Reviews Section Styling */
.elfsight-app-f6f91466-2d25-4c2f-96ea-175f3393ec79 {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px;
    border: 1px solid var(--border-gold);
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 15px;
    background: var(--dark-bg);
    border: 1px solid var(--border-gold);
    color: var(--text-light);
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(255, 114, 26, 0.2);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s;
    margin-top: 20px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 114, 26, 0.4);
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: var(--darker-bg);
}

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

.feature {
    text-align: center;
    padding: 30px;
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.3;
    font-weight: 900;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-title-en {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 15px;
}

.feature p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-section p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-gold);
    color: var(--text-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}

.footer-bottom a:hover {
    color: var(--accent-gold);
    border-bottom: 1px solid var(--primary-gold);
}

/* Responsive Design - All Devices */

/* Large Desktop (1920px and above) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
}

/* Desktop (1200px - 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
    .container {
        max-width: 1200px;
    }
}

/* Laptop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .logo-image {
        height: 100px;
    }
    
    .footer-logo-image {
        height: 80px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Landscape (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo-image {
        height: 80px;
    }
    
    .footer-logo-image {
        height: 85px;
    }
    
    .nav-links {
        gap: 15px;
        font-size: 0.85rem;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .booking-form {
        padding: 40px 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablet Portrait & Large Mobile (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo-image {
        height: 70px;
    }
    
    .footer-logo-image {
        height: 90px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--border-gold);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 15px 40px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Mobile (320px - 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .footer-logo-image {
        height: 80px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .lang-toggle {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 15px;
        border-top: 1px solid var(--border-gold);
        width: 100%;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    
    .hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .scroll-indicator {
        font-size: 1.5rem;
        bottom: 20px;
    }
    
    .services,
    .why-us,
    .booking {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .section-title::after {
        width: 60px;
        margin: 15px auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-title-en {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature {
        padding: 20px 10px;
    }
    
    .feature-number {
        font-size: 3rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
    
    .feature-title-en {
        font-size: 0.9rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-form {
        padding: 25px 15px;
    }
    
    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 15px;
        font-size: 1rem;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: 20px;
    }
    
    .footer-bottom p,
    .footer-bottom a {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .service-card,
    .feature,
    .booking-form {
        padding: 20px 10px;
    }
}

/* Privacy Policy Page Responsive */
@media (max-width: 768px) {
    .services div[style*="max-width: 900px"] {
        max-width: 100% !important;
    }
    
    .services div[style*="padding: 50px"] {
        padding: 30px 20px !important;
    }
    
    .services div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 575px) {
    .services div[style*="padding: 50px"] {
        padding: 20px 15px !important;
    }
    
    .services h2 {
        font-size: 1.5rem !important;
    }
    
    .services p,
    .services ul li {
        font-size: 0.9rem !important;
    }
}

/* Contact Page Map Responsive */
iframe {
    max-width: 100%;
    height: auto;
    min-height: 300px;
}

@media (max-width: 768px) {
    iframe {
        min-height: 250px;
    }
}

@media (max-width: 575px) {
    iframe {
        min-height: 200px;
    }
}

/* Elfsight Reviews Widget Responsive */
.elfsight-app-f6f91466-2d25-4c2f-96ea-175f3393ec79 {
    width: 100%;
    overflow-x: hidden;
}

/* Ensure all text is readable on small screens */
@media (max-width: 575px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    h4 {
        font-size: 1.1rem;
    }
    
    p, li, a {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Touch-friendly buttons and links */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .submit-button,
    .lang-toggle,
    .nav-links a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Prevent horizontal scroll on all devices */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

/* Improve performance on mobile */
@media (max-width: 768px) {
    .hero-slide {
        background-attachment: scroll;
    }
    
    .hero::before {
        animation: none;
    }
}

/* Barbers Section - Team Photos */
.service-card:hover img {
    transform: scale(1.1);
}

.service-card img {
    transition: transform 0.5s ease;
}

/* Responsive adjustments for barber photos */
@media (max-width: 768px) {
    .service-card div[style*="height: 350px"] {
        height: 300px !important;
    }
}

@media (max-width: 575px) {
    .service-card div[style*="height: 350px"] {
        height: 250px !important;
    }
    
    .service-card h3 {
        font-size: 1.5rem !important;
    }
}

/* Products Section */
.product-item {
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 114, 26, 0.3);
}

.product-item:hover img {
    transform: scale(1.1);
}

/* Responsive adjustments for products */
@media (max-width: 768px) {
    .product-item img {
        height: 250px !important;
    }
}

@media (max-width: 575px) {
    .product-item img {
        height: 200px !important;
    }
}

/* Enhanced Service Cards */
.enhanced-card {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, var(--card-bg) 50%, rgba(15, 15, 15, 0.95) 100%);
    padding: 50px 35px;
    border-radius: 15px;
}

.enhanced-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-gold) 50%, var(--primary-gold) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 15px 15px 0 0;
}

.enhanced-card:hover::after {
    opacity: 1;
}

.service-icon-large {
    font-size: 4.8rem;
    margin-bottom: 25px;
    color: var(--primary-gold);
    display: inline-block;
    transition: all 0.5s ease;
    filter: drop-shadow(0 4px 8px rgba(255, 114, 26, 0.3));
}

.enhanced-card:hover .service-icon-large {
    transform: scale(1.15) rotateY(360deg);
    color: var(--accent-gold);
    filter: drop-shadow(0 8px 16px rgba(255, 114, 26, 0.5));
}

.service-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-gold) 50%, transparent 100%);
    margin: 22px auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 114, 26, 0.4);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 114, 26, 0.2);
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 114, 26, 0.05);
}

.service-features span i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    min-width: 20px;
}

.enhanced-card:hover .service-features span {
    color: var(--text-light);
    transform: translateX(-5px);
    background: rgba(255, 114, 26, 0.12);
}

[dir="ltr"] .enhanced-card:hover .service-features span {
    transform: translateX(5px);
}

.enhanced-card h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.enhanced-card .service-title-en {
    font-size: 1.05rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.enhanced-card p {
    font-size: 1.08rem;
    line-height: 2;
    color: rgba(200, 200, 200, 0.9);
}

/* Responsive for enhanced cards */
@media (max-width: 768px) {
    .enhanced-card {
        padding: 40px 28px;
    }
    
    .service-icon-large {
        font-size: 4rem;
    }
    
    .enhanced-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .enhanced-card {
        padding: 35px 22px;
    }
    
    .service-icon-large {
        font-size: 3.5rem;
    }
    
    .enhanced-card h3 {
        font-size: 1.4rem;
    }
    
    .service-features span {
        font-size: 0.95rem;
    }
    
    .service-icon-large {
        font-size: 3.5rem;
    }
    
    .service-features {
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .enhanced-card {
        padding: 30px 20px;
    }
    
    .service-icon-large {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .enhanced-card h3 {
        font-size: 1.4rem;
    }
    
    .service-features span {
        font-size: 0.85rem;
    }
}


/* Products Slideshow */
.products-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.product-slide-img.active {
    opacity: 1;
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: #000;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 114, 26, 0.4);
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 114, 26, 0.6);
}

[dir="rtl"] .back-to-top {
    right: auto;
    left: 30px;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 2rem;
    }
    
    [dir="rtl"] .back-to-top {
        right: auto;
        left: 20px;
    }
}


/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 150px;
    height: auto;
    margin: 0 auto 30px auto;
    animation: pulse 2s ease-in-out infinite;
    display: block;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 114, 26, 0.2);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1) translateX(0); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(0.95) translateX(0); 
    }
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 85px;
        right: 20px;
        font-size: 2.4rem;
    }
    
    [dir="rtl"] .whatsapp-float {
        right: auto;
        left: 20px;
    }
}


/* Services Tabs Design */
.services-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) rgba(255, 114, 26, 0.1);
}

.tabs-nav::-webkit-scrollbar {
    height: 6px;
}

.tabs-nav::-webkit-scrollbar-track {
    background: rgba(255, 114, 26, 0.1);
    border-radius: 10px;
}

.tabs-nav::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

.tab-btn {
    flex: 1;
    min-width: 150px;
    padding: 18px 25px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, var(--card-bg) 100%);
    border: 2px solid rgba(255, 114, 26, 0.2);
    border-radius: 12px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'Tajawal', sans-serif;
}

.tab-btn i {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.tab-btn span {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.tab-btn:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 114, 26, 0.2);
}

.tab-btn:hover i {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-color: var(--primary-gold);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 114, 26, 0.4);
}

.tab-btn.active i {
    color: #000;
}

.tabs-content {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, var(--card-bg) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
    padding: 50px;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
}

.tab-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 114, 26, 0.4);
}

.tab-icon i {
    font-size: 4rem;
    color: #000;
}

.tab-info h3 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tab-info .service-title-en {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-style: italic;
    opacity: 0.9;
}

.tab-description {
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 30px;
}

.tab-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255, 114, 26, 0.08);
    border-radius: 10px;
    border-left: 3px solid var(--primary-gold);
    transition: all 0.3s ease;
}

[dir="rtl"] .feature-item {
    border-left: none;
    border-right: 3px solid var(--primary-gold);
}

.feature-item:hover {
    background: rgba(255, 114, 26, 0.15);
    transform: translateX(-5px);
}

[dir="rtl"] .feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    min-width: 20px;
}

.feature-item span {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Responsive Tabs */
@media (max-width: 991px) {
    .tab-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .tab-icon {
        margin: 0 auto;
    }
    
    .tab-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tabs-nav {
        gap: 10px;
    }
    
    .tab-btn {
        min-width: 120px;
        padding: 15px 20px;
    }
    
    .tab-btn i {
        font-size: 1.8rem;
    }
    
    .tab-btn span {
        font-size: 0.85rem;
    }
    
    .tabs-content {
        padding: 35px 25px;
    }
    
    .tab-icon {
        width: 100px;
        height: 100px;
    }
    
    .tab-icon i {
        font-size: 3.5rem;
    }
    
    .tab-info h3 {
        font-size: 1.8rem;
    }
    
    .tab-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 575px) {
    .tab-btn {
        min-width: 100px;
        padding: 12px 15px;
    }
    
    .tab-btn i {
        font-size: 1.5rem;
    }
    
    .tab-btn span {
        font-size: 0.8rem;
    }
    
    .tabs-content {
        padding: 25px 20px;
    }
    
    .tab-icon {
        width: 80px;
        height: 80px;
    }
    
    .tab-icon i {
        font-size: 3rem;
    }
    
    .tab-info h3 {
        font-size: 1.5rem;
    }
}

/* Core Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, var(--card-bg) 100%);
    border: 2px solid rgba(255, 114, 26, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.value-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 114, 26, 0.3);
}

.value-icon-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 30px;
}

.value-icon {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 114, 26, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 114, 26, 0.6);
}

.value-icon i {
    font-size: 4.5rem;
    color: #000;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon i {
    transform: scale(1.1);
}

.value-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 50px;
    height: 50px;
    background: var(--dark-bg);
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    z-index: 2;
    transition: all 0.4s ease;
    line-height: 1;
    padding-top: 5px;
}

[dir="rtl"] .value-number {
    right: auto;
    left: -5px;
}

.value-card:hover .value-number {
    transform: scale(1.15);
    background: var(--primary-gold);
    color: #000;
}

.value-card h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.value-card:hover h3 {
    transform: scale(1.05);
}

.value-card p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Values Grid */
@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .value-icon-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .value-icon {
        width: 120px;
        height: 120px;
    }
    
    .value-icon i {
        font-size: 4rem;
    }
    
    .value-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 35px 25px;
    }
    
    .value-icon-wrapper {
        width: 110px;
        height: 110px;
        margin-bottom: 25px;
    }
    
    .value-icon {
        width: 110px;
        height: 110px;
    }
    
    .value-icon i {
        font-size: 3.5rem;
    }
    
    .value-number {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        border-width: 2px;
    }
    
    .value-card h3 {
        font-size: 1.6rem;
    }
    
    .value-card p {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .value-card {
        padding: 30px 20px;
    }
    
    .value-icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .value-icon {
        width: 100px;
        height: 100px;
    }
    
    .value-icon i {
        font-size: 3rem;
    }
    
    .value-number {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .value-card h3 {
        font-size: 1.5rem;
    }
    
    .value-card p {
        font-size: 0.95rem;
    }
}


/* Barbers Cards - Matching Values Design */
.services .service-card {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, var(--card-bg) 100%) !important;
    border: 2px solid rgba(255, 114, 26, 0.2) !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    position: relative;
}

.services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

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

.services .service-card:hover {
    border-color: var(--primary-gold) !important;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 114, 26, 0.3) !important;
}

.services .service-card img {
    transition: transform 0.5s ease !important;
}

.services .service-card:hover img {
    transform: scale(1.05);
}

/* Barbers New Frame Design */
.barber-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.barber-image-frame {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, var(--card-bg) 100%);
    border: 2px solid rgba(255, 114, 26, 0.2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.barber-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.barber-card-wrapper:hover .barber-image-frame::before,
.barber-card-wrapper:hover .barber-info-frame::before {
    transform: scaleX(1);
}

.barber-card-wrapper:hover .barber-image-frame,
.barber-card-wrapper:hover .barber-info-frame {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 114, 26, 0.3);
}

.barber-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.barber-card-wrapper:hover .barber-image-frame img {
    transform: scale(1.05);
}

.barber-info-frame {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, var(--card-bg) 100%);
    border: 2px solid rgba(255, 114, 26, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.barber-info-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.barber-info-frame:hover::before {
    transform: scaleX(1);
}

.barber-info-frame:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 114, 26, 0.3);
}

.barber-info-frame h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 8px;
    font-weight: 700;
}

.barber-info-frame .barber-name-en {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 12px;
    opacity: 0.8;
}

.barber-info-frame .barber-role {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.barber-info-frame .barber-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}


/* Footer Social Media Icons */
.footer-section .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-section .social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 114, 26, 0.1);
    border: 2px solid rgba(255, 114, 26, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.4rem;
    transition: all 0.4s ease;
    text-decoration: none;
}

.footer-section .social-icon:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-color: var(--primary-gold);
    color: #000;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 114, 26, 0.4);
}

.footer-section .social-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* RTL Support for Social Icons */
[dir="rtl"] .footer-section .social-icons {
    flex-direction: row;
}

@media (max-width: 768px) {
    .footer-section .social-icons {
        justify-content: center;
    }
    
    .footer-section .social-icon {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }
}


/* Designer Signature Card */
.footer-bottom .designer-signature {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    background: linear-gradient(135deg, rgba(255, 114, 26, 0.08) 0%, rgba(255, 114, 26, 0.12) 100%);
    border: 1px solid rgba(255, 114, 26, 0.25);
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: inherit;
    vertical-align: middle;
}

.footer-bottom .designer-signature:hover {
    background: linear-gradient(135deg, rgba(255, 114, 26, 0.15) 0%, rgba(255, 114, 26, 0.2) 100%);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 114, 26, 0.2);
}

.footer-bottom .designer-signature i {
    color: var(--primary-gold);
    font-size: 0.85em;
}

.footer-bottom .designer-signature span {
    color: var(--text-gray);
}

.footer-bottom .designer-signature .designer-name {
    color: var(--primary-gold);
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom .designer-signature:hover .designer-name {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .footer-bottom .designer-signature {
        padding: 2px 6px;
        gap: 4px;
    }
    
    .footer-bottom .designer-signature i {
        font-size: 0.8em;
    }
}


/* Enhanced Hero Background for Inner Pages */
.hero[style*="60vh"] {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 50vh !important;
}

.hero[style*="60vh"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 114, 26, 0.03) 0%, transparent 50%),
        linear-gradient(-135deg, rgba(255, 114, 26, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.hero[style*="60vh"]::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(255, 114, 26, 0.02) 60px,
            rgba(255, 114, 26, 0.02) 120px
        );
    animation: heroPattern 30s linear infinite;
    z-index: 0;
}

@keyframes heroPattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.hero[style*="60vh"] .hero-overlay {
    z-index: 1;
}

.hero[style*="60vh"] .hero-content {
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 0 20px;
}

/* Decorative Elements */
.hero[style*="60vh"] .hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 114, 26, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: heroPulse 4s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* Accent Lines */
.hero[style*="60vh"] .hero-title::before,
.hero[style*="60vh"] .hero-title::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.hero[style*="60vh"] .hero-title::after {
    top: auto;
    bottom: -20px;
}

.hero[style*="60vh"] .hero-title {
    position: relative;
    padding: 30px 0;
}

@media (max-width: 768px) {
    .hero[style*="60vh"] .hero-content::before {
        width: 300px;
        height: 300px;
    }
    
    .hero[style*="60vh"] .hero-title::before,
    .hero[style*="60vh"] .hero-title::after {
        width: 60px;
    }
}


/* Privacy Policy Card */
.privacy-card {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, var(--card-bg) 100%);
    border: 2px solid rgba(255, 114, 26, 0.2);
    border-radius: 15px;
    padding: 50px;
    line-height: 2;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    z-index: 1;
}

.privacy-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 114, 26, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

[dir="rtl"] .privacy-card::after {
    right: auto;
    left: 20px;
}

.privacy-card h2 {
    position: relative;
    z-index: 1;
}

.privacy-card p,
.privacy-card ul {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .privacy-card {
        padding: 35px 25px;
    }
}

@media (max-width: 575px) {
    .privacy-card {
        padding: 25px 20px;
    }
}


/* Privacy Contact Cards - Single Row */
.privacy-card .values-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.privacy-card .value-card {
    padding: 30px 20px;
}

.privacy-card .value-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.privacy-card .value-icon {
    width: 100px;
    height: 100px;
}

.privacy-card .value-icon i {
    font-size: 3rem;
}

.privacy-card .value-number {
    width: 38px;
    height: 38px;
    font-size: 1rem;
}

.privacy-card .value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.privacy-card .value-card p {
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .privacy-card .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .privacy-card .values-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-card .value-icon-wrapper {
        width: 110px;
        height: 110px;
    }
    
    .privacy-card .value-icon {
        width: 110px;
        height: 110px;
    }
    
    .privacy-card .value-icon i {
        font-size: 3.5rem;
    }
}


/* Custom Modal/Popup for Form Submissions */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.custom-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, var(--card-bg) 100%);
    border: 2px solid rgba(255, 114, 26, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-radius: 20px 20px 0 0;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: scaleIn 0.5s ease;
}

.modal-icon.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    border: 2px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.modal-icon.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    border: 2px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
}

.modal-title {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.modal-message {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-close-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--text-dark);
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 114, 26, 0.3);
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 114, 26, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-message {
        font-size: 1rem;
    }
}
