/* ============================================
   Modern Dark Design - Similar to Reference
   ============================================ */

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

:root {
    /* Dark Theme Colors */
    --bg-dark: #1A0B2E;
    --bg-darker: #0F0517;
    --accent-pink: #FF006E;
    --accent-purple: #8338EC;
    --accent-blue: #3A86FF;
    --accent-orange: #FF6B35;
    --text-white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.8);
    --text-gray: rgba(255, 255, 255, 0.6);
    
    /* Gradients */
    --gradient-1: linear-gradient(135deg, #FF006E 0%, #8338EC 100%);
    --gradient-2: linear-gradient(135deg, #FF6B35 0%, #FF006E 100%);
    --gradient-3: linear-gradient(135deg, #3A86FF 0%, #8338EC 100%);
    --gradient-hero: radial-gradient(ellipse at top right, rgba(255, 0, 110, 0.3) 0%, transparent 50%),
                      radial-gradient(ellipse at bottom right, rgba(131, 56, 236, 0.2) 0%, transparent 50%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ============================================
   Header - Dark with Logo
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 11, 46, 0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--accent-pink);
    padding: 4px;
    transition: all 0.3s ease;
}

.header.scrolled .logo-img {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.header.scrolled .logo-text {
    font-size: 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.header.scrolled .nav-menu a {
    font-size: 0.8rem;
}

.nav-menu a:hover {
    color: var(--accent-pink);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section - Dark with Phone Image
   ============================================ */

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #1A0B2E 0%, #0F0517 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top, rgba(255, 0, 110, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(131, 56, 236, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-text {
    width: 100%;
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

.highlight {
    color: var(--accent-pink);
    display: block;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 100%;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-pink);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 110, 0.4);
}

.hero-image {
    display: none;
}

/* ============================================
   Key Features Section
   ============================================ */

section {
    padding: 3.5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--accent-pink);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.services {
    background: var(--bg-darker);
}

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

.service-card {
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card p {
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: var(--accent-pink);
    color: var(--text-white);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    margin-top: auto;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.service-btn:hover {
    background: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 56, 236, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    background: var(--accent-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(255, 0, 110, 0.25);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.35);
}

.service-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.25rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Offers Section - Image + Content
   ============================================ */

.offers {
    background: var(--bg-dark);
}

.offers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.offers-image {
    position: relative;
}

.offers-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offers-text {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.offers-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--accent-pink);
    margin-bottom: 1.25rem;
}

.offers-text p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ============================================
   Why Us - Reviews Section
   ============================================ */

.why-us {
    background: var(--bg-darker);
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-pink);
    box-shadow: 0 8px 20px rgba(255, 0, 110, 0.15);
}

.feature-item p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-pink);
}

.feature-item span {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.contact-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--accent-pink);
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.contact-details i {
    color: var(--accent-pink);
    font-size: 1.375rem;
    flex-shrink: 0;
}

.social-section {
    margin-top: 1.75rem;
}

.social-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.875rem;
}

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

.social-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.social-icon:hover {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
    transform: translateY(-2px);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link.facebook {
    border-color: #1877F2;
}

.social-link.facebook:hover {
    background: #1877F2;
    color: white;
}

.social-link.instagram {
    border-color: #E4405F;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
    color: white;
    border-color: transparent;
}

.social-link.whatsapp {
    border-color: #25D366;
}

.social-link.whatsapp:hover {
    background: #25D366;
    color: white;
}

.social-link.phone {
    border-color: var(--accent-pink);
}

.social-link.phone:hover {
    background: var(--accent-pink);
    color: white;
}

.social-link i {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-link:hover i {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.social-link span {
    font-weight: 600;
    font-size: 0.9375rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.75rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-pink);
    box-shadow: 0 8px 20px rgba(255, 0, 110, 0.15);
}

.info-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-pink);
}

.info-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.info-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--bg-darker);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

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

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    border-radius: 50%;
    border: 2px solid var(--accent-pink);
    padding: 4px;
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 0.875rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-links ul {
    list-style: none;
    text-align: center;
}

.footer-links ul li {
    margin-bottom: 0.625rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-pink);
}

.social-icons {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.social-icon:hover {
    background: var(--accent-pink);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8125rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-logo,
    .footer-links,
    .footer-social {
        text-align: center;
    }

    .footer-logo-img {
        width: 48px;
        height: 48px;
    }

    .footer-logo h3 {
        font-size: 1.125rem;
    }

    .footer-links h4,
    .footer-social h4 {
        font-size: 0.9375rem;
    }
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 968px) {
    .offers-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--bg-darker);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        gap: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 70px 0 50px;
        min-height: 60vh;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
        min-height: 55vh;
    }

    .service-card p,
    .offers-text,
    .feature-item {
        padding: 1.25rem;
    }

    .offers-image img {
        height: 300px;
    }

    section {
        padding: 2.5rem 0;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .social-link i {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .social-link span {
        font-size: 0.8125rem;
    }

    .info-card {
        padding: 1.25rem;
    }

    .info-card i {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .info-card h4 {
        font-size: 1rem;
    }

    .info-card p {
        font-size: 0.8125rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .contact-details {
        gap: 1rem;
    }

    .contact-details p {
        font-size: 0.875rem;
        gap: 0.75rem;
    }

    .contact-details i {
        font-size: 1.125rem;
    }

    .social-section {
        margin-top: 1.5rem;
    }

    .social-section h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ============================================
   Animations
   ============================================ */

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeInUp 1s ease-out 0.6s both;
}
