/*
Theme Name: AL Qarshoobi Global
Theme URI: https://alqarshoobi.com
Author: AL Qarshoobi Engineering
Author URI: https://alqarshoobi.com
Description: A world-class engineering consultancy theme for AL Qarshoobi Global Engineering Consultancy
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: alqarshoobi
Tags: engineering, consultancy, rtl, arabic, professional
*/

/* =============================================
   GOOGLE FONTS
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Playfair+Display:wght@400;700;900&family=Barlow+Condensed:wght@300;400;600;700&display=swap');

/* =============================================
   CSS VARIABLES
============================================= */
:root {
  --navy:       #0A0E1A;
  --deep:       #0D1425;
  --gold:       #C8973A;
  --gold-light: #E4B86A;
  --gold-pale:  #F5E6C8;
  --white:      #FFFFFF;
  --offwhite:   #F0EDE8;
  --grey:       #8A8F9E;
  --light-grey: #C8CBD4;
  --accent:     #1A3A6B;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}
html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="ltr"] body { direction: ltr; text-align: left; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   CURSOR
============================================= */
body { cursor: none; }
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transition: all 0.25s ease; opacity: 0.6;
}

/* =============================================
   LAYOUT UTILITIES
============================================= */
.container { max-width: 1300px; margin: 0 auto; padding: 0 60px; }
section { padding: 120px 0; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 20px;
}
.section-title .accent { color: var(--gold); }

.section-desc {
  font-size: 16px; font-weight: 300;
  color: var(--grey); line-height: 1.9;
  max-width: 560px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); padding: 18px 44px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  display: inline-block; transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  cursor: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(200,151,58,0.3); color: var(--navy); }

/* =============================================
   REVEAL ANIMATION
============================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   NAVBAR
============================================= */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
#site-header.scrolled {
  background: rgba(10,14,26,0.96);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  border-bottom: 1px solid rgba(200,151,58,0.2);
}
.site-logo { display: flex; align-items: center; gap: 14px; }
.logo-hex {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 18px; color: var(--navy); letter-spacing: 1px;
}
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px;
  letter-spacing: 3px; color: var(--white); text-transform: uppercase;
}
.logo-sub {
  font-size: 10px; font-weight: 300; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--light-grey); transition: color 0.3s;
  position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s; transform-origin: right;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 28px;
  font-size: 12px !important;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
.nav-cta::after { display: none !important; }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--gold); transition: all 0.3s; }

/* =============================================
   HERO
============================================= */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,14,26,0.95) 0%, rgba(13,20,37,0.85) 50%, rgba(10,14,26,0.97) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80') center/cover no-repeat;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,151,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,151,58,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove { 0% { transform: translateY(0); } 100% { transform: translateY(80px); } }
.hero-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,151,58,0.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%,-50%) scale(1.2); opacity: 1; }
}
.hero-content { position: relative; z-index: 2; max-width: 1300px; margin: 0 auto; padding: 0 60px; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(200,151,58,0.4); padding: 8px 20px;
  font-size: 11px; letter-spacing: 4px; color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  margin-bottom: 32px; animation: fadeInDown 1s ease both;
}
.hero-badge::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 100px); font-weight: 900; line-height: 1.0;
  margin-bottom: 8px; animation: fadeInUp 1s ease 0.2s both;
}
.hero-title .line-gold { color: var(--gold); }
.hero-title .line-outline { -webkit-text-stroke: 1px rgba(255,255,255,0.3); color: transparent; }
.hero-subtitle {
  font-size: clamp(14px,1.5vw,18px); font-weight: 300;
  color: var(--grey); max-width: 520px; line-height: 1.9;
  margin-bottom: 48px; animation: fadeInUp 1s ease 0.4s both;
}
.hero-actions { display: flex; align-items: center; gap: 24px; animation: fadeInUp 1s ease 0.6s both; }
.hero-btn-secondary {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--light-grey); transition: color 0.3s;
}
.hero-btn-secondary:hover { color: var(--gold); }
.btn-play {
  width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.3s;
}
.hero-btn-secondary:hover .btn-play { border-color: var(--gold); background: rgba(200,151,58,0.1); }
.hero-stats {
  position: absolute; bottom: 60px; right: 60px;
  display: flex; gap: 48px; animation: fadeInUp 1s ease 0.8s both;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 40px;
  font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-label { font-size: 11px; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
.hero-scroll {
  position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeIn 2s ease 1s both;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   ABOUT
============================================= */
#about { background: var(--deep); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-img-frame { position: relative; overflow: visible; }
.about-img-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(20%); }
.about-img-frame::before {
  content: ''; position: absolute; top: -2px; right: -2px;
  width: 60%; height: 60%; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); z-index: 2;
}
.about-img-frame::after {
  content: ''; position: absolute; bottom: -2px; left: -2px;
  width: 60%; height: 60%; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); z-index: 2;
}
.about-float-badge {
  position: absolute; bottom: 40px; right: -30px;
  background: var(--gold); color: var(--navy); padding: 24px 30px; z-index: 3;
}
.about-float-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; line-height: 1; }
.about-float-lbl { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.about-point { display: flex; align-items: flex-start; gap: 12px; }
.point-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(200,151,58,0.1); border: 1px solid rgba(200,151,58,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 14px; margin-top: 2px;
}
.point-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; display: block; }
.point-text { font-size: 13px; font-weight: 400; color: var(--light-grey); line-height: 1.7; }

/* =============================================
   SERVICES
============================================= */
#services { background: var(--navy); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 70px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04);
  padding: 48px 40px; position: relative; overflow: hidden;
  transition: all 0.4s ease; cursor: none;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.service-card:hover { background: rgba(200,151,58,0.04); border-color: rgba(200,151,58,0.15); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 3px; color: rgba(200,151,58,0.4); margin-bottom: 24px; display: block; }
.service-icon { font-size: 36px; margin-bottom: 24px; display: block; transition: transform 0.3s; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 16px; color: var(--white); }
.service-desc { font-size: 14px; font-weight: 300; color: var(--grey); line-height: 1.8; }
.service-arrow { position: absolute; bottom: 32px; left: 40px; color: var(--gold); font-size: 18px; opacity: 0; transform: translateX(10px); transition: all 0.3s; }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* =============================================
   GLOBAL
============================================= */
#global { background: linear-gradient(135deg, var(--deep), var(--navy)); position: relative; overflow: hidden; }
.global-map-bg {
  position: absolute; inset: 0;
  background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/World_map_-_low_resolution.svg/2560px-World_map_-_low_resolution.svg.png') center/cover;
  opacity: 0.04; filter: invert(1);
}
.global-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.global-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.global-stat {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  padding: 36px 32px; transition: all 0.3s;
}
.global-stat:hover { background: rgba(200,151,58,0.06); border-color: rgba(200,151,58,0.2); }
.global-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 700; color: var(--gold); line-height: 1; }
.global-stat-label { font-size: 12px; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; }
.offices-list { margin-top: 40px; }
.office-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; }
.office-item:hover { padding-right: 8px; }
.office-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 12px rgba(200,151,58,0.5); }
.office-dot.inactive { background: #555; box-shadow: none; }
.office-name { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; letter-spacing: 2px; color: var(--white); text-transform: uppercase; }
.office-name.inactive { color: var(--grey); }
.office-role { font-size: 12px; color: var(--grey); margin-right: auto; }
.office-since { font-size: 11px; color: rgba(200,151,58,0.6); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px; }

/* =============================================
   PROJECTS
============================================= */
#projects { background: var(--navy); }
.projects-filter { display: flex; gap: 4px; margin-bottom: 50px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 24px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  background: transparent; border: 1px solid rgba(255,255,255,0.08);
  color: var(--grey); cursor: none; transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project-card {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  cursor: none;
  height: 320px;
  min-width: 0;
}
/* If only 1 card visible after filter — make it full width */
.project-card:only-child {
  grid-column: 1 / -1;
  height: 480px;
}
/* If only 2 cards visible — each takes half */
.project-card:first-child:nth-last-child(2),
.project-card:first-child:nth-last-child(2) ~ .project-card {
  grid-column: span 1;
}
.project-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: grayscale(20%) brightness(0.85);
}
.project-card:hover .project-img { transform: scale(1.06); filter: grayscale(0) brightness(0.6); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.95) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
}
.project-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.project-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.project-card:nth-child(1) .project-name { font-size: 28px; }
.project-loc { font-size: 12px; color: var(--grey); }
.project-hover-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0);
  width: 60px; height: 60px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 22px; font-weight: 300;
  transition: transform 0.3s ease; z-index: 2;
}
.project-card:hover .project-hover-btn { transform: translate(-50%,-50%) scale(1); }

/* =============================================
   CLIENTS
============================================= */
#clients { background: var(--deep); }
.clients-header { text-align: center; margin-bottom: 70px; }
.clients-header .section-label { justify-content: center; }
.clients-header .section-label::before { display: none; }
.clients-header .section-label::after { content: ''; width: 30px; height: 1px; background: var(--gold); }
.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.client-item {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04);
  height: 120px; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; padding: 24px;
}
.client-item:hover { background: rgba(200,151,58,0.06); border-color: rgba(200,151,58,0.2); }
.client-name { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--grey); text-align: center; transition: color 0.3s; }
.client-item:hover .client-name { color: var(--gold); }

/* =============================================
   CONTACT
============================================= */
#contact { background: var(--navy); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-line { display: flex; align-items: flex-start; gap: 20px; margin-top: 36px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.05); }
.contact-line:first-of-type { margin-top: 48px; border-top: none; padding-top: 0; }
.contact-ico { width: 44px; height: 44px; flex-shrink: 0; background: rgba(200,151,58,0.1); border: 1px solid rgba(200,151,58,0.25); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.contact-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 3px; color: var(--grey); text-transform: uppercase; margin-bottom: 6px; }
.contact-val { font-size: 15px; color: var(--white); line-height: 1.9; }
.contact-val br { display: block; content: ''; margin-top: 4px; }
.contact-val a { color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 3px; color: var(--grey); text-transform: uppercase; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  color: var(--white); padding: 14px 18px; font-family: 'Cairo', sans-serif; font-size: 14px;
  transition: all 0.3s; outline: none; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); background: rgba(200,151,58,0.04); }
.form-group textarea { height: 130px; resize: none; }
.form-group select option { background: var(--deep); }
.form-submit {
  width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); border: none; padding: 18px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; cursor: none; transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(200,151,58,0.3); }

/* =============================================
   FOOTER
============================================= */
#site-footer { background: #060912; padding: 60px 0 30px; border-top: 1px solid rgba(200,151,58,0.12); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 50px; }
.footer-desc { font-size: 14px; font-weight: 300; color: var(--grey); line-height: 1.9; margin-top: 20px; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 28px; }
.footer-social {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); font-size: 14px; text-decoration: none; transition: all 0.3s;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,151,58,0.08); }
.footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 13px; color: var(--grey); transition: all 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '›'; color: var(--gold); opacity: 0; transition: opacity 0.3s, margin 0.3s; margin-left: -8px; }
.footer-links a:hover { color: var(--white); padding-right: 4px; }
.footer-links a:hover::before { opacity: 1; margin-left: 0; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-copy span { color: var(--gold); }

/* =============================================
   KEYFRAMES
============================================= */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  #site-header { padding: 16px 24px; }
  #site-header.scrolled { padding: 12px 24px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); justify-content: center; align-items: center; gap: 32px; z-index: 999; }
  .main-nav.open a { font-size: 24px; }
  .hero-content { padding: 0 24px; }
  .hero-stats { right: 24px; gap: 24px; }
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
  .about-grid, .contact-wrap, .global-content { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card:first-child { grid-column: span 1; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .about-float-badge { right: 0; bottom: 20px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-stats { position: relative; bottom: auto; right: auto; margin-top: 48px; justify-content: flex-start; }
}
