/* ===== ROOT VARIABLES ===== */
:root {
  --orange: #E87722;
  --orange-dark: #c96010;
  --orange-light: #f5a050;
  
  /* LIGHT THEME VARIABLES */
  --bg-main: #ffffff;
  --bg-alt: #f4f6f9;
  --bg-card: #ffffff;
  
  --text-main: #111111;
  --text-muted: #555555;
  --text-light: #888888;
  
  --pure-white: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --glass: rgba(255, 255, 255, 0.9);

  --font: 'Cairo', sans-serif;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px rgba(232, 119, 34, 0.15);
  --radius: 20px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg-main); color: var(--text-main); direction: rtl; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== CUSTOM CURSOR ===== */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  .custom-cursor {
    position: fixed; top: 0; left: 0; width: 40px; height: 40px; border: 2px solid var(--orange);
    border-radius: 50%; pointer-events: none; z-index: 10000;
    transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, background 0.3s;
    /* mix-blend-mode: difference; */
  }
  .custom-cursor.active { width: 60px; height: 60px; background: rgba(232,119,34,0.1); border-color: transparent; backdrop-filter: blur(2px); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--orange-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 15px 0;
}
.navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 5px 0;
}
.nav-container { display: flex; align-items: center; justify-content: flex-start; gap: 40px; padding: 0 40px; height: 75px; max-width: 1400px; margin: 0 auto; }
.logo-img { height: 55px; object-fit: contain; }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  padding: 10px 16px; border-radius: 10px; font-size: 15px; font-weight: 700;
  color: var(--text-main); transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--orange); background: rgba(232,119,34,0.08); }
.dropdown-menu {
  position: absolute; top: calc(100% + 15px); right: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; min-width: 220px; padding: 12px 0;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: var(--transition); box-shadow: var(--shadow);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 12px 24px; font-size: 14px; font-weight: 600; color: var(--text-muted); transition: var(--transition); }
.dropdown-menu li a:hover { color: var(--orange); background: rgba(232,119,34,0.05); padding-right: 30px; }
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; margin-right: auto; padding: 10px; }
.hamburger span { display: block; width: 28px; height: 2px; background: var(--text-main); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: radial-gradient(circle at top right, rgba(232,119,34,0.08) 0%, var(--bg-alt) 70%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CjxwYXRoIGQ9Ik0wLDBMMjAsMjBNMjAsMEwwLDIwIiBzdHJva2U9IiNFMDg3MjIiIHN0cm9rZS1vcGFjaXR5PSIwLjAzIiBzdHJva2Utd2lkdGg9IjEiLz4KPC9zdmc+') repeat;
  opacity: 0.5; pointer-events: none;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); opacity: 0.2; animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) translateX(100px) rotate(360deg); opacity: 0; }
}
.hero-content { text-align: center; z-index: 2; padding: 0 20px; max-width: 900px; margin-top: 50px; }
.hero-badge {
  display: inline-block; padding: 10px 28px; border-radius: 50px;
  background: var(--pure-white); border: 1px solid rgba(232,119,34,0.2); box-shadow: var(--shadow);
  color: var(--orange); font-size: 14px; font-weight: 700; margin-bottom: 24px;
  animation: fadeDown 0.8s ease;
}
.hero-title {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin-bottom: 24px; animation: fadeDown 1s ease 0.2s both; line-height: 1.25;
}
.hero-brand-name {
  font-size: clamp(40px, 6vw, 76px); font-weight: 900; color: var(--orange); display: block;
}
.hero-company-sub {
  font-size: clamp(20px, 3.2vw, 38px); font-weight: 800; color: var(--text-main); display: block; margin-top: 10px; opacity: 0.95;
}
.brand-orange { color: var(--orange); }
.hero-sub {
  font-size: clamp(16px, 2.5vw, 22px); color: var(--text-muted);
  margin-bottom: 40px; animation: fadeDown 1s ease 0.4s both; font-weight: 600;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; animation: fadeDown 1s ease 0.6s both; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 50px; animation: fadeDown 1s ease 0.8s both; background: var(--pure-white); padding: 25px 40px; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.stat { text-align: center; }
.stat-num { display: block; font-size: 40px; font-weight: 900; color: var(--orange); margin-bottom: 5px; }
.stat-label { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.stat-divider { width: 1px; height: 60px; background: var(--border); }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); }
.scroll-indicator {
  width: 50px; height: 50px; border-radius: 50%; background: var(--pure-white); border: 1px solid var(--border); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); animation: bounce 2s infinite; cursor: pointer; font-size: 20px;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-30px)} to{opacity:1;transform:translateY(0)} }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 50px; font-family: var(--font);
  font-size: 16px; font-weight: 700; cursor: pointer; border: none;
  transition: var(--transition); text-decoration: none; position: relative; overflow: hidden;
}
.btn::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.2); transform: translateX(-100%) skewX(-15deg); transition: 0.5s; }
.btn:hover::after { transform: translateX(100%) skewX(-15deg); }
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: var(--pure-white); box-shadow: 0 10px 25px rgba(232,119,34,0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(232,119,34,0.4); }
.btn-outline { background: var(--pure-white); color: var(--text-main); border: 2px solid var(--border); box-shadow: var(--shadow); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }
.btn-sm { padding: 12px 26px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION ===== */
.section { padding: 120px 0; }
.dark-section { background: var(--bg-alt); }
.container { max-width: 1300px; margin: 0 auto; padding: 0 30px; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-tag {
  display: inline-block; padding: 8px 24px; border-radius: 50px;
  background: rgba(232,119,34,0.1); color: var(--orange);
  font-size: 14px; font-weight: 800; margin-bottom: 20px;
}
.section-header h2 { font-size: clamp(32px, 4vw, 50px); font-weight: 900; margin-bottom: 24px; color: var(--text-main); }
.divider-line { width: 80px; height: 5px; background: linear-gradient(90deg, var(--orange), var(--orange-light)); border-radius: 5px; margin: 0 auto; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { font-size: 18px; line-height: 1.9; color: var(--text-muted); margin-bottom: 24px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.feature { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 700; color: var(--text-main); }
.feature i { color: var(--orange); font-size: 22px; background: rgba(232,119,34,0.1); padding: 10px; border-radius: 50%; }
.about-logo-box {
  display: flex; align-items: center; justify-content: center;
  background: var(--pure-white); border: 1px solid var(--border); box-shadow: var(--shadow);
  border-radius: var(--radius); padding: 60px; position: relative;
}
.about-logo-box::before { content: ''; position: absolute; inset: -20px; background: rgba(232,119,34,0.05); border-radius: 40px; z-index: -1; }
.about-logo { max-height: 300px; filter: drop-shadow(0 20px 40px rgba(232,119,34,0.15)); border-radius: 12px; }

/* ===== SERVICES OVERVIEW ===== */
.services-overview { padding: 80px 0; margin-top: -60px; z-index: 10; position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 24px; text-align: center;
  cursor: pointer; transition: var(--transition); box-shadow: var(--shadow);
}
.service-card:hover { transform: translateY(-12px); border-color: var(--orange); box-shadow: var(--shadow-hover); }
.service-icon { width: 80px; height: 80px; border-radius: 20px; background: rgba(232,119,34,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; transition: var(--transition); }
.service-card:hover .service-icon { background: var(--orange); color: white; }
.service-icon i { font-size: 32px; color: var(--orange); transition: var(--transition); }
.service-card:hover .service-icon i { color: var(--pure-white); }
.service-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--text-main); }
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ===== PROPERTIES ===== */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 50px; justify-content: center; }
.filter-btn {
  padding: 12px 28px; border-radius: 50px; font-family: var(--font);
  font-size: 15px; font-weight: 700; cursor: pointer; border: 1px solid var(--border);
  background: var(--bg-card); color: var(--text-muted); transition: var(--transition); box-shadow: var(--shadow);
}
.filter-btn.active, .filter-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--pure-white); box-shadow: 0 10px 20px rgba(232,119,34,0.2); }
.properties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.prop-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition); cursor: pointer; box-shadow: var(--shadow);
}
.prop-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: rgba(232,119,34,0.3); }
.prop-img {
  height: 220px; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.prop-img i { font-size: 70px; color: rgba(232,119,34,0.15); transition: 0.5s; }
.prop-card:hover .prop-img i { transform: scale(1.2); color: rgba(232,119,34,0.3); }
.prop-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--orange); color: white; font-size: 13px;
  font-weight: 700; padding: 6px 16px; border-radius: 50px; box-shadow: 0 4px 10px rgba(232,119,34,0.3);
}
.prop-body { padding: 24px; }
.prop-type { font-size: 13px; color: var(--orange); font-weight: 800; margin-bottom: 10px; }
.prop-title { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--text-main); }
.prop-loc { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; font-weight: 600; }
.prop-loc i { color: var(--text-light); }
.prop-features { display: flex; gap: 16px; margin-bottom: 20px; background: var(--bg-alt); padding: 12px; border-radius: 12px; }
.prop-feature { font-size: 13px; font-weight: 700; color: var(--text-main); display: flex; align-items: center; gap: 6px; }
.prop-feature i { color: var(--orange); }
.prop-price { font-size: 22px; font-weight: 900; color: var(--orange); }
.prop-footer { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; border-top: 1px solid var(--border); background: var(--bg-card); }
.contact-btn { font-size: 14px; color: var(--text-main); font-weight: 700; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.contact-btn i { color: var(--orange); font-size: 16px; }
.contact-btn:hover { color: var(--orange); }

/* ===== SERVICES DETAIL ===== */
.services-detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.service-detail-card {
  background: var(--bg-card); border: 1px solid var(--border); box-shadow: var(--shadow);
  border-radius: var(--radius); padding: 50px 40px; text-align: center; transition: var(--transition);
}
.service-detail-card:hover { transform: translateY(-10px); border-color: var(--orange); box-shadow: var(--shadow-hover); }
.sd-icon { width: 90px; height: 90px; border-radius: 24px; background: linear-gradient(135deg,var(--orange),var(--orange-dark)); display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; box-shadow: 0 10px 20px rgba(232,119,34,0.3); }
.sd-icon i { font-size: 36px; color: white; }
.service-detail-card h3 { font-size: 22px; font-weight: 900; margin-bottom: 16px; color: var(--text-main); }
.service-detail-card p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 30px; }

/* ===== DESIGN SECTION ===== */
.design-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.design-card {
  background: var(--bg-card); border: 1px solid var(--border); box-shadow: var(--shadow);
  border-radius: var(--radius); padding: 50px 40px; text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}
.design-card::before { content:''; position:absolute; inset:0; background: linear-gradient(135deg, rgba(232,119,34,0.03), transparent); opacity:0; transition: var(--transition); }
.design-card:hover::before { opacity:1; }
.design-card:hover { transform: translateY(-10px); border-color: rgba(232,119,34,0.3); box-shadow: var(--shadow-hover); }
.design-icon { width: 90px; height: 90px; border-radius: 50%; background: rgba(232,119,34,0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; border: 1px solid rgba(232,119,34,0.15); }
.design-icon i { font-size: 36px; color: var(--orange); }
.design-card h3 { font-size: 22px; font-weight: 900; margin-bottom: 16px; color: var(--text-main); }
.design-card p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* ===== PROJECTS ===== */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-bottom: 60px; }
.project-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow); }
.project-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: rgba(232,119,34,0.2); }
.project-thumb { height: 240px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; position: relative; cursor: pointer; }
.project-thumb i { font-size: 70px; color: rgba(232,119,34,0.3); transition: var(--transition); }
.project-overlay { position: absolute; inset: 0; background: rgba(232,119,34,0.9); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); backdrop-filter: blur(4px); }
.project-overlay span { color: white; font-weight: 800; font-size: 18px; }
.project-card:hover .project-overlay { opacity: 1; }
.project-card:hover .project-thumb i { transform: scale(1.1); }
.project-info { padding: 24px; text-align: center; }
.project-info h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--text-main); }
.project-info p { font-size: 14px; color: var(--text-muted); }
.projects-cta { text-align: center; }
.projects-cta p { font-size: 16px; font-weight: 600; color: var(--text-muted); margin-bottom: 24px; }

/* ===== TEAM SECTION ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-card {
  background: var(--bg-card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
  position: relative; border: 1px solid var(--border);
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: rgba(232,119,34,0.2); }
.team-img-box { position: relative; height: 320px; overflow: hidden; }
.team-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.team-card:hover .team-img { transform: scale(1.08); }
.team-social {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex; justify-content: center; gap: 15px;
  transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover .team-social { transform: translateY(0); }
.team-social a { width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: white; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: 0.3s; }
.team-social a:hover { background: var(--pure-white); color: var(--orange); transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.team-info { padding: 25px 20px; text-align: center; }
.team-name { font-size: 20px; font-weight: 800; color: var(--text-main); margin-bottom: 5px; }
.team-role { font-size: 14px; color: var(--orange); font-weight: 700; }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-item { display: flex; gap: 24px; margin-bottom: 40px; align-items: flex-start; }
.ci-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--pure-white); box-shadow: var(--shadow); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.contact-item:hover .ci-icon { background: var(--orange); transform: translateY(-5px); }
.ci-icon i { font-size: 24px; color: var(--orange); transition: var(--transition); }
.contact-item:hover .ci-icon i { color: var(--pure-white); }
.ci-text h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: var(--text-main); }
.ci-text a, .ci-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; font-weight: 600; }
.ci-text a:hover { color: var(--orange); }
.social-links { display: flex; gap: 14px; margin-top: 20px; }
.social-link { width: 46px; height: 46px; border-radius: 50%; background: var(--pure-white); box-shadow: var(--shadow); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-main); font-size: 18px; transition: var(--transition); }
.social-link:hover { background: var(--orange); color: white; transform: translateY(-5px); border-color: var(--orange); }
.contact-form-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 50px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 24px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 16px 20px; border-radius: 12px; font-family: var(--font); font-size: 15px; font-weight: 600;
  background: var(--bg-alt); border: 1px solid var(--border); color: var(--text-main);
  transition: var(--transition); outline: none; direction: rtl;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); background: var(--pure-white); box-shadow: 0 5px 15px rgba(232,119,34,0.1); }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-main); padding: 80px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-logo { height: 80px; object-fit: contain; margin-bottom: 20px; border-radius: 10px; }
.footer-brand p { font-size: 15px; font-weight: 600; color: var(--text-muted); line-height: 1.9; margin-bottom: 24px; max-width: 400px; }
.footer-links h4, .footer-contact h4 { font-size: 18px; font-weight: 800; margin-bottom: 24px; color: var(--text-main); }
.footer-links ul li { margin-bottom: 14px; }
.footer-links ul li a { font-size: 15px; font-weight: 600; color: var(--text-muted); transition: var(--transition); display: inline-block; }
.footer-links ul li a:hover { color: var(--orange); transform: translateX(-6px); }
.footer-contact p { font-size: 15px; font-weight: 600; color: var(--text-muted); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.footer-contact p i { color: var(--orange); font-size: 18px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 14px; font-weight: 600; color: var(--text-light); }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); backdrop-filter: blur(8px); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { background: var(--bg-card); border: 1px solid var(--border); box-shadow: 0 25px 60px rgba(0,0,0,0.15); border-radius: 24px; padding: 50px; max-width: 600px; width: 90%; position: relative; max-height: 85vh; overflow-y: auto; }
.modal-close { position: absolute; top: 20px; left: 20px; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-alt); border: 1px solid var(--border); color: var(--text-main); cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.modal-close:hover { background: var(--orange); color: white; border-color: var(--orange); transform: rotate(90deg); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 40px; left: 40px; width: 65px; height: 65px; border-radius: 50%; background: #25D366; color: white; display: flex; align-items: center; justify-content: center; font-size: 32px; box-shadow: 0 10px 30px rgba(37,211,102,0.4); z-index: 999; transition: var(--transition); animation: pulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.15) rotate(10deg); }
@keyframes pulse { 0%,100%{box-shadow:0 10px 30px rgba(37,211,102,0.4)} 50%{box-shadow:0 10px 50px rgba(37,211,102,0.7)} }

/* ===== VIDEO SECTIONS ===== */
.section-videos-header {
  display: flex; align-items: center; gap: 16px;
  margin: 60px 0 40px;
  padding: 20px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 16px;
}
.section-videos-header i { font-size: 30px; color: var(--orange); animation: pulse 2s infinite; }
.section-videos-header span { font-size: 20px; font-weight: 900; color: var(--text-main); }
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 20px; }
.videos-grid-center { grid-template-columns: minmax(280px, 500px); justify-content: center; }
.video-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow); }
.video-card:hover { transform: translateY(-10px); border-color: rgba(232,119,34,0.3); box-shadow: var(--shadow-hover); }
.video-card video { width: 100%; display: block; aspect-ratio: 16/9; background: #000; object-fit: cover; }
.video-label { display: flex; align-items: center; gap: 12px; padding: 16px 20px; font-size: 15px; font-weight: 800; color: var(--text-main); border-top: 1px solid var(--border); background: var(--bg-card); }
.video-label i { color: var(--orange); font-size: 18px; }

/* ===== RESPONSIVE ===== */
.fade-in { opacity: 0; transform: translateY(50px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .properties-grid { grid-template-columns: repeat(2,1fr); }
  .services-detail-grid, .design-grid, .projects-grid, .team-grid { grid-template-columns: repeat(2,1fr); }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 75px; right: 0; left: 0; background: var(--pure-white); padding: 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); gap: 8px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-right: 3px solid var(--orange); border-radius: 0; margin-right: 20px; margin-top: 8px; padding: 5px 0; background: var(--bg-alt); }
  .hero-brand-name { font-size: 34px; }
  .hero-company-sub { font-size: 18px; margin-top: 6px; }
  .hero-stats { gap: 24px; padding: 20px; flex-wrap: wrap; }
  .stat-num { font-size: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-logo-box { order: -1; }
  .services-grid, .properties-grid, .services-detail-grid, .design-grid, .projects-grid, .team-grid { grid-template-columns: 1fr; }
  .videos-grid, .videos-grid-center { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-contact p { justify-content: center; }
  .section { padding: 80px 0; }
  .nav-container { padding: 0 20px; }
  .section-videos-header { padding: 16px 20px; }
}

/* ===== DAMAC PROPERTIES SECTION ===== */
.damac-section {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 17, 21, 0.98) 0%, rgba(22, 25, 32, 0.95) 100%);
  border-top: 1px solid rgba(232, 119, 34, 0.2);
  border-bottom: 1px solid rgba(232, 119, 34, 0.2);
}
.damac-tag {
  background: linear-gradient(135deg, rgba(232, 119, 34, 0.2), rgba(232, 119, 34, 0.05));
  border: 1px solid rgba(232, 119, 34, 0.4);
  color: var(--orange);
}
.damac-title { font-size: 34px; font-weight: 900; }
.damac-subtitle {
  max-width: 800px; margin: 16px auto 0; font-size: 16px;
  line-height: 1.9; color: var(--text-muted); font-weight: 600;
}
.damac-highlights {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 50px 0 60px;
}
.damac-highlight-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 20px; text-align: center; transition: var(--transition); box-shadow: var(--shadow);
}
.damac-highlight-card:hover {
  transform: translateY(-8px); border-color: var(--orange); box-shadow: 0 15px 30px rgba(232,119,34,0.15);
}
.dh-icon {
  width: 60px; height: 60px; border-radius: 16px; background: rgba(232,119,34,0.1);
  color: var(--orange); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 26px; border: 1px solid rgba(232,119,34,0.2);
}
.damac-highlight-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: var(--text-main); }
.damac-highlight-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.damac-projects-title { text-align: center; margin-bottom: 40px; }
.damac-projects-title h3 { font-size: 24px; font-weight: 900; color: var(--text-main); margin-bottom: 6px; }
.damac-projects-title p { font-size: 15px; color: var(--orange); font-weight: 700; }

.damac-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 35px; }
.damac-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; transition: var(--transition); box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.damac-card:hover {
  transform: translateY(-10px); border-color: var(--orange); box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.damac-img-box { position: relative; height: 260px; overflow: hidden; }
.damac-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.damac-card:hover .damac-img { transform: scale(1.08); }
.damac-badge {
  position: absolute; top: 16px; right: 16px; background: rgba(15, 17, 21, 0.85);
  backdrop-filter: blur(8px); border: 1px solid rgba(232, 119, 34, 0.4); color: var(--orange);
  font-size: 13px; font-weight: 800; padding: 6px 14px; border-radius: 50px;
}
.damac-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.damac-cat { font-size: 12px; font-weight: 800; color: var(--orange); letter-spacing: 1px; margin-bottom: 6px; display: block; }
.damac-card-body h3 { font-size: 22px; font-weight: 900; margin-bottom: 12px; color: var(--text-main); }
.damac-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.damac-specs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.damac-specs span {
  font-size: 12px; font-weight: 700; background: rgba(232, 119, 34, 0.08); border: 1px solid rgba(232, 119, 34, 0.2);
  color: var(--text-main); padding: 6px 12px; border-radius: 8px; display: flex; align-items: center; gap: 6px;
}
.damac-specs span i { color: var(--orange); }
.damac-card-actions { display: flex; gap: 12px; margin-top: auto; }

@media (max-width: 1100px) {
  .damac-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .damac-highlights, .damac-grid { grid-template-columns: 1fr; }
}

