:root {
    --primary-red: #DC2626;
    --primary-red-dark: #B91C1C;
    --primary-red-glow: rgba(220, 38, 38, 0.5);
    --bg-dark: #0A0A0A;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --text-white: #FFFFFF;
    --text-gray: #9CA3AF;
    --border-color: #333333;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--primary-red-glow);
    }
    50% {
        box-shadow: 0 0 40px var(--primary-red-glow), 0 0 60px var(--primary-red-glow);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 0;
    height: 4px;
    background-color: var(--primary-red);
    transition: width 0.8s ease;
}

.section-title.visible::after {
    width: 60%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background-color: var(--primary-red);
    color: white;
    font-weight: bold;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    background-color: var(--primary-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {
    background-color: var(--primary-red);
}

.text-red {
    color: var(--primary-red);
}

/* Cursor Effect */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease-out;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

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

.header-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.lang-switch {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 4px;
    transition: all 0.3s;
}

.lang-switch:hover {
    border-color: var(--primary-red);
}

.lang-switch span {
    padding: 5px 12px;
    cursor: pointer;
    border-radius: 15px;
    transition: all 0.3s;
}

.lang-switch .active {
    background-color: var(--primary-red);
    color: white;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: white;
    transition: all 0.3s;
    border-radius: 3px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
    background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.15) 0%, var(--bg-dark) 70%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.1) 0%, rgba(10, 10, 10, 0.8) 70%, #0A0A0A 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    padding: 0 20px;
    margin-top: 60px;
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 24px);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
    animation: fadeInDown 1s ease forwards;
}

.hero-title {
    font-size: clamp(40px, 8vw, 96px);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-desc {
    font-size: clamp(16px, 2vw, 24px);
    color: #E5E7EB;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-tags {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    font-size: clamp(14px, 2vw, 18px);
    color: #D1D5DB;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-tags span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.hero-tags span:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.hero-tags i {
    color: var(--primary-red);
}

.hero-btn {
    animation: fadeInUp 1s ease 0.8s forwards, pulse 2s ease-in-out infinite 2s;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 32px;
    color: var(--primary-red);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

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

.feature-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-red);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px rgba(220, 38, 38, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::after {
    left: 100%;
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 25px;
    transition: all 0.4s;
    display: inline-block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 30px var(--primary-red-glow);
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: bold;
    transition: color 0.3s;
}

.feature-card:hover .feature-title {
    color: var(--primary-red);
}

.feature-text {
    color: var(--text-gray);
    font-size: 15px;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: #0F0F0F;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
    max-width: 900px;
}

.about-subtitle {
    color: var(--primary-red);
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 16px;
}

.about-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.about-item:hover {
    background: rgba(220, 38, 38, 0.05);
    transform: translateX(-10px);
}

.about-item-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.about-item:hover .about-item-icon {
    background: var(--primary-red);
    color: white;
    transform: rotate(360deg);
}

.about-item-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: white;
}

.about-item-text p {
    color: var(--text-gray);
    font-size: 15px;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #0F0F0F 100%);
    position: relative;
}

.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
}

.process-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(50%);
}

.timeline-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-content {
    width: 45%;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
    position: relative;
    transition: all 0.4s;
    cursor: pointer;
}

.step-content:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(220, 38, 38, 0.2);
}

.timeline-step:nth-child(even) .step-content {
    border-left: none;
    border-right: 4px solid var(--primary-red);
    text-align: left;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    box-shadow: 0 0 0 10px rgba(10, 10, 10, 1);
    transition: all 0.3s;
}

.timeline-step:hover .step-number {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 0 10px rgba(10, 10, 10, 1), 0 0 30px var(--primary-red-glow);
}

.step-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-desc {
    color: var(--text-gray);
    font-size: 15px;
}

/* Packages Section */
.packages {
    padding: 120px 0;
    background-color: var(--bg-dark);
}

.packages-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
}

.package-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 50px 40px;
    width: 350px;
    position: relative;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.package-card.popular {
    background: linear-gradient(145deg, #222 0%, #1A1A1A 100%);
    border: 2px solid var(--primary-red);
    transform: scale(1.05);
    z-index: 2;
    animation: glow 3s infinite;
}

.package-card.popular:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    color: white;
    padding: 8px 25px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 25px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.pkg-name {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.bronze .pkg-name { color: #CD7F32; }
.silver .pkg-name { color: #C0C0C0; }
.gold .pkg-name { color: #FFD700; }

.pkg-price {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 30px;
    color: white;
}

.pkg-price span {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: normal;
}

.pkg-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.pkg-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #D1D5DB;
    transition: all 0.3s;
    font-size: 15px;
}

.pkg-features li:hover {
    transform: translateX(-5px);
    color: white;
}

.pkg-features i {
    color: var(--primary-red);
    font-size: 18px;
    flex-shrink: 0;
}

.package-card .btn {
    width: 100%;
}

/* Transformations */
.transformations {
    padding: 120px 0;
    background-color: #0F0F0F;
}

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

.trans-item {
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.trans-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.trans-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(220, 38, 38, 0.9), rgba(220, 38, 38, 0.4));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
}

.trans-item:hover .trans-overlay {
    opacity: 1;
}

.trans-item:hover img {
    transform: scale(1.15) rotate(3deg);
}

.trans-icon {
    font-size: 50px;
    color: white;
    transform: scale(0.8);
    transition: all 0.4s;
    opacity: 0;
}

.trans-item:hover .trans-icon {
    transform: scale(1);
    opacity: 1;
}

/* Slideshow Transformations */
.trans-slideshow .trans-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.trans-slideshow .trans-slide.active {
    opacity: 1;
}

.slide-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slide-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.slide-indicators .indicator.active {
    background: var(--primary-red);
    transform: scale(1.3);
}

/* FAQ */
.faq {
    padding: 120px 0;
    background-color: var(--bg-dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(220, 38, 38, 0.3);
}

.faq-item.active {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary-red);
    padding-right: 35px;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    max-height: 300px;
}

.faq-icon {
    transition: all 0.4s;
    font-size: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-red);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-red-dark) 0%, #0A0A0A 50%, var(--primary-red-dark) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: clamp(16px, 2vw, 22px);
    color: #ddd;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: black;
    padding: 80px 0 40px;
    border-top: 1px solid #222;
}

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

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.footer-logo span {
    color: var(--primary-red);
}

.footer-desc {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    font-size: 20px;
}

.social-icon:hover {
    background: var(--primary-red);
    transform: translateY(-5px) rotate(360deg);
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: white;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-red);
    transform: translateX(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 14px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 450px;
    width: 100%;
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--primary-red);
    transform: rotate(90deg);
}

.modal h3 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #ccc;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

.form-group input::placeholder {
    color: #666;
}

.form-group select option {
    background: var(--bg-card);
    color: white;
}

.selected-package {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 2px solid var(--primary-red);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.selected-package .pkg-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.selected-package .pkg-info {
    text-align: right;
}

.selected-package .pkg-label {
    font-size: 12px;
    color: var(--text-gray);
}

.selected-package .pkg-value {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.modal .btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 10px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 99;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    border: 1px solid var(--primary-red);
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
    transform: translateX(150%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    font-size: 24px;
    color: #25D366;
}

/* Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.3s, visibility 0.3s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .about-container {
        flex-direction: column;
    }

    .timeline-step {
        flex-direction: column !important;
        text-align: center;
    }

    .step-content {
        width: 100%;
        border-left: none !important;
        border-right: none !important;
        border-top: 4px solid var(--primary-red);
        text-align: center !important;
    }

    .timeline::before {
        display: none;
    }

    .step-number {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }

    .package-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        flex-direction: column;
        align-items: center;
    }

    .package-card {
        width: 100%;
        max-width: 350px;
        padding: 40px 25px;
    }

    .modal {
        padding: 30px 20px;
        margin: 10px;
    }

    .modal h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 15px;
    }

    .selected-package {
        padding: 14px;
    }

    .selected-package .pkg-value {
        font-size: 16px;
    }

    .toast {
        right: 15px;
        left: 15px;
        bottom: 100px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 25px 15px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select {
        padding: 11px 12px;
        font-size: 14px;
    }

    .modal .btn {
        padding: 14px;
        font-size: 15px;
    }
}
