* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: #fff9fc;
    color: #2d2a2e;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* Logo styling */
.logo-container {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 100;
    text-align: center;
    pointer-events: none; /* يسمح بالنقر عبر الشعار إلى الخلفية إذا أردت */
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    backdrop-filter: blur(8px);
    padding: 8px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.8rem;
    color: #c44569;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    pointer-events: auto; /* يجعل الشعار قابلاً للنقر */
}

.logo:hover {
    transform: scale(1.05);
    background: black;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.logo i {
    font-size: 2rem;
    color: #f3a683;
}

.logo span {
    font-family: 'Cairo', sans-serif;
}

.logo img {
    height: 300px;
    width: auto;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 350px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
    animation: fadeUp 1s ease;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(45deg, #FFDEE9, #ffb3ba);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hero-desc {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-glow {
    display: inline-block;
    background: white;
    color: #e94e77;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-glow:hover {
    transform: scale(1.05);
    background: #ffe5ec;
}

.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.shape-fill {
    fill: #fff9fc;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin: 3rem 0 2rem;
}

.section-header h2 {
    font-size: 2.3rem;
    color: #c44569;
    position: relative;
    display: inline-block;
}

.section-header h2 i {
    font-size: 2rem;
    margin-right: 10px;
    color: #f3a683;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 30px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(243, 166, 131, 0.3);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.benefit-card i {
    font-size: 3rem;
    color: #e66767;
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.gallery-item img:hover {
    transform: scale(1.02);
}

/* Partners */
.partners-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.partner-logo {
    background: white;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    border: 1px solid #ffe0e7;
}

/* Application Form */
.apply-section {
    background: linear-gradient(145deg, #fff0f3, #fff9fc);
    padding: 3rem 0;
    margin-top: 3rem;
}

.apply-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 2rem;
    background: white;
    border-radius: 50px;
    padding: 2rem;
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem 2.5rem 1rem 1rem;
    border: 1px solid #fbc4c4;
    border-radius: 60px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    background: #fefafb;
    transition: 0.2s;
}

.form-group textarea {
    border-radius: 30px;
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #e66767;
}

textarea + i {
    top: 1.5rem;
    transform: none;
}

.btn-submit {
    background: linear-gradient(95deg, #e66767, #f3a683);
    border: none;
    padding: 1rem;
    border-radius: 60px;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

.btn-submit:hover {
    transform: scale(0.98);
    filter: brightness(1.05);
}

.form-feedback {
    margin-top: 0.8rem;
    text-align: center;
    font-weight: 600;
}

.apply-info {
    background: #fff5f7;
    border-radius: 35px;
    padding: 1.8rem;
}

.apply-info ul {
    list-style: none;
    margin-top: 1rem;
}

.apply-info li {
    margin: 0.8rem 0;
    font-weight: 500;
}

.footer {
    background: #2d2a2e;
    color: #ddd;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.footer-links a {
    color: #f3a683;
    text-decoration: none;
    margin: 0 0.8rem;
}

.phone-group .phone-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}
.country-select {
    font-size: 10px;
    width: 10%;
    padding: 1rem 0.5rem 1rem 1rem;
    border-radius: 60px;
    border: 1px solid #fbc4c4;
    background: #fefafb;
    font-family: 'Cairo', sans-serif;
}
#phoneLocal {
    width: 90%;
}

/* Loader Animation */
.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #f3a683;
    border-top-color: #e66767;
    border-radius: 50%;
    animation: spin 1s infinite;
    margin: 20px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .apply-wrapper { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
/* تأثير النص الرئيسي (أفضل مضيفة لايف) */
.highlight {
    display: inline-block;
    animation: danceGlow 2.5s ease-in-out infinite, colorChange 4s linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

/* حركة الرقص (اهتزاز وتكبير وتصغير خفيف) */
@keyframes danceGlow {
    0% {
        transform: translateY(0px) scale(1);
        text-shadow: 0 0 5px #fff, 0 0 10px #ff9a9e;
    }
    25% {
        transform: translateY(-5px) scale(1.05);
        text-shadow: 0 0 15px #ffb3ba, 0 0 25px #ff9a9e;
    }
    50% {
        transform: translateY(2px) scale(0.98);
        text-shadow: 0 0 20px #fbc4c4, 0 0 30px #ffdab9;
    }
    75% {
        transform: translateY(-3px) scale(1.03);
        text-shadow: 0 0 15px #ffb3ba, 0 0 25px #f3a683;
    }
    100% {
        transform: translateY(0px) scale(1);
        text-shadow: 0 0 5px #fff, 0 0 10px #ff9a9e;
    }
}

/* تغيير الألوان بأنثوية متنوعة */
@keyframes colorChange {
    0% {
        color: #ff6b6b;
        background: linear-gradient(45deg, #ff6b6b, #ff9a9e);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    25% {
        color: #f3a683;
        background: linear-gradient(45deg, #f3a683, #ffdab9);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    50% {
        color: #c44569;
        background: linear-gradient(45deg, #c44569, #ffb3ba);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    75% {
        color: #e66767;
        background: linear-gradient(45deg, #e66767, #ff9a9e);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    100% {
        color: #ff6b6b;
        background: linear-gradient(45deg, #ff6b6b, #ff9a9e);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}

/* لضمان ظهور التأثير بشكل أفضل على جميع المتصفحات */
@supports (-webkit-background-clip: text) {
    .highlight {
        background: linear-gradient(45deg, #ff6b6b, #ff9a9e);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}