/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Professional Dark Theme */
    --primary-color: #2563eb;
    --primary-dark: #0f172a;
    --primary-darker: #020617;
    --secondary-color: #fbbf24;
    --secondary-dark: #f59e0b;
    --accent-blue: #60a5fa;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --border-color: #e5e7eb;
    
    /* Typography */
    --font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 48px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Dark theme for hero section */
body.hero-dark {
    background-color: var(--bg-darker);
}

/* ============================================
   Container
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

/* ============================================
   Header & Navigation - Professional Dark Theme
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(2, 6, 23, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow 2s ease-in-out infinite;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.logo-text h1 {
    font-size: var(--font-size-xl);
    color: var(--text-white);
    margin-bottom: 0;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-subtitle {
    font-size: var(--font-size-small);
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: var(--font-size-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    transition: var(--transition-normal);
    box-shadow: 0 0 10px var(--secondary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: var(--transition-fast);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(2, 6, 23, 0.99) 100%);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: var(--spacing-lg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        transition: var(--transition-normal);
        gap: var(--spacing-md);
        border-top: 1px solid rgba(251, 191, 36, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* ============================================
   Hero Section - Professional Dark Theme
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--primary-dark) 50%, var(--bg-darker) 100%);
    margin-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-dark) 100%);
    z-index: 0;
}

.lightning-bolt {
    position: absolute;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--accent-blue), var(--secondary-color), transparent);
    opacity: 0.6;
    animation: lightning 3s infinite;
    box-shadow: 0 0 20px var(--accent-blue), 0 0 40px var(--secondary-color);
}

.lightning-1 {
    height: 200px;
    top: 10%;
    left: 15%;
    transform: rotate(25deg);
    animation-delay: 0s;
}

.lightning-2 {
    height: 300px;
    top: 30%;
    right: 20%;
    transform: rotate(-15deg);
    animation-delay: 1s;
}

.lightning-3 {
    height: 250px;
    bottom: 20%;
    left: 50%;
    transform: rotate(45deg);
    animation-delay: 2s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    padding: var(--spacing-2xl) var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    color: var(--text-white);
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
    text-shadow: 0 2px 15px rgba(251, 191, 36, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1.2s ease;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .lightning-bolt {
        display: none;
    }
}

/* ============================================
   Buttons - Professional Style
   ============================================ */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span,
.btn {
    position: relative;
    z-index: 1;
}

.btn-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    border: 2px solid rgba(96, 165, 250, 0.3);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4), 0 0 20px rgba(96, 165, 250, 0.2);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6), 0 0 30px rgba(96, 165, 250, 0.4);
    border-color: var(--accent-blue);
}

.btn-services {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4), 0 0 20px rgba(251, 191, 36, 0.2);
}

.btn-services:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.6), 0 0 30px rgba(251, 191, 36, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.6);
}

/* ============================================
   Section Styles - Professional Theme
   ============================================ */
.section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0.5;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-top: var(--spacing-lg);
    font-weight: 400;
}

/* ============================================
   About Section - Professional Theme
   ============================================ */
.about {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--primary-dark) 0%, transparent 100%);
    opacity: 0.05;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-text {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: var(--transition-normal);
}

.about-text:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.about-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.9;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.about-info {
    margin-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid rgba(251, 191, 36, 0.2);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: rgba(251, 191, 36, 0.05);
    border-radius: 8px;
    border-right: 3px solid var(--secondary-color);
    transition: var(--transition-normal);
}

.info-item:hover {
    background: rgba(251, 191, 36, 0.1);
    transform: translateX(-5px);
}

.info-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: var(--font-size-base);
}

.info-value {
    color: var(--primary-color);
    padding-right: var(--spacing-sm);
    font-weight: 500;
    font-size: var(--font-size-base);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-blue));
    border-radius: 16px;
    opacity: 0.1;
    z-index: 0;
    filter: blur(20px);
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    min-height: 400px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(251, 191, 36, 0.2);
    object-fit: cover;
    transition: var(--transition-normal);
    background-color: var(--bg-light);
    display: block;
    position: relative;
    z-index: 1;
    border: 3px solid rgba(251, 191, 36, 0.2);
}

.about-img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(251, 191, 36, 0.4);
    border-color: var(--secondary-color);
}

/* Fallback إذا لم تكن الصورة موجودة */
.about-img[src=""],
.about-img:not([src]) {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: var(--font-size-large);
    text-align: center;
    padding: var(--spacing-lg);
}

.about-img[src=""]::before,
.about-img:not([src])::before {
    content: "صورة الشركة";
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 300px;
        order: -1;
    }
}

/* ============================================
   Products Section - Professional Theme
   ============================================ */
.products {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.products .container {
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(251, 191, 36, 0.2);
    border-radius: 16px;
    padding: var(--spacing-xl);
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-blue));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(251, 191, 36, 0.3);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(251, 191, 36, 0.05) 100%);
}

.product-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--spacing-md);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(96, 165, 250, 0.1));
    border-radius: 50%;
    border: 3px solid rgba(251, 191, 36, 0.2);
    transition: var(--transition-normal);
    position: relative;
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(96, 165, 250, 0.2));
    border-color: var(--secondary-color);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.product-icon svg {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 2px 5px rgba(251, 191, 36, 0.3));
}

.product-title {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    position: relative;
}

.product-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* ============================================
   Contact Section - Professional Theme
   ============================================ */
.contact {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
    color: var(--text-white);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section-title {
    color: var(--text-white);
}

.contact .section-title::after {
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: var(--transition-normal);
}

.contact-item:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(251, 191, 36, 0.3);
    transform: translateX(-8px) translateY(-3px);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(96, 165, 250, 0.2));
    border-radius: 50%;
    color: var(--secondary-color);
    border: 2px solid rgba(251, 191, 36, 0.3);
    transition: var(--transition-normal);
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(96, 165, 250, 0.3));
    border-color: var(--secondary-color);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 5px rgba(251, 191, 36, 0.4));
}

.contact-details h3 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-white);
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.contact-details a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.contact-details a:hover {
    color: var(--text-white);
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
    transform: translateX(-3px);
}

.contact-map {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(251, 191, 36, 0.2);
    border: 3px solid rgba(251, 191, 36, 0.3);
    transition: var(--transition-normal);
}

.contact-map:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(251, 191, 36, 0.4);
    border-color: var(--secondary-color);
    transform: scale(1.02);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-link-fallback {
    display: none;
    text-align: center;
    padding: var(--spacing-lg);
    background-color: var(--bg-white);
    border-radius: 12px;
    margin-top: var(--spacing-md);
}

@media (max-width: 768px) {
    .map-link-fallback {
        display: block;
    }
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 300px;
    }
}

/* ============================================
   Footer - Professional Dark Theme
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-md);
    color: var(--text-white);
    font-weight: 700;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: var(--spacing-xs);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
    padding-right: var(--spacing-sm);
    position: relative;
    transition: var(--transition-fast);
}

.footer-section ul li::before {
    content: '→';
    position: absolute;
    right: -15px;
    color: var(--secondary-color);
    opacity: 0;
    transition: var(--transition-fast);
}

.footer-section ul li:hover::before {
    opacity: 1;
    right: -10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* ============================================
   Scroll to Top Button
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.8));
        transform: scale(1.05);
    }
}

@keyframes lightning {
    0%, 100% {
        opacity: 0;
        transform: translateY(-20px) scaleY(0.5);
    }
    10%, 90% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
        box-shadow: 0 0 30px var(--accent-blue), 0 0 60px var(--secondary-color);
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
