/* Oman Balsam - Harmonious & Elegant Theme */

/* CSS Variables - Refined Brand Colors */
:root {
    /* Primary Colors - Deep Royal Purple */
    --primary: #5B2C6F;
    --primary-dark: #3D1A4A;
    --primary-light: #7D3C98;
    --primary-soft: #A569BD;
    --primary-pale: #E8DAEF;
    --primary-ultra-light: #F5EEF8;
    
    /* Secondary Colors - Elegant Teal */
    --secondary: #1ABC9C;
    --secondary-dark: #16A085;
    --secondary-light: #48C9B0;
    --secondary-soft: #76D7C4;
    --secondary-pale: #D1F2EB;
    
    /* Accent Colors - Warm Gold */
    --accent: #F39C12;
    --accent-light: #F5B041;
    --accent-pale: #FDEBD0;
    
    /* Neutral Colors - Sophisticated Grays */
    --dark: #1C2833;
    --dark-secondary: #2C3E50;
    --text-primary: #2C3E50;
    --text-secondary: #5D6D7E;
    --text-muted: #85929E;
    --white: #FFFFFF;
    --gray-50: #F8F9F9;
    --gray-100: #F2F3F4;
    --gray-200: #E5E7E9;
    --border: #D7DBDD;
    
    /* Gradients - Harmonious Combinations */
    --gradient-primary: linear-gradient(135deg, #5B2C6F 0%, #7D3C98 50%, #9B59B6 100%);
    --gradient-secondary: linear-gradient(135deg, #1ABC9C 0%, #48C9B0 50%, #76D7C4 100%);
    --gradient-hero: linear-gradient(135deg, #5B2C6F 0%, #6C3483 50%, #1ABC9C 100%);
    --gradient-warm: linear-gradient(135deg, #5B2C6F 0%, #7D3C98 100%);
    --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #F8F9F9 100%);
    
    /* Shadows - Soft & Elegant */
    --shadow-sm: 0 2px 8px rgba(91, 44, 111, 0.08);
    --shadow-md: 0 4px 20px rgba(91, 44, 111, 0.12);
    --shadow-lg: 0 8px 30px rgba(91, 44, 111, 0.15);
    --shadow-hover: 0 12px 40px rgba(91, 44, 111, 0.2);
    
    /* Effects */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Modern Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(107, 31, 122, 0.1);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(107, 31, 122, 0.15);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px var(--shadow-md));
    transition: transform var(--transition-normal);
}

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

.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width var(--transition-normal);
}

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

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

/* Instagram Button */
.btn-instagram {
    background: linear-gradient(45deg, #E4405F, #F58529, #FFDC80);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
}

.btn-instagram::after {
    display: none !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Bottom Navigation for Mobile */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -4px 30px rgba(107, 31, 122, 0.15);
    z-index: 1000;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(107, 31, 122, 0.1);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    flex: 1;
    position: relative;
}

.bottom-nav-item i {
    font-size: 1.4rem;
    transition: all var(--transition-fast);
    margin-bottom: 2px;
}

.bottom-nav-item span {
    font-size: 0.7rem;
    white-space: nowrap;
}

.bottom-nav-item:hover {
    color: var(--primary);
}

.bottom-nav-item.active {
    color: var(--primary);
}

.bottom-nav-item.active i {
    transform: translateY(-4px);
    font-size: 1.6rem;
}

.bottom-nav-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: var(--primary-pale);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: -1;
}

.bottom-nav-item.active::before {
    opacity: 1;
}

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-lg);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: 0 8px 25px var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 188, 156, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section - Modern Design */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Animated Background Shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(107, 31, 122, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(107, 31, 122, 0.4); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--secondary-light);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-title span {
    background: linear-gradient(135deg, #fff 0%, var(--primary-pale) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    background: var(--primary-ultra-light);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-ultra-light) 100%);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 10px 40px rgba(107, 31, 122, 0.08);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(107, 31, 122, 0.15);
}

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

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px var(--shadow-md);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--gradient-hero);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Packages Section */
.packages {
    background: var(--dark);
    color: var(--white);
    position: relative;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C27B0' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.packages .section-title {
    color: var(--white);
}

.packages .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 20px 50px rgba(107, 31, 122, 0.3);
}

.package-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    background: rgba(156, 39, 176, 0.1);
    box-shadow: 0 20px 50px rgba(156, 39, 176, 0.2);
}

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

.package-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 0 0 20px 20px;
    display: inline-block;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px var(--shadow-md);
}

.package-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(156, 39, 176, 0.2) 0%, transparent 100%);
}

.package-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 25px var(--shadow-md);
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.package-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-pale);
}

.package-price .amount {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.package-price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.package-content {
    padding: 2rem;
}

.package-features {
    list-style: none;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.package-features i {
    color: var(--secondary-light);
    font-size: 1.1rem;
}

.package-action {
    padding: 1.5rem 2rem 2rem;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-pale) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
    animation: float-slow 20s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-pale) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
    animation: float-slow 15s ease-in-out infinite reverse;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    position: relative;
}

.about-text .section-label {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(107, 31, 122, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 800;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    text-align: justify;
}

.about-text p:last-of-type {
    position: relative;
    padding-right: 1rem;
    border-right: 4px solid var(--secondary);
}

.features {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature:hover {
    background: var(--primary-ultra-light);
    transform: translateX(-8px) translateY(-2px);
    border-color: var(--primary-pale);
    box-shadow: 0 8px 25px rgba(107, 31, 122, 0.15);
}

.feature i {
    color: var(--white);
    font-size: 1.3rem;
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(107, 31, 122, 0.3);
    transition: all var(--transition-fast);
}

.feature:hover i {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 15px rgba(107, 31, 122, 0.4);
}

.feature span {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.about-image {
    position: relative;
    perspective: 1000px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -25px;
    right: -25px;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.4;
    transform: rotate(3deg);
    transition: all var(--transition-normal);
}

.about-image:hover::before {
    transform: rotate(-2deg) scale(1.02);
    opacity: 0.5;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 60px rgba(107, 31, 122, 0.25);
    transition: all var(--transition-normal);
    transform-style: preserve-3d;
}

.about-image:hover img {
    transform: translateY(-10px) rotateY(-5deg);
    box-shadow: 0 35px 70px rgba(107, 31, 122, 0.3);
}

.about-image .image-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(26, 188, 156, 0.4);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.about-image .image-badge i {
    margin-left: 8px;
}

/* Service Request Section */
.service-request {
    background: linear-gradient(135deg, var(--primary-ultra-light) 0%, var(--gray-50) 100%);
    position: relative;
}

.service-request::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--white);
    border-radius: 0 0 50% 50%;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 20px 60px rgba(107, 31, 122, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-fast);
    font-family: 'Tajawal', sans-serif;
    background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(156, 39, 176, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-fast);
    border: 1px solid var(--gray-100);
}

.contact-item:hover {
    background: var(--primary-ultra-light);
    border-color: var(--primary-pale);
    transform: translateX(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 8px 20px var(--shadow-md);
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.3rem;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--accent);
}

.contact-form {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--gray-200);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    font-size: 2.2rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-normal);
    animation: whatsapp-pulse 2s infinite;
}

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

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

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

.footer-brand {
    text-align: right;
}

.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(156, 39, 176, 0.3));
}

.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: var(--white);
    transform: translateX(-5px);
}

.footer-section a::before {
    content: '←';
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.footer-section a:hover::before {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all var(--transition-normal);
    text-decoration: none;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-md);
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-purple-dark);
}

/* Selection Color */
::selection {
    background: var(--primary-pale);
    color: var(--primary-purple-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: all var(--transition-normal);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: scale(1.03) translateY(-10px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .service-form,
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .service-card,
    .package-card,
    .contact-item {
        padding: 1.5rem;
    }
    
    .service-form,
    .contact-form {
        padding: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 90px;
        left: 20px;
        z-index: 999;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

/* =====================================================
   MOBILE-FIRST RESPONSIVE DESIGN - PROFESSIONAL APP STYLE
   ===================================================== */

/* Base Mobile Optimizations */
@media (max-width: 768px) {
    /* Show bottom navigation, hide top menu */
    .bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: none;
    }
    
    /* Add padding to body for bottom nav */
    body {
        padding-bottom: 70px;
    }
    
    /* Adjust navbar for mobile */
    .navbar .container {
        padding: 0.8rem 20px;
    }
    
    .logo {
        width: 45px;
        height: 45px;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
    
    /* Better touch targets */
    
    /* Improved Hero for mobile */
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 10px;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Better buttons on mobile */
    .hero-buttons {
        gap: 1rem;
        padding: 0 10px;
    }
    
    .btn {
        padding: 16px 28px;
        font-size: 1rem;
        min-height: 56px;
        border-radius: 50px;
    }
    
    .btn-large {
        padding: 18px 32px;
    }
    
    /* Stats section mobile optimization */
    .hero-stats {
        margin-top: 2.5rem;
        padding-top: 2rem;
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Services cards mobile */
    .services {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin: 0 5px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Packages section mobile */
    .packages {
        padding: 60px 0;
    }
    
    .package-card {
        padding: 1.5rem;
        margin: 0 5px 15px;
    }
    
    .package-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .package-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .package-price .amount {
        font-size: 3rem;
    }
    
    .package-features li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    /* About section mobile */
    .about {
        padding: 80px 0;
    }
    
    .about::before,
    .about::after {
        display: none;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .about-text .section-label {
        display: block;
        text-align: center;
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
    }
    
    .about-text h2 {
        font-size: 1.7rem;
        text-align: center;
        line-height: 1.4;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: center;
        line-height: 1.8;
    }
    
    .about-text p:last-of-type {
        padding-right: 0;
        border-right: none;
        padding-top: 0.8rem;
        border-top: 3px solid var(--secondary);
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .feature {
        padding: 1rem;
        justify-content: center;
    }
    
    .feature:hover {
        transform: translateY(-3px);
    }
    
    .feature i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .feature span {
        font-size: 0.9rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image::before {
        top: -15px;
        right: -15px;
    }
    
    .about-image::after {
        width: 50px;
        height: 50px;
        bottom: -10px;
        left: -10px;
    }
    
    .about-image img {
        max-height: 280px;
        object-fit: cover;
    }
    
    .about-image .image-badge {
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
        left: -10px;
        bottom: 15px;
    }
    
    /* Contact section mobile */
    .contact {
        padding: 60px 0;
    }
    
    .contact-item {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-bottom: 0.5rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.6rem;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    /* Section headers mobile */
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-label {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .package-price .amount {
        font-size: 2.5rem;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Large Mobile / Small Tablet */
@media (min-width: 481px) and (max-width: 767px) {
    .services-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card,
    .package-card {
        padding: 1.8rem;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .service-card:hover,
    .package-card:hover {
        transform: translateY(-5px);
    }
    
    .service-card:hover .service-icon {
        transform: scale(1.05);
    }
    
    .nav-menu a:hover::after {
        width: 0;
    }
    
    .nav-menu a:active {
        background: var(--primary-ultra-light);
    }
}

/* Safe Area for Notched Phones */
@supports (padding-top: env(safe-area-inset-top)) {
    .navbar {
        padding-top: env(safe-area-inset-top);
    }
    
    .hero {
        padding-top: calc(100px + env(safe-area-inset-top));
    }
    
    .whatsapp-float {
        left: max(20px, env(safe-area-inset-left));
        bottom: max(20px, env(safe-area-inset-bottom));
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
    
    .nav-menu {
        height: 100vh;
        top: 0;
        padding-top: 80px;
    }
}

/* High Resolution Mobile Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Prevent Text Size Adjustment on Orientation Change */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Smooth Scrolling for iOS */
@supports (-webkit-overflow-scrolling: touch) {
    body {
        -webkit-overflow-scrolling: touch;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .bottom-nav,
    .whatsapp-float,
    .whatsapp-bot-overlay,
    .btn-instagram {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
}
