/* ===================================
   INLINE BEAUTY - LUXURY STYLESHEET
   Premium Design for Gulf Market
   =================================== */

/* ===================================
   ROOT VARIABLES
   =================================== */
:root {
    /* Rose Gold Color Palette */
    --primary-gold: #c9986a;
    --secondary-gold: #d4a574;
    --light-gold: #f4d9b8;
    --pearl-white: #fdfbf7;
    --soft-blush: #f8e8e5;
    --cream: #faf6f0;
    
    /* Neutral Colors */
    --dark-text: #2d2d2d;
    --gray-text: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #c9986a 0%, #f4d9b8 100%);
    --shimmer-gradient: linear-gradient(90deg, rgba(201, 152, 106, 0.1), rgba(244, 217, 184, 0.3), rgba(201, 152, 106, 0.1));
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(201, 152, 106, 0.1);
    --shadow-md: 0 4px 16px rgba(201, 152, 106, 0.15);
    --shadow-lg: 0 8px 24px rgba(201, 152, 106, 0.2);
    --shadow-xl: 0 12px 32px rgba(201, 152, 106, 0.25);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-arabic: 'Cairo', 'Almarai', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-round: 50%;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--pearl-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Enhanced Arabic Typography */
[lang="ar"] {
    font-family: var(--font-arabic);
    direction: rtl;
}

[lang="ar"] h1, 
[lang="ar"] h2, 
[lang="ar"] h3, 
[lang="ar"] h4 {
    font-family: 'Cairo', 'Almarai', sans-serif;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

[lang="ar"] p, 
[lang="ar"] li, 
[lang="ar"] span,
[lang="ar"] a {
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    line-height: 2.0;
    letter-spacing: 0.01em;
    font-size: 1.05em;
}

[lang="ar"] button, 
[lang="ar"] .btn {
    font-family: 'Almarai', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Make Arabic headings larger for better readability */
[lang="ar"] .hero-title {
    font-size: 3.2rem;
}

[lang="ar"] h2 {
    font-size: 2.6rem;
}

[lang="ar"] h3 {
    font-size: 1.9rem;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition-fast);
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-btn,
.social-icon {
    background: none;
    border: none;
    color: var(--dark-text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-btn:hover,
.social-icon:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.lang-switch {
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.lang-switch:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Search Box */
.search-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.search-box.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-box input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid var(--light-gold);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.search-close {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-text);
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-close:hover {
    color: var(--primary-gold);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(253, 251, 247, 0.9) 0%, rgba(248, 232, 229, 0.85) 100%),
        url('https://sspark.genspark.ai/cfimages?u1=jDsr2Y85B22M12YwNP9K%2FiFzDgJJ9PoaDwzYuhm1BVDkL1WCKywTWoPcXamwGIPspen%2BjytS%2BbSrODKH8pPkkbwfyhSHKISgU8FChgkQ0gz7YxTeYrWZpEhYCee%2Fv%2B9%2FXT3PzGhx7%2FsHNKQCADCygvpCOG23%2BKP%2F0m3ucmxsknyCdN%2BsUA7HyDmNdCtTj%2Fwf1ZUTq2EGHASgrrz2YUJj4TmRXdWHVbVTVWvPO2Cq8j3Qm0Si9zM%3D&u2=xq9ODotF6ENhtA8J&width=2560');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.hero-circle {
    width: 220px;
    height: 220px;
    margin: 0 auto 2rem;
    border-radius: var(--radius-round);
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--shimmer-gradient);
    animation: shimmer 3s linear infinite;
}

.circle-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
    line-height: 1.3;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ===================================
   CONTAINERS & SECTIONS
   =================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.about-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid var(--light-gold);
}

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

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gold-gradient);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.about-card h3 {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--dark-text);
}

/* ===================================
   SERVICES CAROUSEL
   =================================== */
.services {
    background: var(--white);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

.carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-gold);
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
    color: var(--dark-text);
    background: var(--pearl-white);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* ===================================
   MODALS
   =================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    animation: modalFadeIn 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--light-gray);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--dark-text);
}

.modal-close:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.modal-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray-text);
    font-style: italic;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--dark-text);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--pearl-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--light-gold);
    transition: var(--transition-fast);
}

.service-item:hover {
    background: var(--light-gold);
    transform: translateX(5px);
}

.service-name {
    font-weight: 600;
    color: var(--dark-text);
}

.service-price {
    color: var(--primary-gold);
    font-weight: 700;
}

.service-note {
    font-style: italic;
    color: var(--gray-text);
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--soft-blush);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-gold);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ===================================
   TRAINING SECTION
   =================================== */
.training {
    background: var(--cream);
}

.training-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.training-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-text);
}

.training-content {
    max-width: 1000px;
    margin: 0 auto 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.training-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin: 2rem 0 1rem;
}

.training-content ul {
    list-style: none;
    padding: 0;
}

.training-content li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    line-height: 1.8;
    color: var(--gray-text);
}

.training-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.training-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--soft-blush);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-gold);
    font-style: italic;
    color: var(--dark-text);
}

.training-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--pearl-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid var(--light-gold);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gold-gradient);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.contact-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-links a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.contact-links a:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.contact-cta {
    text-align: center;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--light-gold);
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 2rem;
        box-shadow: var(--shadow-lg);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    [lang="ar"] .hero-title {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    [lang="ar"] h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .carousel-container {
        padding: 0 2rem;
    }
    
    .hero-buttons,
    .modal-actions,
    .training-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-circle {
        width: 180px;
        height: 180px;
    }
    
    .circle-text {
        font-size: 1.4rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .service-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}