/* Global Styles */
.pih-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 108px;
    display: flex;
    align-items: center;
    padding: 0 64px;
}

.pih-nav-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pih-logo {
    display: flex;
    align-items: center;
    gap: 6.75px;
    opacity: 0.8;
}

.pih-logo-text {
    width: 95px;
    height: 68px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.pih-nav-menu {
    display: flex;
    gap: 11px;
    align-items: center;
}

.pih-nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 56px;
    padding: 16px 24px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #000;
    transition: all 0.3s ease;
    border: 1px solid rgb(217, 217, 217);
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 32px;
}

.pih-nav-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Hero Section */
.pih-hero-section {
    position: relative;
    padding: 113px 64px 48px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #f0f2f6 0.45%, rgba(255, 209, 148, 0.25) 24.32%, rgba(255, 209, 148, 0.25) 78.83%, rgba(255, 209, 148, 0.3) 100%);
}

.pih-hero-background {
    width: 100%;
    max-width: 1440px;
    height: 577px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.pih-hero-content {
    max-width: 1440px;
    width: 100%;
    display: flex;
    gap: 56px;
}

.pih-hero-title {
    flex: 1;
    font-family: 'Lavish', sans-serif;
    font-size: 48px;
    line-height: 120%;
    color: #111111;
}

.pih-hero-description {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 160%;
    color: #2b2b2b;
    margin-bottom: 24px;
}

.pih-hero-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pih-primary-button,
.pih-secondary-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 7px 24px 7px 7px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #090909;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pih-button-filler {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 35px;
    background-color: #ffd194;
    transition: width 0.3s ease;
    z-index: 0;
}

.pih-primary-button:hover .pih-button-filler,
.pih-secondary-button:hover .pih-button-filler {
    width: 95%;
}

.pih-button-text {
    position: relative;
    z-index: 1;
    padding-right: 10px;
}

.pih-button-arrow {
    position: relative;
    z-index: 1;
    font-size: 20px;
}

/* Floating Icon */
.pih-floating-icon {
    position: fixed;
    bottom: 48px;
    right: 64px;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pih-hero-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .pih-navbar {
        padding: 0 32px;
    }
    
    .pih-nav-menu {
        display: none; /* يمكن استبداله بقائمة hamburger على الموبايل */
    }
}

@media (max-width: 768px) {
    .pih-hero-section {
        padding: 80px 20px 40px;
    }
    
    .pih-hero-title {
        font-size: 36px;
    }
    
    .pih-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .pih-primary-button,
    .pih-secondary-button {
        width: 100%;
        justify-content: center;
    }
}