/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #f3f4f6;
    background-color: #181c24;
    direction: rtl;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f3f4f6;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #e5e7eb;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #fff;
    color: #181c24;
    border: none;
}

.btn-primary:hover {
    background: #181c24;
    color: #fff;
    box-shadow: 0 8px 25px rgba(24, 28, 36, 0.15);
}

.btn-secondary {
    background: #fff;
    color: #181c24;
    border: 2px solid #181c24;
}

.btn-secondary:hover {
    background: #181c24;
    color: #fff;
    border-color: #181c24;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background: #232a36;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Gem Logo Styles */
.logo {
    width: 45px;
    height: 45px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a8d5ba 0%, #7c9885 25%, #5a7c65 50%, #4a6b55 75%, #7c9885 100%);
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    box-shadow: 
        0 0 20px rgba(124, 152, 133, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    animation: gemSparkle 3s ease-in-out infinite;
}

.logo::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    z-index: 1;
}

@keyframes gemSparkle {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(124, 152, 133, 0.4),
            inset 0 2px 4px rgba(255, 255, 255, 0.3),
            inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(124, 152, 133, 0.6),
            0 0 40px rgba(168, 213, 186, 0.3),
            inset 0 2px 6px rgba(255, 255, 255, 0.4),
            inset 0 -2px 6px rgba(0, 0, 0, 0.3);
    }
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #f3f4f6;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #4f8cff;
    background: rgba(79, 140, 255, 0.08);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    /* background: #181c24; */
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 28, 36, 0.7);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #f3f4f6;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #181c24;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #f3f4f6;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #f3f4f6;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: #232a36;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    color: #f3f4f6;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c9885, #5a7c65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    color: #f3f4f6;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #f3f4f6;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: #232a36;
    color: #f3f4f6;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: #232a36;
    color: #f3f4f6;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Styles */
.gallery {
    padding: 4rem 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px #fff(88, 50, 50, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px #fff(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: none;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, #fff(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(0);
    transition: none;
}

.gallery-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
    animation: zoom 0.3s;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover {
    color: #bbb;
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
}

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

.contact-info h2,
.map-section h2 {
    margin-bottom: 2rem;
    color: #ffffff;
}

.contact-cards {
    margin-bottom: 2rem;
}

.contact-card,
.contact-card.phone,
.contact-card.location,
.contact-card.email,
.working-hours {
    background: #232a36 !important;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.18);
    transition: transform 0.3s ease;
    color: #f3f4f6;
}

.contact-card:hover {
    transform: translateY(-2px);
}

.contact-card.phone,
.contact-card.location {
    background: #232a36;
}

.contact-card.email {
    background: linear-gradient(135deg, rgba(74, 85, 104, 0.1), rgba(74, 85, 104, 0.05));
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    background: #232a36;
}

.contact-card.phone .contact-icon,
.contact-card.email .contact-icon,
.contact-card.location .contact-icon {
    background: #232a36;
    color: #fff;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #f3f4f6;
}

.contact-details p {
    margin: 0;
    color: #f3f4f6;
}

.working-hours {
    background: linear-gradient(135deg, #4a5568, #4a5568);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
}

.working-hours h3 {
    margin-bottom: 1rem;
    color: white;
}

.working-hours p {
    margin: 0;
    opacity: 0.9;
    color: white;
}

/* Map Section Styles */
.map-container {
    background: #232a36;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    color: #f3f4f6;
}

.map-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
}

.map-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c9885, #5a7c65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.map-placeholder h3 {
    color: white;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: white;
    margin-bottom: 2rem;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.location-features {
    background: #232a36;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.18);
    backdrop-filter: blur(10px);
    color: #f3f4f6;
}

.location-features h3 {
    color: #f3f4f6;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.feature-item i {
    color: #a8d5ba;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: #f3f4f6;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #181c24;
    color: #f3f4f6;
    padding: 3rem 0;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    margin: 0;
    font-size: 1.5rem;
}

.footer-desc {
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
}

.contact-item i {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    color: #999;
}

.footer-bottom p {
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #232a36;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-link {
        color: #fff;
    }
    .nav-link:hover,
    .nav-link.active {
        color: #4f8cff;
        background: rgba(79, 140, 255, 0.08);
    }
    .nav-toggle {
        display: flex;
    }
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 15px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .modal-content {
        width: 95%;
    }
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    .map-placeholder {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .nav-container {
        padding: 1rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    .contact-card {
        padding: 1rem;
    }
    .map-placeholder {
        padding: 1.5rem 1rem;
    }
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #232a36;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4f8cff;
}

/* لون واتساب عند المرور */
.social-icons {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  color: #fff;
  font-size: 24px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #4f8cff;
}

/* اراء العملاء  */
 .testimonials {
      background: #232a36;
      padding: 50px 20px;
      text-align: center;
      color: #f3f4f6;
    }
    
    .testimonial-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    
    .testimonial {
      background: #181c24;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      color: #f3f4f6;
    }
    
    .testimonial-text {
      font-style: italic;
      margin-bottom: 15px;
      text-align: center;
    }
    
    .testimonial-author {
      font-weight: bold;
      color: #a8d5ba;
    }


/* الاسئلة  */
  .faq-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      color: #f3f4f6;
    }
    
    .faq-item {
      margin-bottom: 15px;
      border: 1px solid #4f8cff;
      border-radius: 8px;
      overflow: hidden;
      background: #232a36;
    }
    
    .faq-question {
      padding: 15px;
      background: #232a36;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #f3f4f6;
    }
    
    .faq-answer {
      padding: 15px;
      background: #232a36;
      display: none;
      color: #f3f4f6;
    }
    
    .faq-question i {
      transition: transform 0.3s;
    }
    
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    
    .faq-item.active .faq-answer {
      display: block;
    }

/* Navbar Logo */
.navbar-logo {
  height: 65px;    /* ارتفاع مناسب */
  width: 100px;     /* عرض مناسب */
  object-fit: contain;
  margin-right: 10px; /* مسافة بسيطة بين اللوجو والنص */
  vertical-align: middle;
}

/* Booking Terms Section */
.terms-section {
    background: #232a36;
    padding: 3rem 0 2rem 0;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}
.terms-container {
    max-width: 700px;
    margin: 0 auto;
    background: #181c24;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1), 0 1.5px 6px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #f3f4f6;
}
.terms-title {
    text-align: center;
    color: #f3f4f6;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}
.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.terms-list li {
    position: relative;
    padding-right: 2.2em;
    margin-bottom: 1.1em;
    font-size: 1.08rem;
    color: #f3f4f6;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    padding-left: 1em;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}
.terms-list li:before {
    content: "\f058";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #4f8cff;
    position: absolute;
    right: 0.7em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1em;
}
@media (max-width: 600px) {
  .terms-container {
    padding: 1.2rem 0.5rem;
  }
  .terms-title {
    font-size: 1.3rem;
  }
  .terms-list li {
    font-size: 0.98rem;
    padding-right: 2em;
  }
}