 :root {
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --gold-dark: #9a7a2e;
      --brown-deep: #1a0f05;
      --brown-rich: #3d1f08;
      --cream: #f5ead8;
      --cream-dark: #e8d5b7;
      --bg: #0e0804;
      --section-dark: #0e0804;
      --section-mid: #130a03;
      --section-cream: #1e1008;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Tajawal', sans-serif;
      background: var(--bg);
      color: var(--cream);
      overflow-x: hidden;
    }

    /* ===== NOISE TEXTURE OVERLAY ===== */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
       background-image: url("data:image/svg+xml,...");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      background: rgba(14, 8, 4, 0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(201, 168, 76, 0.2);
      padding: 1rem 0;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      transition: all 0.4s ease;
    }

    .navbar.scrolled {
      padding: 0.6rem 0;
      box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    }

    .navbar-brand {
      font-family: 'Amiri', serif;
      font-size: 1.6rem;
      color: var(--gold) !important;
      text-decoration: none;
      letter-spacing: 1px;
    }

    .navbar-brand span {
      color: var(--cream);
    }

    .nav-link {
      color: var(--cream-dark) !important;
      font-weight: 500;
      font-size: 0.95rem;
      padding: 0.4rem 1rem !important;
      transition: color 0.3s;
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 1rem;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.3s ease;
    }

    .nav-link:hover { color: var(--gold) !important; }
    .nav-link:hover::after { width: calc(100% - 2rem); }

    .btn-nav {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--brown-deep) !important;
      border-radius: 4px;
      font-weight: 700;
      padding: 0.4rem 1.2rem !important;
      transition: all 0.3s ease;
      box-shadow: 0 2px 12px rgba(201,168,76,0.3);
    }

    .btn-nav:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(201,168,76,0.5);
    }

    /* ===== HERO ===== */
 .hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;

  background: url(./images/hero-coffee.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to left, rgba(14,8,4,0.3) 0%, rgba(14,8,4,0.75) 50%, rgba(14,8,4,0.92) 100%);
      z-index: 0;
    }
    .hero > * { position: relative; z-index: 1; }

    .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 40%);
    }

    .hero-ornament {
      position: absolute;
      right: -5%;
      top: 50%;
      transform: translateY(-50%);
      width: 55%;
      max-width: 700px;
      opacity: 0.12;
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.35);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 0.82rem;
      color: var(--gold-light);
      margin-bottom: 1.5rem;
      animation: fadeUp 0.8s ease forwards;
    }

    .hero-badge::before {
      content: '◈';
      color: var(--gold);
    }

    .hero h1 {
      font-family: 'Amiri', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      line-height: 1.15;
      color: var(--cream);
      margin-bottom: 0.5rem;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero h1 span {
      color: var(--gold);
      display: block;
    }

    .hero-sub {
      font-size: 1.1rem;
      color: rgba(245,234,216,0.65);
      line-height: 1.8;
      max-width: 520px;
      margin-bottom: 2.5rem;
      animation: fadeUp 0.8s 0.4s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      animation: fadeUp 0.8s 0.6s ease both;
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
      color: var(--brown-deep);
      font-weight: 700;
      font-size: 1rem;
      padding: 0.8rem 2rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(201,168,76,0.4);
      text-decoration: none;
      display: inline-block;
    }

    .btn-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(201,168,76,0.6);
      color: var(--brown-deep);
    }

    .btn-outline-gold {
      background: transparent;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.5);
      font-weight: 600;
      font-size: 1rem;
      padding: 0.8rem 2rem;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-outline-gold:hover {
      background: rgba(201,168,76,0.1);
      border-color: var(--gold);
      color: var(--gold-light);
      transform: translateY(-3px);
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 3.5rem;
      animation: fadeUp 0.8s 0.8s ease both;
    }

    .hero-stat h3 {
      font-family: 'Amiri', serif;
      font-size: 2rem;
      color: var(--gold);
      margin: 0;
    }

    .hero-stat p {
      font-size: 0.82rem;
      color: rgba(245,234,216,0.5);
      margin: 0;
    }

    /* ===== DIVIDER ===== */
    .gold-divider {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin: 1rem 0 3rem;
    }

    .gold-divider::before,
    .gold-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
    }

    .gold-divider span {
      color: var(--gold);
      font-size: 1.2rem;
    }

    /* ===== SECTION TITLE ===== */
    .section-label {
      font-size: 0.78rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-family: 'Amiri', serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      color: var(--cream);
      margin-bottom: 1rem;
    }

    .section-desc {
      color: rgba(245,234,216,0.5);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 580px;
    }

    /* ===== SERVICES ===== */
    #services {
      padding: 7rem 0;
      background: linear-gradient(180deg, var(--bg) 0%, #150c04 50%, var(--bg) 100%);
      position: relative;
    }

    .service-card {
      background: linear-gradient(145deg, rgba(61,31,8,0.4), rgba(20,12,4,0.6));
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 8px;
      padding: 2rem;
      height: 100%;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 3px;
      height: 0;
      background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
      transition: height 0.4s ease;
    }

    .service-card:hover {
      border-color: rgba(201,168,76,0.4);
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .service-card:hover::before { height: 100%; }

    .service-icon {
      width: 56px;
      height: 56px;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.2rem;
      color: var(--gold);
    }

    .service-card h4 {
      font-family: 'Amiri', serif;
      font-size: 1.3rem;
      color: var(--cream);
      margin-bottom: 0.7rem;
    }

    .service-card p {
      color: rgba(245,234,216,0.5);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    /* ===== WHY US ===== */
    #why {
      padding: 7rem 0;
      position: relative;
    }

    .why-card {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
      margin-bottom: 2rem;
    }

    .why-num {
      font-family: 'Amiri', serif;
      font-size: 2.5rem;
      color: rgba(201,168,76,0.2);
      line-height: 1;
      min-width: 50px;
    }

    .why-content h5 {
      font-family: 'Amiri', serif;
      font-size: 1.15rem;
      color: var(--cream);
      margin-bottom: 0.3rem;
    }

    .why-content p {
      color: rgba(245,234,216,0.5);
      font-size: 0.88rem;
      line-height: 1.7;
    }

    .why-visual {
      background: linear-gradient(145deg, rgba(61,31,8,0.5), rgba(10,6,2,0.8));
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 12px;
      padding: 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .why-visual-inner {
      font-size: 8rem;
      line-height: 1;
      margin-bottom: 1rem;
      filter: drop-shadow(0 0 30px rgba(201,168,76,0.3));
      animation: float 4s ease-in-out infinite;
    }

    .why-visual h3 {
      font-family: 'Amiri', serif;
      font-size: 1.6rem;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }

    .why-visual p {
      color: rgba(245,234,216,0.5);
      font-size: 0.9rem;
    }

    /* ===== PACKAGES ===== */
    #packages {
      padding: 7rem 0;
      background: linear-gradient(180deg, var(--bg) 0%, #150c04 100%);
    }

    .pkg-card {
      background: linear-gradient(145deg, rgba(61,31,8,0.4), rgba(20,12,4,0.6));
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 10px;
      padding: 2.5rem;
      height: 100%;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .pkg-card.featured {
      border-color: rgba(201,168,76,0.5);
      background: linear-gradient(145deg, rgba(61,31,8,0.6), rgba(30,15,4,0.8));
    }

    .pkg-card.featured::before {
      content: 'الأكثر طلباً';
      position: absolute;
      top: 16px;
      left: 16px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--brown-deep);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 12px;
      border-radius: 50px;
    }

    .pkg-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px rgba(0,0,0,0.5);
      border-color: rgba(201,168,76,0.4);
    }

    .pkg-name {
      font-family: 'Amiri', serif;
      font-size: 1.5rem;
      color: var(--cream);
      margin-bottom: 0.3rem;
    }

    .pkg-price {
      font-family: 'Amiri', serif;
      font-size: 2.5rem;
      color: var(--gold);
      margin: 1rem 0;
    }

    .pkg-price span {
      font-size: 1rem;
      color: rgba(245,234,216,0.4);
    }

    .pkg-features {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0 2rem;
    }

    .pkg-features li {
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(201,168,76,0.08);
      font-size: 0.9rem;
      color: rgba(245,234,216,0.65);
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }

    .pkg-features li::before {
      content: '◈';
      color: var(--gold);
      font-size: 0.6rem;
      flex-shrink: 0;
    }

    /* ===== TESTIMONIALS ===== */
    #reviews {
      padding: 7rem 0;
    }

    .review-card {
      background: linear-gradient(145deg, rgba(61,31,8,0.35), rgba(14,8,4,0.7));
      border: 1px solid rgba(201,168,76,0.12);
      border-radius: 10px;
      padding: 2rem;
      height: 100%;
      transition: all 0.3s ease;
    }

    .review-card:hover {
      border-color: rgba(201,168,76,0.3);
      transform: translateY(-4px);
    }

    .stars {
      color: var(--gold);
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    .review-text {
      color: rgba(245,234,216,0.65);
      font-size: 0.92rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .reviewer {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .reviewer-avatar {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Amiri', serif;
      font-size: 1.2rem;
      color: var(--brown-deep);
      font-weight: 700;
    }

    .reviewer-info h6 {
      font-size: 0.9rem;
      color: var(--cream);
      margin: 0;
    }

    .reviewer-info small {
      color: rgba(245,234,216,0.4);
      font-size: 0.78rem;
    }

    /* ===== CONTACT ===== */
    #contact {
      padding: 7rem 0;
      background: linear-gradient(180deg, var(--bg) 0%, #150c04 100%);
    }

    .contact-form-wrap {
      background: linear-gradient(145deg, rgba(61,31,8,0.35), rgba(14,8,4,0.7));
      border: 1px solid rgba(201,168,76,0.18);
      border-radius: 12px;
      padding: 3rem;
    }

    .form-label {
      color: rgba(245,234,216,0.7);
      font-size: 0.88rem;
      font-weight: 500;
      margin-bottom: 0.4rem;
    }

    .form-control, .form-select {
      background: rgba(20,12,4,0.8);
      border: 1px solid rgba(201,168,76,0.2);
      color: var(--cream);
      border-radius: 6px;
      padding: 0.75rem 1rem;
      transition: all 0.3s ease;
    }

    .form-control:focus, .form-select:focus {
      background: rgba(30,18,6,0.9);
      border-color: rgba(201,168,76,0.6);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
      color: var(--cream);
    }

    .form-control::placeholder { color: rgba(245,234,216,0.3); }

    .form-select option { background: rgba(20,12,4,0.8); color: var(--cream); }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.2rem;
      text-decoration: none;
  

    }

    .contact-icon {
      width: 46px;
      height: 46px;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
            text-decoration: none;

    }

    .contact-info-item h6 {
      color: var(--gold);
      font-size: 0.82rem;
      margin-bottom: 0.2rem;
      letter-spacing: 1px;
    }

    .contact-info-item p {
      color: rgba(245,234,216,0.65);
      font-size: 0.9rem;
      margin: 0;
    }

    /* ===== FOOTER ===== */
    footer {
      background: #050301;
      border-top: 1px solid rgba(201,168,76,0.12);
      padding: 3rem 0 1.5rem;
    }

    .footer-brand {
      font-family: 'Amiri', serif;
      font-size: 1.5rem;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }

    .footer-desc {
      color: rgba(245,234,216,0.4);
      font-size: 0.85rem;
      line-height: 1.7;
      max-width: 280px;
    }

    .footer-title {
      color: var(--gold);
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .footer-links { list-style: none; padding: 0; }

    .footer-links li { margin-bottom: 0.6rem; }

    .footer-links a {
      color: rgba(245,234,216,0.4);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.3s;
    }

    .footer-links a:hover { color: var(--gold); }

    .footer-bottom {
      border-top: 1px solid rgba(201,168,76,0.08);
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      color: rgba(245,234,216,0.25);
      font-size: 0.8rem;
      text-align: center;
    }


    /* ===== SECTION BACKGROUNDS ===== */
    /* Services - slightly warm dark with cream tint */
    #services {
      background: linear-gradient(160deg, #110904 0%, #1a0e06 40%, #0f0703 100%) !important;
    }
    /* Why - darker with golden warmth */
    #why {
      background: linear-gradient(135deg, #0c0602 0%, #1d1007 50%, #0a0501 100%) !important;
    }
    /* Packages - mid tone warm */
    #packages {
      background: linear-gradient(160deg, #170b04 0%, #0e0702 50%, #1a0d05 100%) !important;
    }
    /* Reviews - subtle cream-dark */
    #reviews {
      background: linear-gradient(135deg, #0b0603 0%, #160c05 40%, #0e0804 100%) !important;
    }
    /* Gallery - deepest dark */
    #gallery {
      background: linear-gradient(160deg, #090401 0%, #140a03 50%, #0b0602 100%) !important;
    }
    /* Portfolio - warm mid */
    #portfolio {
      background: linear-gradient(135deg, #130804 0%, #0e0702 50%, #1c1007 100%) !important;
    }
    /* Contact - rich brown warmth */
    #contact {
      background: linear-gradient(160deg, #0e0804 0%, #1a0d05 40%, #100905 100%) !important;
    }

    /* Service cards - cream-tinted dark */
    .service-card {
      background: linear-gradient(145deg, rgba(245,220,180,0.04), rgba(20,12,4,0.7)) !important;
      border: 1px solid rgba(201,168,76,0.18) !important;
    }
    /* Review cards */
    .review-card {
      background: linear-gradient(145deg, rgba(245,220,180,0.05), rgba(14,8,4,0.75)) !important;
    }
    /* Pkg cards */
    .pkg-card {
      background: linear-gradient(145deg, rgba(245,220,180,0.04), rgba(10,6,2,0.8)) !important;
    }
    .pkg-card.featured {
      background: linear-gradient(145deg, rgba(201,168,76,0.1), rgba(30,15,4,0.85)) !important;
    }
    /* Contact form */
    .contact-form-wrap {
      background: linear-gradient(145deg, rgba(245,220,180,0.05), rgba(14,8,4,0.75)) !important;
    }
    /* Why visual */
    .why-visual {
      background: linear-gradient(145deg, rgba(245,220,180,0.06), rgba(10,6,2,0.85)) !important;
    }
    /* Portfolio cards */
    .portfolio-card {
      background: linear-gradient(145deg, rgba(245,220,180,0.04), rgba(14,8,4,0.8)) !important;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== TOAST ===== */
    .toast-container {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 9000;
    }

    .toast-msg {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--brown-deep);
      font-weight: 700;
      padding: 1rem 2rem;
      border-radius: 8px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.5);
      display: none;
      white-space: nowrap;
    }

    .toast-msg.show {
      display: block;
      animation: fadeUp 0.4s ease forwards;
    }

    /* ===== GALLERY ===== */
    #gallery {
      padding: 7rem 0;
      background: linear-gradient(180deg, #150c04 0%, var(--bg) 100%);
    }

    .gallery-filter {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 2.5rem;
    }

    .filter-btn {
      background: transparent;
      border: 1px solid rgba(201,168,76,0.25);
      color: rgba(245,234,216,0.6);
      padding: 0.4rem 1.2rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-family: 'Tajawal', sans-serif;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .filter-btn.active, .filter-btn:hover {
      background: rgba(201,168,76,0.15);
      border-color: var(--gold);
      color: var(--gold);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto;
      gap: 12px;
    }

    .gallery-item {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 1;
      background: #050301;
      border: 1px solid rgba(201,168,76,0.1);
      transition: all 0.4s ease;
    }

    .gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
    .gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }

    .gallery-item:hover {
      border-color: rgba(201,168,76,0.4);
      transform: scale(1.02);
      box-shadow: 0 12px 40px rgba(0,0,0,0.6);
      z-index: 2;
    }

    .gallery-thumb {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
      transition: all 0.4s ease;
      position: relative;
    }

    .gallery-thumb::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(14,8,4,0.85) 0%, transparent 60%);
    }

    .gallery-item:hover .gallery-thumb { transform: scale(1.08); }

    .gallery-label {
      position: absolute;
      bottom: 0;
      right: 0;
      left: 0;
      padding: 1rem;
      z-index: 2;
      transform: translateY(6px);
      opacity: 0;
      transition: all 0.3s ease;
    }

    .gallery-item:hover .gallery-label { transform: translateY(0); opacity: 1; }

    .gallery-label h6 {
      font-family: 'Amiri', serif;
      font-size: 1rem;
      color: var(--cream);
      margin: 0 0 2px;
    }

    .gallery-label small { color: var(--gold); font-size: 0.75rem; }

    .gallery-zoom {
      position: absolute;
      top: 10px;
      left: 10px;
      width: 34px;
      height: 34px;
      background: rgba(201,168,76,0.2);
      border: 1px solid rgba(201,168,76,0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 0.8rem;
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 3;
    }

    .gallery-item:hover .gallery-zoom { opacity: 1; }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 10000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .lightbox.open { display: flex; }

    .lightbox-content {
      background: linear-gradient(145deg, rgba(61,31,8,0.9), rgba(14,8,4,0.95));
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 12px;
      padding: 3rem;
      max-width: 500px;
      width: 100%;
      text-align: center;
      position: relative;
      animation: fadeUp 0.3s ease forwards;
    }

    .lightbox-emoji { font-size: 6rem; margin-bottom: 1rem; }

    .lightbox-close {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.3);
      color: var(--gold);
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1rem;
      transition: all 0.3s;
    }

    .lightbox-close:hover { background: rgba(201,168,76,0.25); }

    /* ===== PORTFOLIO ===== */
    #portfolio {
      padding: 7rem 0;
      background: linear-gradient(180deg, var(--bg) 0%, #150c04 100%);
    }

    .portfolio-tabs {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 2.5rem;
    }

    .portfolio-tab {
      background: transparent;
      border: 1px solid rgba(201,168,76,0.2);
      color: rgba(245,234,216,0.5);
      padding: 0.5rem 1.4rem;
      border-radius: 4px;
      font-size: 0.88rem;
      font-family: 'Tajawal', sans-serif;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .portfolio-tab.active, .portfolio-tab:hover {
      background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
      border-color: var(--gold);
      color: var(--gold);
    }

    .portfolio-card {
      background: linear-gradient(145deg, rgba(61,31,8,0.35), rgba(14,8,4,0.7));
      border: 1px solid rgba(201,168,76,0.12);
      border-radius: 10px;
      overflow: hidden;
      transition: all 0.4s ease;
      display: none;
    }

    .portfolio-card.visible-card { display: block; }

    .portfolio-card:hover {
      border-color: rgba(201,168,76,0.35);
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .portfolio-cover {
      height: 200px;
      background: linear-gradient(145deg, rgba(61,31,8,0.8), rgba(10,6,2,0.9));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4.5rem;
      position: relative;
      overflow: hidden;
    }

    .portfolio-cover::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(14,8,4,0.7) 0%, transparent 60%);
    }

    .portfolio-cover-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--brown-deep);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 50px;
      z-index: 2;
    }

    .portfolio-body { padding: 1.5rem; }

    .portfolio-body h5 {
      font-family: 'Amiri', serif;
      font-size: 1.2rem;
      color: var(--cream);
      margin-bottom: 0.4rem;
    }

    .portfolio-body p {
      color: rgba(245,234,216,0.5);
      font-size: 0.85rem;
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    .portfolio-meta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .portfolio-meta span {
      font-size: 0.78rem;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }
    .telefon a{
  color: inherit;
  text-decoration: none;
}


.footer-bottom {
      text-align: center;
      padding: 15px 20px;
      font-size: 18px;
     
      color: var(--gold);
    }

    .footer-bottom a {
      text-decoration: none;
     
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: color 0.3s ease;
    }

   

    .footer-bottom i {
      font-size: 16px;
      color: #FFD700;
      transition: transform 0.3s ease;
    }

    .footer-bottom a:hover i {
      transform: scale(1.2); /* تكبير الأيقونة عند hover */
    }




    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 10px; }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
      .hero-stats { gap: 1.5rem; }
      .hero-ornament { opacity: 0.05; }
      .contact-form-wrap { padding: 1.5rem; }
    }