/* --- Global Variables & Styles --- */
:root {
    --primary-color: #d4a373;
    --secondary-color: #F2881F;
    --dark-color: #000000;
    --light-color: #ffffff;
    --text-light: #cccccc;
    --text-color: #343030;
    --bg-light: #1a1a1a;
    --card-bg: rgba(52, 48, 48, 0.8);
    --overlay: rgba(0,0,0,0.45);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--dark-color);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* --- Section Separator --- */
section {
    padding: 90px 0 80px;
    position: relative;
}
section:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--light-color);
    font-weight: 900;
}
.section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* --- Mobile Menu --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background-color: var(--bg-light);
    z-index: 999;
    padding: 30px;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
}
.mobile-nav.is-open {
    right: 0;
}
.mobile-nav .close-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    color: var(--light-color);
    cursor: pointer;
}
.mobile-nav .logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}
.mobile-nav ul {
    list-style: none;
}
.mobile-nav li {
    margin-bottom: 20px;
}
.mobile-nav a {
    color: var(--light-color);
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav a:hover {
    color: var(--primary-color);
    padding-right: 10px;
}

/* --- Header --- */
.main-header {
    background-color: var(--dark-color);
    padding: 20px 0; /* --- MODIFIED ---: Increased padding for more space */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: padding 0.4s ease;
}

.main-header.scrolled {
    padding: 15px 0; /* --- MODIFIED ---: Adjusted scrolled padding to match */
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
}
.logo img {
    max-height: 75px; /* --- MODIFIED ---: Increased from 50px to 75px */
    width: auto; /* --- ADDED ---: To maintain aspect ratio */
    vertical-align: middle;
    transition: all 0.3s ease; /* --- ADDED ---: Smooth transition */
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}
.main-nav a:hover {
    color: var(--primary-color);
}

.cta-button {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1001;
}

/* --- Header Separator --- */
.header-separator {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 100%;
    margin-top: 80px; /* Adjust based on header height */
}

/* --- Hero Section --- */
.hero-section {
    height: calc(100vh - 81px); /* Adjust based on header height */
    display: flex;
    position: relative;
    padding: 0;
}

.hero-content {
    width: 50%;
    background-color: var(--dark-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 60px;
    text-align: right;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--light-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image-slider {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.hero-image-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-image-slider .swiper-slide {
    background-size: cover;
    background-position: center;
}

/* --- About Section --- */
.about-section {
    background-color: var(--bg-light);
    color: var(--text-light);
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-text h2 { font-size: 2rem; margin-bottom: 20px; color: var(--light-color); }
.about-text p { font-size: 1.1rem; margin-bottom: 20px; }
.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}
.feature-box h4 { font-weight: 700; color: var(--light-color); }
.feature-box p { font-size: 0.9rem; }

/* --- Services Section --- */
.services-section {
    text-align: center;
    background-color: var(--dark-color);
}
.counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.counter-box {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
}
.counter-box h3 {
    font-size: 2.5rem;
    font-weight: 900;
}
.counter-box p {
    font-size: 1.1rem;
    font-weight: 600;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    color: var(--light-color);
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.06);
}
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.55));
    backdrop-filter: blur(2px);
    transition: background 0.3s ease;
    z-index: 0;
}
.service-card .service-content {
    position: relative;
    z-index: 2;
    text-align: right;
}
.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--light-color);
    text-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.service-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 18px;
}
.service-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--light-color);
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.service-card:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.45));
}
.service-card .read-more i { transform: translateX(0); transition: transform .25s ease; }
.service-card:hover .read-more i { transform: translateX(-6px); }

/* ===================================
   GALLERY SECTION - SWIPER SLIDER
   كما في التصميم الأصلي بالضبط
   =================================== */

/* --- Gallery Section --- */
.gallery-section {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.gallery-slider {
    padding: 20px 0 60px;
    position: relative;
}

.gallery-slider .swiper {
    padding: 20px 0 40px;
}

.gallery-slider .swiper-wrapper {
    align-items: center;
}

.gallery-slider .swiper-slide {
    background-position: center;
    background-size: cover;
    border-radius: 12px;
    overflow: hidden;
    width: 300px; /* حجم مناسب للأجهزة المحمولة */
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.gallery-slider .swiper-slide:hover {
    transform: scale(1.05);
}

.gallery-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Swiper Navigation - كما في التصميم الأصلي */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px;
    font-weight: bold;
}

/* Swiper Pagination - كما في التصميم الأصلي */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary-color);
}

/* Coverflow Effect - كما في التصميم الأصلي */
.gallery-slider .swiper-slide {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.gallery-slider .swiper-slide-active {
    transform: scale(1);
}

/* Responsive Design - كما في التصميم الأصلي */
@media (max-width: 768px) {
    .gallery-slider .swiper-slide {
        width: 260px;
        height: 360px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .gallery-slider .swiper-slide {
        width: 220px;
        height: 320px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* --- Articles Section --- */
.articles-section {
    background-color: var(--dark-color);
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.article-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.article-card-content {
    padding: 25px;
}
.article-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--light-color);
}
.article-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
}
.read-more {
    font-weight: 600;
    color: var(--primary-color);
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--bg-light);
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
.contact-icon:hover {
    transform: scale(1.1);
}
.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--light-color);
    font-weight: 600;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--light-color);
    font-family: 'Cairo', sans-serif;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.submit-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}
.submit-btn:hover {
    transform: translateY(-3px);
}

/* --- CTA Section --- */
#cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}
#cta-section h2 {
    font-size: 2.5rem;
    color: var(--light-color);
    font-weight: 900;
    margin-bottom: 15px;
}
#cta-section p {
    font-size: 1.2rem;
    color: var(--light-color);
    max-width: 600px;
    margin: 0 auto 40px;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-buttons .cta-button {
    background-color: var(--light-color);
    color: var(--primary-color);
    font-size: 1.1rem;
}
.cta-buttons .cta-button:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}

/* --- Footer --- */
.main-footer {
    background-color: #111111;
    color: var(--text-light);
    padding: 60px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-about h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.footer-about p {
    line-height: 1.8;
}
.footer-column h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column a {
    color: var(--text-light);
}
.footer-column a:hover {
    color: var(--primary-color);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}
.footer-bottom a {
    color: var(--secondary-color);
}

/* --- Floating Buttons --- */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
}
.floating-btn:hover {
    transform: scale(1.1);
}
.phone-btn { background-color: #0078ff; }
.messenger-btn { background-color: #0084ff; }
.whatsapp-btn { background-color: #25D366; }
.scroll-top-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}
.floating-btn .tooltip {
    position: absolute;
    right: 70px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.floating-btn:hover .tooltip {
    opacity: 1;
}

/* --- Lightbox Styles --- */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow: auto;
}
.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    margin: 0 auto;
    border-radius: 8px;
}
.lightbox-caption {
    color: var(--light-color);
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--light-color);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: var(--light-color);
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.lightbox-next {
    right: 25px;
    border-radius: 3px 0 0 3px;
}
.lightbox-prev {
    left: 25px;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .main-nav { display: none; }
    .mobile-menu-toggle { display: block; }
    .hero-content { padding: 0 30px; }
    .hero-content h1 { font-size: 3rem; }
    .about-container { grid-template-columns: 1fr; text-align: center; }
    .about-image { order: -1; }
    .features-grid { grid-template-columns: 1fr; }
    .counters, .services-grid, .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { height: 260px; padding: 18px; }
    .contact-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-section { flex-direction: column; }
    .hero-content, .hero-image-slider { width: 100%; height: 50%; }
    .hero-content { text-align: center; align-items: center; }
    .gallery-slider .swiper-slide { width: 260px; height: 360px; }
    .floating-buttons { bottom: 20px; left: 20px; }
    .floating-btn { width: 50px; height: 50px; font-size: 1.2rem; }
}

@media (max-width: 576px) {
    .section-title h2 { font-size: 2rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.2rem; }
    .counters, .services-grid, .articles-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .gallery-slider .swiper-slide { width: 220px; height: 320px; }
    .contact-form { padding: 20px; }
    #cta-section h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* Page Header for non-home pages */
.page-header {
    background-color: var(--dark-color);
    padding: 50px 0 30px;
    text-align: center;
}
.page-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
	
	/* --- Service Detail Page Styles --- */
.service-detail-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.service-detail-grid .service-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-detail-grid .service-info h1 {
    color: var(--light-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-meta {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-meta p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-meta i {
    color: var(--primary-color);
    margin-left: 10px;
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.service-features h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    color: var(--text-light);
    padding: 8px 0;
    font-size: 1.05rem;
}

.service-features ul li i {
    color: #28a745;
    margin-left: 10px;
}

.service-cta {
    margin-top: 40px;
}

/* Responsive Design for Service Detail */
@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .service-detail-grid .service-info h1 {
        font-size: 2rem;
    }
}
	
}


/* ==================== Contact Page Styles ==================== */

/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.info-card {
    background: var(--card-bg);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 163, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--primary-color);
}

.info-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.info-card h3 {
    color: var(--light-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Contact & Map Section */
.contact-map-section {
    padding: 80px 0;
    background-color: var(--dark-color);
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-container,
.map-container {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.section-header h2 {
    color: var(--light-color);
    margin-bottom: 12px;
    font-size: 1.8rem;
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

.section-header.center {
    text-align: center;
}

/* Contact Form */
.contact-form {
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    color: var(--light-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--light-color);
    font-family: 'Cairo', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    border: none;
    padding: 16px 45px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 163, 115, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--light-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Map Section */
.map-wrapper {
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.location-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 22px;
    border-radius: 10px;
    border-right: 4px solid var(--primary-color);
}

.location-details h4 {
    color: var(--light-color);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.location-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-details li {
    padding: 10px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.location-details li:last-child {
    border-bottom: none;
}

.location-details li i {
    color: var(--primary-color);
    width: 18px;
    font-size: 1rem;
}

/* Social Media Section */
.social-media-section {
    padding: 70px 0;
    background-color: var(--bg-light);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 20px;
    background: var(--card-bg);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    min-width: 110px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    transform: translateY(-8px);
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.3);
}

.social-icon i {
    font-size: 26px;
    margin-bottom: 10px;
}

.social-icon span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--card-bg);
    margin: 10% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close-modal:hover {
    color: var(--light-color);
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 40px 30px;
    text-align: center;
}

.modal-icon-wrapper {
    margin-bottom: 25px;
}

.success-icon {
    font-size: 70px;
    color: #27ae60;
}

.error-icon {
    font-size: 70px;
    color: #e74c3c;
}

.modal-title {
    color: var(--light-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.modal-message {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-btn {
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 14px 35px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.modal-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-container,
    .map-container {
        padding: 25px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        min-width: 90px;
        padding: 18px 15px;
    }
    
    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .contact-info-section,
    .contact-map-section,
    .social-media-section {
        padding: 40px 0;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
}

/* Services Specific Styles */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}