* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('./../imgs/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #f5f5f5;
    min-height: 100vh;
    transition: all 0.3s ease;
}

body.en {
    font-family: 'Inter', 'Arial', sans-serif;
    direction: ltr;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    position: relative;
}

.hero-section {
    position: relative;
    height: 280px;
    background-image: url('./../imgs/photo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.05));
}

.lang-switch {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: #005E9F;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body.en .lang-switch {
    left: auto;
    right: 20px;
}

.lang-switch:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    background: #A6CEE3;
}

.logo-container {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}


.content {
    padding: 80px 30px 40px 30px;
    background: white;
    border-radius: 24px 24px 0 0;
    position: relative;
    z-index: 10;
    margin-top: -40px;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.main-button {
    background: white;
    border: none;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    flex-direction: row;
}

body.en .main-button {
    flex-direction: row-reverse;
}

.main-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,94,159,0.15);
}

.main-button:active {
    transform: translateY(-1px);
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1;
}

body.en .button-text {
    align-items: flex-end;
}

.button-title {
    font-size: 18px;
    font-weight: 600;
    color: #005E9F;
}

.button-subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.button-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.button-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Menu Button */
.menu-button .button-icon {
    border-radius: 12px;
    color: white;
    font-size: 24px;
}

/* Location Button */
.location-button .button-icon {
    background: linear-gradient(135deg, #005E9F 0%, #A6CEE3 100%);
    border-radius: 12px;
}

/* Snoonu Button */
.snoonu-button .button-icon img {
    border-radius: 12px;
}

/* Social Media Section */
.social-divider {
    margin: 40px 0 25px 0;
    text-align: center;
    position: relative;
}

.social-divider span {
    background: white;
    padding: 0 20px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.social-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #A6CEE3;
    z-index: 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,94,159,0.2);
}

.social-button:active {
    transform: translateY(-1px);
}

.phone-button {
    background: linear-gradient(135deg, #005E9F 0%, #A6CEE3 100%);
    color: white;
}

.whatsapp-button {
    background: linear-gradient(135deg, #005E9F 0%, #A6CEE3 100%);
    color: white;
}

.instagram-button {
    background: linear-gradient(135deg, #005E9F 0%, #A6CEE3 100%);
    color: white;
}

.tiktok-button {
    background: linear-gradient(135deg, #005E9F 0%, #A6CEE3 100%);
    color: white;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.lang-switch {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.logo-container {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.1s forwards;
}

.main-button {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.main-button:nth-child(1) { animation-delay: 0.2s; }
.main-button:nth-child(2) { animation-delay: 0.3s; }
.main-button:nth-child(3) { animation-delay: 0.4s; }
.main-button:nth-child(4) { animation-delay: 0.5s; }
.main-button:nth-child(5) { animation-delay: 0.6s; }
.main-button:nth-child(6) { animation-delay: 0.7s; }

.social-buttons .social-button:nth-child(1) {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.social-buttons .social-button:nth-child(2) {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.9s forwards;
}

.social-buttons .social-button:nth-child(3) {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1s forwards;
}

@media (max-width: 480px) {
    .content {
        padding: 80px 20px 40px 20px;
    }

    .button-title {
        font-size: 16px;
    }

    .button-subtitle {
        font-size: 13px;
    }

    .social-button {
        width: 55px;
        height: 55px;
    }

    .social-buttons {
        gap: 15px;
    }
}