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

/* Optimize font loading */
@font-face {
    font-family: 'Cairo';
    src: url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');
    font-display: swap;
}

/* Reduce paint and layout thrashing */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimize animations for performance */
* {
    will-change: auto;
}

.hero, .gallery-item, .feature-card, .product-card {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reset and Base Styles */

:root {
    --primary-color: #093FB4;
    --background-color: #FFFCFB;
    --accent-color: #ED3500;
    --accent-text: #FBF5DE;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

section {
    margin: 0;
    padding: 0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 252, 251, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    height: 50px;
    width: auto;
}

.company-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

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

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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e5799 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px; /* زيادة المسافة من القائمة العلوية */
    padding-bottom: 0;
    margin-bottom: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/uploads/windows-1.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 63, 180, 0.9) 0%, rgba(30, 87, 153, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: var(--accent-color);
    color: var(--accent-text);
    padding: 0.2em 0.5em;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Countdown Timer Styles */
.countdown-container {
    background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
    border: 3px solid #fff;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin: 2rem auto 1.5rem;
    max-width: 700px;
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.4),
                0 0 60px rgba(255, 69, 0, 0.3),
                inset 0 2px 10px rgba(255, 255, 255, 0.3);
    animation: countdownPulse 2s ease-in-out infinite;
}

.countdown-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FF6B00;
    line-height: 1;
    font-family: 'Cairo', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-top: 0.3rem;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes countdownPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(255, 107, 0, 0.4),
                    0 0 60px rgba(255, 69, 0, 0.3),
                    inset 0 2px 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.01);
        box-shadow: 0 15px 50px rgba(255, 107, 0, 0.6),
                    0 0 80px rgba(255, 69, 0, 0.5),
                    inset 0 2px 10px rgba(255, 255, 255, 0.5);
    }
}

/* Customer Attraction Styles */
.customer-attraction {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    animation: pulse 2s infinite;
}

.attraction-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    margin: 0;
}

.attraction-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 193, 7, 0.6);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Phone Highlight Box */
.phone-highlight-box {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 3px solid #fff;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    width: min(100%, 640px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.8rem, 2vw, 1.5rem);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4),
                0 0 60px rgba(255, 165, 0, 0.3),
                inset 0 2px 10px rgba(255, 255, 255, 0.5);
    animation: phoneBoxPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.phone-highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes phoneBoxPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4),
                    0 0 60px rgba(255, 165, 0, 0.3),
                    inset 0 2px 10px rgba(255, 255, 255, 0.5);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6),
                    0 0 80px rgba(255, 165, 0, 0.5),
                    inset 0 2px 10px rgba(255, 255, 255, 0.7);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.phone-icon-pulse {
    background: #fff;
    width: clamp(56px, 8vw, 70px);
    height: clamp(56px, 8vw, 70px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 1.5s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.phone-icon-pulse i {
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: #FF6B00;
    animation: iconRing 1.5s ease-in-out infinite;
}

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

@keyframes iconRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.phone-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.phone-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

.phone-label {
    font-size: clamp(0.95rem, 2.4vw, 1.1rem);
    font-weight: 600;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.phone-number-large {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
    font-weight: 900;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: clamp(1px, 0.8vw, 3px);
    direction: ltr;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.phone-number-large:hover {
    color: #FF6B00;
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(255, 255, 255, 1);
}

.btn-quote {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: clamp(0.7rem, 3vw, 0.95rem) clamp(1rem, 4vw, 1.5rem);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.95rem, 3.2vw, 1.1rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-quote:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.btn-quote i {
    font-size: 1.2rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--accent-text);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: #c42d00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: var(--white);
}

.trust-content {
    text-align: center;
}

.trust-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-feature {
    background: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.trust-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.trust-feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: var(--background-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: -1rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 120px;
    color: rgba(9, 63, 180, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0.2rem 0 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-date i {
    color: var(--primary-color);
}

/* UPVC Advertisement Section */
.upvc-ad-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e5799 100%);
    color: var(--white);
}

.upvc-ad-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.upvc-ad-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.upvc-ad-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.upvc-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.upvc-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upvc-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.upvc-feature i {
    font-size: 1.5rem;
    color: var(--accent-text);
}

.upvc-feature span {
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .upvc-ad-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .upvc-ad-text h2 {
        font-size: 2rem;
    }
}

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

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

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

.product-features {
    list-style: none;
    margin-top: 1rem;
}

.product-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-right: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Before After Section */
.before-after-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.before-after-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.before-after-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.before-after-image-wrapper:hover {
    transform: scale(1.02);
}

.before-after-labels {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    z-index: 2;
}

.label-before,
.label-after {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.label-before {
    background: rgba(220, 53, 69, 0.9);
}

.label-after {
    background: rgba(40, 167, 69, 0.9);
}

.before-after-text {
    padding: 20px;
}

.before-after-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.before-after-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.transformation-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    transition: transform 0.2s ease;
}

.feature-point:hover {
    transform: translateX(-5px);
}

.feature-point i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-point span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.before-after-image {
    width: 100%;
    height: auto;
    display: block;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #1e5799);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(9, 63, 180, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: linear-gradient(135deg, #1e5799, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(9, 63, 180, 0.4);
}

@media (max-width: 768px) {
    .before-after-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .before-after-text h3 {
        font-size: 2rem;
    }
    
    .transformation-features {
        align-items: center;
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--background-color);
}

.features-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
    max-width: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .feature-card {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
}

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

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--white);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: grab;
}

.lightbox-content img:active {
    cursor: grabbing;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: #ccc;
}

.lightbox-controls {
    margin-top: 20px;
}

.lightbox-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 15px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background 0.3s ease;
}

.lightbox-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
}

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

/* Gallery Grid Improvements */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
    width: 100%;
    max-width: 350px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--background-color);
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--accent-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

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

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--white);
}

.map-wrapper {
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.map-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.map-info-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e5799 100%);
    color: var(--white);
}

.contact-content {
    text-align: center;
}

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

.contact-section .section-title::after {
    background: var(--accent-color);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.contact-method i {
    font-size: 2rem;
    color: var(--accent-color);
}

.contact-method h4 {
    margin-bottom: 0.5rem;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.footer-section ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li i {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    opacity: 0.8;
}

/* Animations - Smoother and faster */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(237, 53, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(237, 53, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(237, 53, 0, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 100px; /* زيادة المساحة في الشاشات المتوسطة */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Phone Highlight Box - Mobile */
    .phone-highlight-box {
        flex-direction: column;
        padding: 1.25rem 1rem;
        gap: 1rem;
        margin: 1.5rem auto;
        width: min(100%, 520px);
        border-width: 2px;
        box-shadow: 0 8px 28px rgba(255, 215, 0, 0.3),
                    0 0 40px rgba(255, 165, 0, 0.25);
    }

    .phone-icon-pulse {
        width: 60px;
        height: 60px;
    }

    .phone-icon-pulse i {
        font-size: 1.5rem;
    }

    .phone-content {
        width: 100%;
    }

    .phone-text {
        text-align: center;
    }

    .phone-label {
        font-size: 0.95rem;
    }

    .phone-number-large {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
    }

    .btn-quote {
        font-size: 0.9rem;
        padding: 0.65rem 1.1rem;
        width: 100%;
        max-width: 420px;
        gap: 0.3rem;
        align-self: center;
    }

    .btn-quote i {
        font-size: 0.9rem;
    }

    /* Countdown Timer - Mobile */
    .countdown-container {
        padding: 1.2rem 1rem;
        margin: 1.5rem auto 1rem;
    }

    .countdown-title {
        font-size: 1.1rem;
    }

    .countdown-item {
        min-width: 65px;
        padding: 0.8rem 0.8rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    /* Testimonials - Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .before-after-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-buttons {
        left: 1rem;
        bottom: 1rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding-top: 90px; /* زيادة المساحة في الشاشات الصغيرة */
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .highlight {
        font-size: 0.9em;
        padding: 0.15em 0.4em;
        display: block;
        text-align: center;
        margin: 0 auto 0.5rem;
        width: fit-content;
        white-space: normal;
        font-weight: 700;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        min-height: 1.5em;
        line-height: 1.3;
    }
    
    .attraction-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .customer-attraction {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Phone Highlight Box - Small Mobile */
    .phone-highlight-box {
        padding: 0.8rem 0.6rem;
        gap: 0.5rem;
        max-width: 95%;
        border-width: 2px;
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(255, 215, 0, 0.25),
                    0 0 22px rgba(255, 165, 0, 0.18);
    }

    .phone-icon-pulse {
        width: 40px;
        height: 40px;
    }

    .phone-icon-pulse i {
        font-size: 1rem;
    }

    .phone-label {
        font-size: 0.75rem;
    }

    .phone-number-large {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    .btn-quote {
        display: inline-flex;
        width: 100%;
        max-width: 360px;
        padding: 0.55rem 0.9rem;
        font-size: 0.85rem;
        gap: 0.3rem;
    }

    /* Show only phone number prominently */
    .phone-content {
        gap: 0.2rem;
    }

    /* Countdown Timer - Small Mobile */
    .countdown-container {
        padding: 0.6rem 0.5rem;
        max-width: 95%;
        margin: 1rem auto 1rem;
        border-radius: 12px;
    }

    .countdown-title {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }

    .countdown-item {
        min-width: 38px;
        padding: 0.3rem 0.2rem;
        border-radius: 6px;
    }

    .countdown-value {
        font-size: 1rem;
    }

    .countdown-label {
        font-size: 0.55rem;
    }

    .countdown-separator {
        font-size: 0.8rem;
        margin: 0 0.1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

/* Featured Image Section */
.featured-image-section {
    padding: 0;
    margin: 0;
    background: transparent;
}

.featured-image-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.featured-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin: 0 auto;
    display: block;
}

.featured-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Animated CTA Button */
.animated-cta {
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s infinite;
    border: 3px solid transparent;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color)) padding-box,
                linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color), var(--accent-color)) border-box;
    background-size: 400% 400%;
    animation: pulseGlow 2s infinite, gradientBorder 3s ease infinite;
}

.animated-cta::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), #00ff88, var(--primary-color));
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: gradientShift 2s ease infinite;
    opacity: 0.8;
}

.animated-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.animated-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 40px rgba(9, 63, 180, 0.4), 0 0 50px rgba(237, 53, 0, 0.3);
}

.animated-cta:hover::after {
    left: 100%;
}

.animated-cta:active {
    transform: translateY(0) scale(1.02);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(9, 63, 180, 0.4), 0 0 40px rgba(237, 53, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(9, 63, 180, 0.8), 0 0 60px rgba(237, 53, 0, 0.5), 0 0 80px rgba(0, 255, 136, 0.3);
        transform: scale(1.02);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

@keyframes gradientBorder {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive Design for Featured Image */
@media (max-width: 768px) {
    .featured-image-section {
        padding: 0;
        margin: 0;
    }
    
    .featured-image {
        max-width: 100%;
        margin: 0 auto;
    }
}
