/* General Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.7; background: #fff; }
.container { width: 85%; max-width: 1200px; margin: 0 auto; }

/* Navbar مع اللوجو */
.navbar { background: #000; padding: 15px 0; position: fixed; width: 100%; top: 0; z-index: 1000; transition: 0.4s; }
.navbar-flex { display: flex; justify-content: space-between; align-items: center; }

.logo-container { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { height: 45px; width: auto; object-fit: contain; }
.logo-text { color: #fff; font-size: 1.5rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.logo-text span { color: #888; }

.nav-links { display: flex; list-style: none; }
.nav-links li a { color: #fff; text-decoration: none; margin-left: 30px; font-size: 0.85rem; letter-spacing: 1px; transition: 0.3s; }
.nav-links li a:hover { color: #ccc; }

/* Hero Section */
.hero-section { height: 100vh; background: url('pic1.png.jpg') no-repeat center center/cover; position: relative; }
.hero-overlay { height: 100%; background: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 5rem; letter-spacing: 10px; margin-bottom: 10px; }
.hero-content h3 { font-size: 2rem; font-weight: 300; letter-spacing: 5px; margin-bottom: 20px; }
.hero-line { width: 80px; height: 4px; background: #fff; margin: 30px auto 0; }

/* About Section */
.about-section { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { height: 550px; background: url('pic2.png.jpg') no-repeat center center/cover; box-shadow: 30px 30px 0px #f4f4f4; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 30px; }
blockquote { border-left: 5px solid #000; padding-left: 20px; font-style: italic; margin-top: 30px; font-size: 1.1rem; }

/* Services Section */
.services-section { padding: 100px 0; background: #f9f9f9; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.service-card { background: #fff; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.card-img { height: 250px; background-size: cover; background-position: center; }
.card-body { padding: 40px; position: relative; }
.card-body span { font-size: 3rem; font-weight: 700; color: #f0f0f0; position: absolute; top: 10px; right: 20px; }

/* Footer Section */
.footer-section { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; }
.footer-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('pic6.png.jpg') no-repeat center center/cover; z-index: 1; }
.footer-card { position: relative; z-index: 2; background: rgba(255, 255, 255, 0.98); padding: 70px; width: 100%; max-width: 550px; text-align: center; box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
.footer-divider { width: 50px; height: 2px; background: #000; margin: 30px auto; }

/* Responsive */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3rem; }
}