*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2a3a;
  --gold: #f39c12;
  --white: #ffffff;
  --light-bg: #f5f7fa;
  --text-dark: #2c3e50;
  --text-muted: #6b7280;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 10px 40px rgba(0,0,0,0.16);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar.solid {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--white); }
.nav-logo-wordmark { display: flex; align-items: center; gap: 10px; }
.nlw-badge {
  background: var(--gold);
  border-radius: 6px;
  padding: 6px 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 15px; color: var(--white);
  letter-spacing: 1px;
  white-space: nowrap;
}
.nlw-text { display: flex; flex-direction: column; line-height: 1.2; }
.nlw-text b { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--white); letter-spacing: 0.5px; font-style: normal; }
.nlw-text em { font-style: normal; font-family: 'Montserrat', sans-serif; font-size: 9.5px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-logo-icon {
  width: 42px; height: 42px; background: var(--gold); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 14px; color: var(--white);
  letter-spacing: -1px;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.5px; }
.nav-logo-text span:last-child { font-size: 10px; opacity: 0.7; letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.9); font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  transition: color var(--transition); position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important; color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 4px;
}
.nav-cta:hover { background: #e08e0b !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,42,58,0.88) 0%, rgba(26,42,58,0.45) 100%); z-index: 1; }
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--white); padding: 0 24px;
}
.hero-badge {
  display: inline-block; background: var(--gold); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; padding: 8px 20px; border-radius: 2px; margin-bottom: 24px;
}
.hero-title { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 900; letter-spacing: -1px; margin-bottom: 20px; }
.hero-title span { color: var(--gold); }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.15rem); opacity: 0.82; max-width: 580px; margin-bottom: 40px; font-weight: 300; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-block; padding: 14px 32px; border-radius: 4px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase; transition: all var(--transition);
  cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: #e08e0b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(243,156,18,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #243448; transform: translateY(-2px); }

.hero-dots { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; cursor: pointer; transition: all var(--transition); }
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

.hero-scroll {
  position: absolute; bottom: 36px; right: 40px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
}
.hero-scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.55)); }

/* STATS */
.stats-bar { background: var(--navy); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { padding: 20px; border-right: 1px solid rgba(255,255,255,0.08); color: var(--white); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; opacity: 0.65; letter-spacing: 1px; text-transform: uppercase; }

/* SECTIONS */
.section { padding: 90px 0; }
.section-alt { background: var(--light-bg); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { display: inline-block; color: var(--gold); font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 16px; }
.section-divider { width: 48px; height: 3px; background: var(--gold); margin: 0 auto 20px; border-radius: 2px; }
.section-desc { max-width: 580px; margin: 0 auto; color: var(--text-muted); font-size: 1.02rem; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: 8px; padding: 38px 28px;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 62px; height: 62px; background: rgba(243,156,18,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 22px; transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); }
.service-title { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.service-desc { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }

/* PROJECT CARDS */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project-card { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); background: var(--white); }
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.project-image { position: relative; height: 250px; overflow: hidden; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-image img { transform: scale(1.07); }
.project-badge { position: absolute; top: 14px; right: 14px; padding: 5px 12px; border-radius: 2px; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.badge-done { background: #27ae60; color: var(--white); }
.badge-ongoing { background: var(--gold); color: var(--white); }
.project-info { padding: 22px; }
.project-name { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.project-meta { display: flex; gap: 14px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image { border-radius: 8px; overflow: hidden; position: relative; }
.why-image img { width: 100%; height: 500px; object-fit: cover; }
.why-image-badge {
  position: absolute; bottom: 28px; left: -16px;
  background: var(--gold); color: var(--white); padding: 18px 26px; border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
}
.why-image-badge .years { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.why-image-badge .years-text { font-size: 12px; opacity: 0.9; }
.why-features { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-feature-icon { width: 46px; height: 46px; min-width: 46px; background: rgba(243,156,18,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.why-feature-text h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 3px; }
.why-feature-text p { font-size: 0.88rem; color: var(--text-muted); }

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #253e58 100%);
  padding: 140px 0 65px; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 10px; position: relative; }
.page-header p { opacity: 0.7; position: relative; font-size: 0.95rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 14px; font-size: 12px; opacity: 0.6; position: relative; }
.breadcrumb a { color: var(--gold); }

/* ABOUT */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-intro-image img { width: 100%; height: 460px; object-fit: cover; border-radius: 8px; }
.vm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.vm-card { background: var(--white); border-radius: 8px; padding: 34px; box-shadow: var(--shadow); border-top: 4px solid var(--gold); }
.vm-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.vm-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.75; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { text-align: center; padding: 38px 22px; background: var(--white); border-radius: 8px; box-shadow: var(--shadow); transition: transform var(--transition); }
.value-card:hover { transform: translateY(-6px); }
.value-icon { font-size: 44px; margin-bottom: 18px; }
.value-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: 0.88rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-photo { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; border: 4px solid var(--gold); }
.team-name { font-size: 0.98rem; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--text-muted); }

/* PROJECTS GALLERY */
.filter-bar { display: flex; justify-content: center; gap: 12px; margin-bottom: 44px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 26px; border: 2px solid var(--navy); background: transparent; color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-item { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.gallery-item.hidden { display: none; }
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.gallery-link { display: block; position: relative; height: 240px; overflow: hidden; }
.gallery-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover .gallery-link img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(26,42,58,0.65); opacity: 0;
  transition: opacity var(--transition); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 32px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info { padding: 18px 20px; background: var(--white); }
.gallery-info h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.gallery-meta { display: flex; gap: 14px; font-size: 11px; color: var(--text-muted); flex-wrap: wrap; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; }
.contact-info-card { background: var(--navy); color: var(--white); border-radius: 8px; padding: 48px 38px; }
.contact-info-card h3 { font-size: 1.45rem; margin-bottom: 8px; }
.contact-info-card > p { opacity: 0.65; font-size: 0.88rem; margin-bottom: 34px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 26px; align-items: flex-start; }
.contact-detail-icon { width: 42px; height: 42px; min-width: 42px; background: rgba(243,156,18,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--gold); }
.contact-detail-text strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-detail-text span { font-size: 0.88rem; opacity: 0.78; line-height: 1.6; }
.contact-socials { margin-top: 34px; display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 15px; transition: background var(--transition); }
.social-btn:hover { background: var(--gold); }
.contact-form-wrap { background: var(--white); border-radius: 8px; padding: 48px 38px; box-shadow: var(--shadow); }
.contact-form-wrap h3 { font-size: 1.45rem; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 15px; border: 2px solid #e5e9ef; border-radius: 4px;
  font-family: 'Roboto', sans-serif; font-size: 0.93rem; color: var(--text-dark);
  transition: border-color var(--transition); outline: none; background: #fafbfc;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { height: 128px; resize: vertical; }
.form-submit {
  width: 100%; padding: 15px; background: var(--gold); color: var(--white); border: none; border-radius: 4px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all var(--transition);
}
.form-submit:hover { background: #e08e0b; transform: translateY(-2px); }
.map-wrap { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); margin-top: 24px; }
.map-wrap iframe { width: 100%; height: 400px; border: none; display: block; }

/* FOOTER */
.footer { background: var(--navy); color: rgba(255,255,255,0.78); padding: 68px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-top: 16px; opacity: 0.65; }
.footer-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: all var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1.1rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 13px; font-size: 0.88rem; align-items: flex-start; }
.footer-contact-icon { color: var(--gold); margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; opacity: 0.5; }

/* TOAST */
.toast {
  position: fixed; bottom: 28px; left: 28px;
  background: #27ae60; color: var(--white); padding: 15px 22px; border-radius: 6px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2); transform: translateY(80px); opacity: 0;
  transition: all 0.4s ease; z-index: 9999;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* BACK TO TOP */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px;
  background: var(--gold); color: var(--white); border: none; border-radius: 50%;
  font-size: 18px; cursor: pointer; display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(243,156,18,0.4); transition: transform var(--transition); z-index: 999;
}
.back-to-top:hover { transform: translateY(-3px); }

/* FOUNDER CARD */
.founder-card { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: center; background: var(--white); border-radius: 8px; padding: 40px; box-shadow: var(--shadow); }
.founder-photo { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; border: 5px solid var(--gold); display: block; margin: 0 auto; }

/* CITIES */
.cities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.city-card { background: var(--white); border-radius: 8px; padding: 28px 20px; box-shadow: var(--shadow); text-align: center; transition: transform var(--transition), box-shadow var(--transition); border-top: 3px solid var(--gold); }
.city-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.city-icon { font-size: 28px; margin-bottom: 12px; }
.city-card h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 10px; }
.city-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 1100px) {
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .founder-card { grid-template-columns: 1fr; text-align: center; padding: 28px 20px; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cities-grid { grid-template-columns: 1fr; }
}

/* FILTER WRAP */
.filter-wrap { margin-bottom: 40px; }
.filter-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; justify-content: center; }
.filter-row:last-child { margin-bottom: 0; }
.filter-label-text { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; min-width: 52px; text-align: right; }
.project-count-text { text-align: center; color: var(--text-muted); font-size: 13px; margin-bottom: 32px; }
.project-count-text span { font-weight: 700; color: var(--navy); }
.no-results { text-align: center; grid-column: 1/-1; color: var(--text-muted); padding: 60px 0; font-size: 1rem; }
.gallery-type-tag { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; color: var(--gold); margin-bottom: 6px; }

/* DETAIL PAGE */
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; margin-bottom: 32px; transition: gap var(--transition); }
.back-link:hover { gap: 10px; }
.proje-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.detail-main-image { width: 100%; height: 460px; object-fit: cover; border-radius: 8px; margin-bottom: 32px; box-shadow: var(--shadow); }
.detail-desc { color: var(--text-muted); font-size: 0.98rem; line-height: 1.85; margin-bottom: 28px; }
.detail-highlights { list-style: none; margin-bottom: 8px; }
.detail-highlights li { display: flex; gap: 10px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid #eef0f3; font-size: 0.93rem; color: var(--text-dark); }
.detail-highlights li::before { content: '✓'; color: var(--gold); font-weight: 700; min-width: 16px; }
.detail-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.detail-gallery-grid a { display: block; border-radius: 6px; overflow: hidden; height: 140px; }
.detail-gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.detail-gallery-grid a:hover img { transform: scale(1.06); }
.detail-docs { display: flex; flex-wrap: wrap; gap: 12px; }
.doc-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--light-bg); border: 1.5px solid #e2e6ea; border-radius: 7px; padding: 13px 18px; font-size: 0.88rem; font-family: 'Montserrat', sans-serif; font-weight: 600; color: var(--navy); transition: border-color var(--transition), box-shadow var(--transition), background var(--transition); }
.doc-btn:hover { border-color: var(--gold); background: #fffbf2; box-shadow: 0 2px 12px rgba(243,156,18,0.12); }
.doc-icon { font-size: 1.2rem; }
.doc-dl { margin-left: auto; font-size: 0.78rem; color: var(--gold); font-weight: 700; }

.info-card { background: var(--navy); color: var(--white); border-radius: 8px; padding: 28px 24px; margin-bottom: 18px; position: sticky; top: 90px; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.info-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.87rem; gap: 12px; }
.info-item:last-child { border-bottom: none; }
.info-key { opacity: 0.58; white-space: nowrap; }
.info-val { font-weight: 500; text-align: right; }
.cta-card { background: var(--gold); color: var(--white); border-radius: 8px; padding: 26px 22px; text-align: center; }
.cta-card h4 { font-size: 1rem; margin-bottom: 10px; }
.cta-card p { font-size: 0.85rem; opacity: 0.92; margin-bottom: 18px; line-height: 1.6; }
.btn-white { background: var(--white) !important; color: var(--gold) !important; width: 100%; display: block; }
.btn-white:hover { background: #f5f5f5 !important; transform: translateY(-2px); }

@media (max-width: 992px) {
  .proje-detail-layout { grid-template-columns: 1fr; }
  .info-card { position: static; }
  .detail-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .detail-gallery-grid { grid-template-columns: 1fr; }
  .detail-main-image { height: 280px; }
}

/* SCROLL REVEAL */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal="left"] { transform: translateX(-36px); }
[data-reveal="left"].revealed { transform: translateX(0); opacity: 1; }
[data-reveal="right"] { transform: translateX(36px); opacity: 0; }
[data-reveal="right"].revealed { transform: translateX(0); opacity: 1; }

/* RESPONSIVE */
@media (max-width: 992px) {
  .projects-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .why-grid, .about-intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-image img { height: 340px; }
  .vm-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-image-badge { left: 12px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 275px; height: 100vh;
    background: var(--navy); flex-direction: column; justify-content: center;
    align-items: center; gap: 30px; transition: right var(--transition); z-index: 999;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }
  .services-grid, .projects-grid, .gallery-grid, .values-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .hero-scroll { display: none; }
  .contact-form-wrap, .contact-info-card { padding: 32px 22px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
