/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  color: #1e2533;
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
}
a { text-decoration: none; color: inherit; transition: all 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0b1d3a;
  --navy-light: #152b52;
  --gold: #c8922a;
  --gold-light: #e8a93d;
  --accent: #1e6fb5;
  --light: #f5f7fb;
  --gray: #6b7280;
  --border: #e5e9f0;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ===== UTILITIES ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; }
.mt-2 { margin-top: 1.5rem; }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  background: rgba(200,146,42,0.12);
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.section-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 14px;
}
.section-desc { color: var(--gray); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,146,42,0.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; text-align: center; display: block; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-contact { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.72rem; font-weight: 700; color: #fff;
}
.topbar-social a:hover { background: var(--gold); }

/* ===== HEADER / NAV ===== */
.site-header { position: sticky; top: 0; z-index: 1000; }
.main-nav {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { font-size: 2rem; color: var(--gold); line-height: 1; }
.logo-text strong { display: block; font-size: 1.1rem; font-weight: 900; color: var(--navy); line-height: 1.2; }
.logo-text small { font-size: 0.7rem; color: var(--gray); }

.nav-list { display: flex; gap: 2px; align-items: center; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 6px;
  display: block;
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--gold); background: rgba(200,146,42,0.08); }

/* Dropdown */
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  min-width: 210px;
  padding: 8px 0;
  z-index: 9999;
  border-top: 3px solid var(--gold);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  padding: 10px 18px;
  font-size: 0.85rem;
  display: block;
  color: var(--navy);
  border-radius: 0;
}
.dropdown li a:hover { background: var(--light); color: var(--gold); padding-right: 24px; }

.nav-cta { margin-right: 6px; flex-shrink: 0; }
.hamburger {
  display: none;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: var(--navy); padding: 4px 8px;
}

/* ===== HERO (Homepage) ===== */
.hero { position: relative; height: 640px; overflow: hidden; }
.hero-slides { position: relative; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 7s ease;
}
.hero-slide.active .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(11,29,58,0.88) 45%, rgba(11,29,58,0.5));
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 680px;
}
.hero-badge {
  display: inline-block; width: fit-content;
  background: var(--gold); color: #fff;
  font-size: 0.78rem; font-weight: 700;
  padding: 5px 15px; border-radius: 50px; margin-bottom: 18px;
}
.hero-content h1 { font-size: 2.9rem; font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 16px; }
.hero-content h1 .highlight { color: var(--gold-light); }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 28px; max-width: 520px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: all 0.3s;
}
.hero-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3); color: #fff;
  font-size: 1.7rem; width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: all 0.3s;
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* ===== PAGE HERO (Inner pages) ===== */
.page-hero {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  display: flex; align-items: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,29,58,0.92), rgba(11,29,58,0.7));
}
.page-hero-content { position: relative; z-index: 2; color: #fff; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }
.page-hero-content h1 { font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1.25; }
.page-hero-content p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-top: 10px; max-width: 560px; }

/* ===== STATS BAR ===== */
.stats-bar { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 20px; border-left: 1px solid rgba(255,255,255,0.1); color: #fff; }
.stat-item:last-child { border-left: none; }
.stat-num { font-size: 3rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.stat-item .stat-suffix { font-size: 1.5rem; color: var(--gold-light); font-weight: 700; }
.stat-item p { font-size: 0.88rem; color: rgba(255,255,255,0.72); margin-top: 6px; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: var(--radius-lg); height: 500px; width: 100%; object-fit: cover; box-shadow: var(--shadow-hover); }
.about-badge-card {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--gold); color: #fff;
  padding: 20px 28px; border-radius: var(--radius); text-align: center;
  box-shadow: 0 8px 24px rgba(200,146,42,0.4);
}
.about-badge-card .big-num { display: block; font-size: 2.5rem; font-weight: 900; line-height: 1; }
.about-badge-card span:last-child { font-size: 0.82rem; font-weight: 600; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.value-item { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.value-item span { color: var(--gold); font-size: 1.1rem; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.service-card {
  background: var(--light); border-radius: var(--radius-lg);
  padding: 34px 26px; border: 1px solid var(--border);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); background: #fff; }
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured { background: var(--navy); }
.service-card.featured h3, .service-card.featured p { color: rgba(255,255,255,0.9); }
.service-card.featured p { color: rgba(255,255,255,0.68); }
.service-card.featured .service-link { color: var(--gold-light); }
.service-icon { font-size: 2.8rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }
.service-link { color: var(--gold); font-weight: 700; font-size: 0.85rem; }
.service-link:hover { color: var(--navy); }

/* ===== PRODUCTS GRID ===== */
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.product-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-img { position: relative; height: 220px; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-badge { position: absolute; top: 14px; right: 14px; background: var(--gold); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; }
.product-info { padding: 22px; }
.product-info h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.product-info p { color: var(--gray); font-size: 0.86rem; margin-bottom: 16px; }

/* ===== PROJECTS GRID ===== */
.projects-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.project-card { border-radius: var(--radius); overflow: hidden; position: relative; height: 260px; cursor: pointer; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,29,58,0.95) 0%, rgba(11,29,58,0.35) 60%, transparent 100%);
  padding: 18px; display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0.75; transition: all 0.3s; transform: translateY(12px);
}
.project-card:hover .project-overlay { opacity: 1; transform: translateY(0); }
.project-cat {
  display: inline-block; width: fit-content;
  background: var(--gold); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 4px; margin-bottom: 7px;
}
.project-overlay h4 { color: #fff; font-size: 0.88rem; font-weight: 700; margin-bottom: 5px; }
.project-overlay p { color: rgba(255,255,255,0.72); font-size: 0.77rem; line-height: 1.5; }
.projects-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 22px; border-radius: 50px;
  border: 2px solid var(--border); background: #fff; color: var(--gray);
  font-weight: 600; font-family: 'Cairo', sans-serif; cursor: pointer; transition: all 0.3s; font-size: 0.85rem;
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80') center/cover no-repeat;
  padding: 100px 0; text-align: center;
}
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,29,58,0.92), rgba(200,146,42,0.65)); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: 2.1rem; font-weight: 900; color: #fff; margin-bottom: 14px; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 28px; }

/* ===== PARTNERS ===== */
.partners-track-wrapper { overflow: hidden; padding: 10px 0; }
.partners-track { display: flex; gap: 18px; animation: scrollPartners 22s linear infinite; width: max-content; }
.partners-track:hover { animation-play-state: paused; }
.partner-logo {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 16px 30px; font-weight: 700; font-size: 0.88rem; color: var(--navy);
  white-space: nowrap; box-shadow: var(--shadow); transition: all 0.3s;
}
.partner-logo:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-4px); }
@keyframes scrollPartners { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== WHY US ===== */
.whyus-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.why-card {
  padding: 34px 26px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); text-align: center; transition: all 0.3s;
}
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.why-icon { font-size: 2.8rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.why-card p { color: var(--gray); font-size: 0.86rem; }

/* ===== INNER PAGE LAYOUT ===== */
.inner-section { background: #fff; }
.inner-grid { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
.inner-main h2 { font-size: 1.7rem; font-weight: 900; color: var(--navy); margin-bottom: 18px; margin-top: 32px; }
.inner-main h2:first-child { margin-top: 0; }
.inner-main p { color: #444; font-size: 0.95rem; line-height: 1.85; margin-bottom: 16px; }
.inner-main ul { margin: 16px 0 24px 0; }
.inner-main ul li {
  padding: 8px 0 8px 0;
  border-bottom: 1px solid var(--border);
  color: #444; font-size: 0.93rem;
  display: flex; align-items: flex-start; gap: 10px;
}
.inner-main ul li::before { content: '✦'; color: var(--gold); flex-shrink: 0; font-size: 0.75rem; margin-top: 4px; }
.feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin: 28px 0; }
.feature-box {
  background: var(--light); border-radius: var(--radius);
  padding: 22px 18px; border: 1px solid var(--border);
  transition: all 0.3s;
}
.feature-box:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.feature-box .f-icon { font-size: 2rem; margin-bottom: 10px; }
.feature-box h4 { font-size: 0.95rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.feature-box p { color: var(--gray); font-size: 0.84rem; line-height: 1.6; }
.specs-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.specs-table th, .specs-table td { padding: 12px 16px; border: 1px solid var(--border); font-size: 0.88rem; text-align: right; }
.specs-table th { background: var(--navy); color: #fff; font-weight: 700; }
.specs-table tr:nth-child(even) td { background: var(--light); }

/* Sidebar */
.inner-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--light); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border); margin-bottom: 24px;
}
.sidebar-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.sidebar-form .form-group { margin-bottom: 14px; }
.sidebar-form input,
.sidebar-form select,
.sidebar-form textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Cairo', sans-serif; font-size: 0.85rem;
  color: var(--navy); background: #fff; direction: rtl;
  transition: border-color 0.3s;
}
.sidebar-form input:focus,
.sidebar-form select:focus,
.sidebar-form textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.1);
}
.sidebar-form textarea { resize: vertical; }
.sidebar-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.sidebar-contact-item .sc-icon {
  width: 38px; height: 38px; background: var(--navy); border-radius: 8px;
  display: grid; place-items: center; font-size: 1rem; flex-shrink: 0;
}
.sidebar-contact-item p { font-size: 0.82rem; color: var(--gray); }
.sidebar-contact-item strong { display: block; font-size: 0.88rem; color: var(--navy); margin-bottom: 2px; }
.related-list { display: flex; flex-direction: column; gap: 8px; }
.related-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 8px;
  border: 1px solid var(--border); transition: all 0.3s; background: #fff;
}
.related-item:hover { border-color: var(--gold); background: rgba(200,146,42,0.05); }
.related-item .ri-icon { font-size: 1.4rem; }
.related-item span { font-size: 0.85rem; font-weight: 600; color: var(--navy); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: var(--navy); border-radius: 10px; display: grid; place-items: center; font-size: 1.4rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.88rem; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.contact-item p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.social-btn { padding: 7px 16px; background: var(--navy); color: #fff; border-radius: 7px; font-size: 0.8rem; font-weight: 600; }
.social-btn:hover { background: var(--gold); }
.contact-form-box { background: var(--light); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Cairo', sans-serif; font-size: 0.88rem;
  color: var(--navy); background: #fff; direction: rtl; transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,146,42,0.1); }
.form-group textarea { resize: vertical; }

/* ===== ABOUT PAGE ===== */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.team-card { background: var(--light); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.team-card img { width: 100%; height: 260px; object-fit: cover; }
.team-info { padding: 22px; text-align: center; }
.team-info h3 { font-size: 1rem; font-weight: 800; color: var(--navy); }
.team-info p { font-size: 0.85rem; color: var(--gold); font-weight: 600; margin: 4px 0; }
.team-info small { font-size: 0.8rem; color: var(--gray); }
.milestones { position: relative; padding-right: 30px; }
.milestones::before { content: ''; position: absolute; right: 12px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.milestone { position: relative; padding: 0 30px 36px 0; }
.milestone::before {
  content: ''; position: absolute; right: -26px; top: 6px;
  width: 16px; height: 16px; background: var(--gold);
  border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 2px var(--gold);
}
.milestone-year { font-size: 0.8rem; font-weight: 900; color: var(--gold); margin-bottom: 4px; }
.milestone h4 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.milestone p { font-size: 0.88rem; color: var(--gray); }

/* ===== PROJECTS PAGE ===== */
.projects-grid-full { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.project-card-full {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.3s;
}
.project-card-full:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.project-card-full .proj-img { height: 240px; overflow: hidden; }
.project-card-full .proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.project-card-full:hover .proj-img img { transform: scale(1.06); }
.proj-info { padding: 22px; }
.proj-cat { display: inline-block; background: rgba(200,146,42,0.12); color: var(--gold); font-size: 0.74rem; font-weight: 700; padding: 3px 12px; border-radius: 50px; margin-bottom: 10px; }
.proj-info h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.proj-info p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.proj-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.proj-tag { background: var(--light); border: 1px solid var(--border); color: var(--gray); font-size: 0.74rem; padding: 3px 10px; border-radius: 50px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.8); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .logo-footer strong { color: #fff; }
.footer-brand .logo-footer small { color: rgba(255,255,255,0.55); }
.footer-brand .logo-footer .logo-icon { color: var(--gold-light); }
.footer-brand > p { font-size: 0.86rem; color: rgba(255,255,255,0.55); margin-top: 14px; line-height: 1.8; }
.footer-col h4 {
  font-size: 0.95rem; font-weight: 800; color: #fff;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--gold); width: fit-content;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: '←'; font-size: 0.68rem; color: var(--gold); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-info li { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; display: flex; gap: 8px; align-items: flex-start; }
.footer-social { display: flex; gap: 8px; margin-top: 14px; }
.footer-social a { padding: 6px 14px; background: rgba(255,255,255,0.08); border-radius: 6px; font-size: 0.78rem; color: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.1); }
.footer-social a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 26px; left: 26px;
  width: 44px; height: 44px; background: var(--gold); color: #fff;
  border: none; border-radius: 50%; cursor: pointer; font-size: 1rem;
  box-shadow: 0 4px 16px rgba(200,146,42,0.4);
  display: none; z-index: 999; transition: all 0.3s; place-items: center;
}
.scroll-top.visible { display: grid; }
.scroll-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .whyus-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .projects-grid { grid-template-columns: repeat(2,1fr); }
  .projects-grid-full { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img img { height: 360px; }
  .about-badge-card { left: 10px; bottom: -18px; }
  .inner-grid { grid-template-columns: 1fr; }
  .inner-sidebar { position: static; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 1.7rem; }
  .hero { height: 520px; }
  .hero-content h1 { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-list { display: none; }
  .nav-list.open { display: flex; flex-direction: column; position: fixed; inset: 0; background: rgba(11,29,58,0.97); z-index: 9999; padding: 80px 28px 28px; gap: 0; overflow-y: auto; }
  .nav-list.open > li > a { font-size: 1.05rem; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: #fff; }
  .nav-list.open > li > a:hover { color: var(--gold-light); background: none; }
  .has-dropdown .dropdown { position: static; box-shadow: none; border-top: none; padding: 8px 0 8px 20px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown .dropdown li a { color: rgba(255,255,255,0.75); font-size: 0.88rem; padding: 8px 0; border-radius: 0; }
  .hamburger { display: block; }
  .nav-cta { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .projects-grid, .projects-grid-full { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-contact { display: none; }
  .page-hero { height: 240px; }
  .page-hero-content h1 { font-size: 1.8rem; }
  .cta-content h2 { font-size: 1.6rem; }
  .team-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.65rem; }
  .hero-btns { flex-direction: column; }
  .about-values { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
