/* ========================================
   Al Batool Abaya Shop - Premium CSS
   Modern Arabian Elegance Theme
   ======================================== */

/* CSS Custom Properties - Color Palette */
:root {
    /* Modern Arabian Elegance Colors */
    --primary-emerald: #1B4D3E;        /* Deep emerald green - Islamic elegance */
    --accent-rose-gold: #E8B4A0;       /* Rose gold - Premium luxury accents */
    --cream-white: #FAF7F2;            /* Cream white - Clean sophistication */
    --charcoal: #2C2C2C;               /* Modern contrast */
    --soft-gold: #D4AF37;              /* Traditional touch */
    --pure-white: #FFFFFF;
    --light-gray: #F8F8F8;
    --medium-gray: #666666;
    --border-light: #E5E5E5;
    
    /* Gradient Colors */
    --gradient-gold: linear-gradient(135deg, var(--soft-gold) 0%, var(--accent-rose-gold) 100%);
    --gradient-emerald: linear-gradient(135deg, var(--primary-emerald) 0%, #0F3A2E 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;     /* Luxury headers */
    --font-body: 'Inter', sans-serif;              /* Modern readability */
    --font-arabic: 'Amiri', serif;                 /* Arabic text */
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --grid-gap: 30px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   Global Styles & Reset
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--cream-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Typography Styles
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-emerald);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Arabic Text Styling */
.logo-arabic, [lang="ar"] {
    font-family: var(--font-arabic);
    direction: rtl;
    text-align: right;
}

/* ========================================
   Button Styles
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-emerald);
    color: var(--pure-white);
    box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 77, 62, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-emerald);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-emerald);
    border: 1px solid rgba(27, 77, 62, 0.3);
    backdrop-filter: blur(10px);
}

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

/* Pulse Animation for CTA */
.pulse-animation {
    animation: pulse 2s infinite;
}

/* WhatsApp pulse animation for hero CTA */
.btn-hero-main.pulse-animation {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(27, 77, 62, 0.5), 0 0 0 10px rgba(27, 77, 62, 0.1); }
    100% { box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3); }
}

/* ========================================
   Navigation Styles
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--border-light);
}

.navbar.scrolled {
    background: rgba(250, 247, 242, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-arabic {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-emerald);
    margin: 0;
    line-height: 1;
}

.logo-english {
    font-size: 1.1rem;
    color: var(--soft-gold);
    margin: 0;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

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

.nav-link:hover {
    color: var(--primary-emerald);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-toggle {
    display: flex;
    background: var(--light-gray);
    border-radius: 25px;
    overflow: hidden;
}

.lang-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.lang-btn.active {
    background: var(--primary-emerald);
    color: var(--pure-white);
}

.phone-link {
    color: var(--primary-emerald);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.floating-whatsapp {
    background: #25D366;
    color: var(--pure-white);
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-emerald);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* ========================================
   Hero Section Styles
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(27, 77, 62, 0.8) 0%, rgba(15, 58, 46, 0.9) 100%),
                url('../images/hero-abaya-collection.jpg') center center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(232, 180, 160, 0.1) 0%, transparent 50%);
    animation: patternFloat 20s infinite ease-in-out;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pure-white);
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: heroFadeIn 1.2s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.title-main {
    display: block;
    font-weight: 400;
    opacity: 0.9;
}

.title-accent {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-style: italic;
    animation: heroFadeIn 1.2s ease-out 0.3s both;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: heroFadeIn 1.2s ease-out 0.6s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.stat-item i {
    color: var(--soft-gold);
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    animation: heroFadeIn 1.2s ease-out 0.9s both;
    flex-wrap: wrap;
}

.btn-hero-main {
    font-size: 1.2rem;
    padding: 18px 36px;
    min-width: 280px;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: var(--pure-white);
}

.btn-hero-main i {
    font-size: 1.3rem;
    margin-right: 8px;
}

.btn-hero-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #2EE76F 0%, #1DA851 100%);
}

.btn-hero-secondary {
    font-size: 1.1rem;
    padding: 16px 32px;
    min-width: 240px;
    text-align: center;
    background: var(--pure-white);
    color: var(--primary-emerald);
    border: 2px solid var(--pure-white);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.btn-hero-secondary i {
    font-size: 1.1rem;
    margin-right: 8px;
    color: var(--primary-emerald);
}

.btn-hero-secondary:hover i {
    color: var(--charcoal);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--soft-gold);
    border-bottom: 2px solid var(--soft-gold);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* ========================================
   Collections Section Styles
   ======================================== */

.collections {
    padding: var(--section-padding);
    background: var(--pure-white);
}

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

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--grid-gap);
    margin-bottom: 3rem;
}

.collection-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--pure-white);
    position: relative;
}

/* Collection-specific backgrounds */
.daily-elegance { 
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%), 
                url('../images/daily-elegance-1.jpg') center center/cover no-repeat; 
}
.special-occasions { 
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%), 
                url('../images/special-occasions-1.jpg') center center/cover no-repeat; 
}
.custom-designs { 
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%), 
                url('../images/custom-designs-1.jpg') center center/cover no-repeat; 
}
.premium-collection { 
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%), 
                url('../images/premium-collection-1.jpg') center center/cover no-repeat; 
}
.complete-sets { 
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%), 
                url('../images/complete-sets-1.jpg') center center/cover no-repeat; 
}
.accessories { 
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%), 
                url('../images/accessories-1.jpg') center center/cover no-repeat; 
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 77, 62, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.collection-card:hover .card-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--pure-white);
    padding: 2rem;
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--soft-gold);
}

.overlay-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.card-content {
    padding: 2rem;
    text-align: center;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--pure-white);
}

.card-content h3 {
    color: var(--primary-emerald);
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.price-range {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--soft-gold);
}

/* ========================================
   Testimonials Section Styles
   ======================================== */

.testimonials {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.rating-display {
    text-align: center;
    margin-bottom: 3rem;
}

.stars {
    font-size: 1.5rem;
    color: var(--soft-gold);
    margin-bottom: 0.5rem;
}

.rating-number {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-gap);
}

.testimonial-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-rose-gold);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-style: italic;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.2rem;
}

.customer-details h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-emerald);
}

.customer-details span {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.customer-rating {
    margin-left: auto;
    color: var(--soft-gold);
}

/* ========================================
   About Section Styles
   ======================================== */

.about {
    padding: var(--section-padding);
    background: var(--pure-white);
}

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

.about-text {
    padding-right: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: var(--primary-emerald);
    color: var(--pure-white);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--soft-gold);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: var(--primary-emerald);
    color: var(--pure-white);
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--soft-gold);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-emerald);
}

.stat-card:hover h3 {
    color: var(--soft-gold);
}

.stat-card p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
}

.stat-card:hover p {
    color: var(--pure-white);
}

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

.contact {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

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

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--pure-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-emerald);
    min-width: 40px;
}

.info-details h4 {
    color: var(--primary-emerald);
    margin-bottom: 0.5rem;
}

.info-details p {
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(0.8) contrast(1.1);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 280px;
}

.location-marker {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-marker i {
    font-size: 1.5rem;
    color: var(--primary-emerald);
    margin-top: 2px;
}

.marker-info h4 {
    font-size: 1.1rem;
    color: var(--primary-emerald);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.marker-info p {
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.marker-info small {
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-style: italic;
}

.map-actions {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.map-link, .directions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-emerald);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.map-link:hover, .directions-link:hover {
    background: var(--primary-emerald);
    color: var(--pure-white);
    transform: translateX(3px);
}

/* Map Loading Indicator */
.map-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 77, 62, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    z-index: 10;
}

.loading-spinner {
    text-align: center;
    color: var(--pure-white);
}

.loading-spinner i {
    font-size: 3rem;
    color: var(--soft-gold);
    margin-bottom: 1rem;
    animation: mapPulse 1.5s ease-in-out infinite;
}

.loading-spinner p {
    font-size: 1.1rem;
    margin: 0;
}

@keyframes mapPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

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

.footer {
    background: var(--primary-emerald);
    color: var(--pure-white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--soft-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--soft-gold);
}

.footer-logo h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-rose-gold);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--pure-white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--soft-gold);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--soft-gold);
    padding-left: 5px;
}

.contact-details p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-details i {
    color: var(--soft-gold);
    width: 20px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

/* ========================================
   Floating WhatsApp Button
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #2EE76F 0%, #1DA851 100%);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--charcoal);
    color: var(--pure-white);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

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

/* ========================================
   Utility Classes
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden { display: none; }
.visible { display: block; }

/* Arabic language support */
[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-stats {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-actions {
    flex-direction: row-reverse;
}

/* Smooth scrolling for all elements */
html {
    scroll-behavior: smooth;
}