/* ================================================
   CONSTRUCTED — Custom Stylesheet
   ================================================ */

:root {
  --accent: #e8a020;
  --accent-dark: #c8880e;
  --accent-light: #f5c060;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --gray: #6c757d;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --font: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.14);
}

/* ================================================
   LANGUAGE SWITCHER
   ================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 6px;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.lang-btn:hover { color: #fff; }
.lang-btn.active { color: var(--accent); }
.lang-divider {
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  line-height: 1;
}
@media (max-width: 991px) {
  .lang-switcher { margin-top: 12px; }
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  color: #333;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; transition: var(--transition); }

/* ---- Utility ---- */
.text-accent { color: var(--accent) !important; }
.text-accent-light { color: var(--accent-light) !important; }
.bg-accent { background-color: var(--accent) !important; }
.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 3px;
  transition: var(--transition);
}
.btn-accent:hover,
.btn-accent:focus {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.35);
}
.letter-spacing-3 { letter-spacing: 3px; }
.section-padding { padding: 90px 0; }
.z-1 { position: relative; z-index: 1; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 15px;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}

/* ================================================
   NAVBAR
   ================================================ */
#mainNav {
  background: transparent;
  padding: 20px 0;
  transition: var(--transition);
}
#mainNav.scrolled {
  background: var(--dark) !important;
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.navbar-brand .brand-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}
.navbar-brand .brand-text::first-letter {
  color: var(--accent);
}
#mainNav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px !important;
  letter-spacing: 0.5px;
  position: relative;
}
#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
  transform: scaleX(1);
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: #fff !important;
}
.nav-phone {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 7px 16px;
  border-radius: 3px;
  white-space: nowrap;
  transition: var(--transition);
}
.nav-phone:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
/* Dropdown */
.dropdown-menu {
  border: none;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 8px 0;
  margin-top: 8px !important;
}
.dropdown-item {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  color: var(--dark);
}
.dropdown-item:hover {
  background: var(--accent);
  color: #fff;
}

/* ================================================
   HERO
   ================================================ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232,160,32,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
}
/* Subtle grid pattern */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,15,30,0.4);
  z-index: 0;
}
.hero-sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.7);
}
.hero-title {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
}
.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll-indicator a {
  color: rgba(255,255,255,0.5);
  font-size: 18px;
}
.hero-scroll-indicator a:hover { color: var(--accent); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ================================================
   SERVICES
   ================================================ */
.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--accent);
}
.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: var(--accent);
}
.service-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--accent);
  stroke: var(--accent);
}
.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.service-link:hover { color: var(--accent-dark); }

/* ================================================
   PROJECTS
   ================================================ */
.project-card { border-radius: 8px; overflow: hidden; }
.project-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  background-color: #c8d0d8;
  position: relative;
  overflow: hidden;
}
/* Placeholder gradient when no image */
.project-img:not([style*="url"]) {
  background: linear-gradient(135deg, #c8d0d8, #a0aab4);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-card:hover .project-img { transform: scale(1.04); transition: transform 0.4s ease; }
.project-info { width: 100%; }
.project-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.project-name {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
}
.project-link {
  float: right;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: -30px;
}
.project-link:hover { background: var(--accent-dark); color: #fff; }

/* ================================================
   COMMITMENT / VIDEO
   ================================================ */
.commitment-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}
.commitment-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}
.commitment-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,15,30,0.3);
}
.commitment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.commitment-list li {
  padding: 6px 0;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}
.video-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
}
.video-thumb {
  width: 100%;
  max-width: 500px;
  display: block;
  filter: brightness(0.75);
  background: #2a3a5a;
  min-height: 280px;
  object-fit: cover;
}
/* Placeholder when no image */
.video-thumb[src="images/video-thumb.jpg"] {
  background: linear-gradient(135deg, #2a3a5a, #0f2040);
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding-left: 4px;
  box-shadow: 0 0 0 12px rgba(232,160,32,0.2);
  transition: var(--transition);
}
.play-btn:hover {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 0 0 20px rgba(232,160,32,0.15);
  transform: translate(-50%, -50%) scale(1.08);
}

/* ================================================
   STATS
   ================================================ */
.stats-section { background: var(--accent) !important; }
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: #fff;
}
.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
}
.stat-item {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.col-lg-3:last-child .stat-item { border-right: none; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.testimonial-quote {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  background: linear-gradient(135deg, #c8d0d8, #a0aab4);
  flex-shrink: 0;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,160,32,0.1);
  color: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-form .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 14px;
  transition: var(--transition);
}
.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.12);
}
.contact-form textarea.form-control { resize: vertical; }

/* ================================================
   LEGAL PAGES (Privacy / Cookies)
   ================================================ */
.legal-meta { border-left: 3px solid var(--accent); padding-left: 16px; }
.legal-heading { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--light-bg); }
.legal-section p { color: #444; line-height: 1.8; }
.legal-list { color: #444; line-height: 2; padding-left: 20px; }
.legal-list a { color: var(--accent); }
.legal-address { background: var(--light-bg); border-radius: 8px; padding: 16px 20px; font-style: normal; line-height: 1.9; }
.legal-address a { color: var(--accent); text-decoration: none; }
.legal-table { font-size: 0.85rem; }
.legal-table thead th { background: var(--dark); color: #fff; font-weight: 600; border: none; }
.legal-table tbody td { vertical-align: middle; }
.legal-table code { background: var(--light-bg); padding: 2px 6px; border-radius: 4px; font-size: 0.8rem; color: var(--dark); }
.legal-back { padding-top: 24px; border-top: 1px solid #eee; }
.cookie-category-block { background: var(--light-bg); border-radius: 10px; padding: 20px; }
.cookie-cat-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.cookie-cat-badge.necessary { background: #d4edda; color: #155724; }
.cookie-cat-badge.analytics { background: #cce5ff; color: #004085; }
.cookie-cat-badge.marketing { background: #fff3cd; color: #856404; }
.badge-status { font-weight: 400; text-transform: none; letter-spacing: 0; opacity: 0.7; }

/* ================================================
   FOOTER
   ================================================ */
.footer-section {
  background: var(--dark);
  color: rgba(255,255,255,0.82);
}
.footer-section .text-muted {
  color: rgba(255,255,255,0.62) !important;
}
.footer-brand {
  color: #fff;
  font-size: 1.4rem;
}
.footer-heading {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}
.footer-divider { border-color: rgba(255,255,255,0.12); margin: 0; }

/* Scroll to Top */
#scrollTop {
  position: fixed;
  bottom: 28px;
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  z-index: 8000;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  box-shadow: 0 4px 16px rgba(232,160,32,0.4);
}
#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#scrollTop:hover { background: var(--accent-dark); }
@media (max-width: 576px) {
  #scrollTop { bottom: 80px; bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
}
.footer-bottom-text { color: rgba(255,255,255,0.55) !important; }
.footer-bottom-text a { color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); }
.footer-bottom-text a:hover { color: var(--accent); }
.footer-legal-link { color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); }
.footer-legal-link:hover { color: var(--accent); }
.newsletter-form .form-control {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  border-radius: 3px 0 0 3px;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form .form-control:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
  box-shadow: none;
  color: #fff;
}
.newsletter-form .btn-accent { border-radius: 0 3px 3px 0; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
  .section-padding { padding: 60px 0; }
  .hero-title { font-size: 2.4rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .col-lg-3:last-child .stat-item { border-bottom: none; }
  #mainNav { background: var(--dark) !important; padding: 14px 0; }
  .navbar-collapse {
    background: var(--dark-2);
    padding: 16px;
    border-radius: 0 0 8px 8px;
    margin-top: 8px;
  }
  .nav-phone { margin-top: 12px; display: inline-block; }
}
@media (max-width: 767px) {
  .section-title { font-size: 1.8rem; }
  .hero-title { font-size: 2rem; }
  .stat-number { font-size: 2.4rem; }
  .video-thumb { min-height: 200px; }
}

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  min-height: 340px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,15,30,0.45);
  z-index: 1;
}
.page-hero-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--accent);
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.page-breadcrumb { background: transparent; padding: 0; }
.page-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition); }
.page-breadcrumb .breadcrumb-item a:hover { color: var(--accent); }
.page-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.4); }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ================================================
   SERVICE CARDS LARGE (services.html)
   ================================================ */
.service-card-lg {
  background: #fff;
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.service-card-lg:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--accent);
}
.service-card-lg-icon {
  width: 64px;
  height: 64px;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card-lg-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--accent);
  stroke: var(--accent);
}
.service-card-lg-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.service-feature-list li {
  font-size: 13px;
  color: #555;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}
.service-feature-list li i { color: var(--accent); }

/* ================================================
   PROCESS STEPS (services.html)
   ================================================ */
.process-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
}
.process-step:hover .process-number { opacity: 1; transition: opacity .3s; }
.process-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,15,30,0.4);
  z-index: 1;
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-img-wrap { position: relative; display: inline-block; width: 100%; }
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232,160,32,0.4);
}
.about-badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-text {
  display: block;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
  white-space: nowrap;
}
.about-stat { padding: 16px; background: var(--light-bg); border-radius: 8px; }
.about-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.about-stat-label { font-size: 13px; }

/* Value Cards */
.value-card {
  padding: 32px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,160,32,0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}
.value-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }

/* Team Cards */
.team-card { padding: 24px 16px; }
.team-avatar {
  width: 160px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  border: 4px solid var(--accent);
  overflow: hidden;
  position: relative;
}
.team-name { font-size: 1rem; font-weight: 700; color: var(--dark); }
.team-role { font-size: 0.8rem; color: var(--gray); }
.team-email a { font-size: 0.78rem; color: var(--gray); text-decoration: none; transition: var(--transition); }
.team-email a:hover { color: var(--accent); }
.team-social { display: flex; gap: 8px; justify-content: center; }
.team-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
}
.team-social a:hover { background: var(--accent); color: #fff; }

/* Avatar hover overlay */
.team-avatar { cursor: pointer; }
.team-avatar-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(232,160,32,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transition: var(--transition);
}
.team-avatar:hover .team-avatar-overlay { opacity: 1; }

/* Member Modal */
.member-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.member-modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.member-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 780px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.member-modal-backdrop.active .member-modal { transform: translateY(0); }
.member-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--light-bg);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.member-modal-close:hover { background: var(--accent); color: #fff; }
.member-modal-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 360px;
}
.member-modal-left {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: 16px 0 0 16px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.member-modal-avatar {
  width: 140px;
  height: 200px;
  border-radius: 16px;
  border: 3px solid var(--accent);
  overflow: hidden;
  margin-bottom: 16px;
  cursor: zoom-in;
  position: relative;
}
.member-modal-avatar:hover::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(232,160,32,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 13px;
}
.member-modal-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Photo Lightbox */
.photo-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 10999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.photo-lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.photo-lightbox img {
  max-width: min(420px, 90vw);
  max-height: 85vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transform: scale(0.92);
  transition: transform 0.2s ease;
}
.photo-lightbox.active img { transform: scale(1); }
.photo-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.12);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.photo-lightbox-close:hover { background: var(--accent); }
.member-modal-name { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.member-modal-role { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 0; }
.member-modal-social {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}
.member-modal-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
  text-decoration: none;
}
.member-modal-social a:hover { background: var(--accent); color: #fff; }
.member-modal-right {
  padding: 40px 32px;
}
.member-modal-stat-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.member-modal-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--light-bg);
  border-radius: 10px;
  padding: 14px 20px;
  min-width: 80px;
}
.member-modal-stat .stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.member-modal-stat .stat-label { font-size: 0.72rem; color: var(--gray); margin-top: 4px; }
.member-modal-bio {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.member-modal-details { display: flex; flex-direction: column; gap: 12px; }
.member-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.85rem;
  gap: 12px;
}
.member-detail-item:last-child { border-bottom: none; padding-bottom: 0; }
.detail-key { color: var(--gray); white-space: nowrap; }
.detail-val { font-weight: 600; color: var(--dark); text-align: right; }

@media (max-width: 640px) {
  .member-modal-inner { grid-template-columns: 1fr; }
  .member-modal-left { border-radius: 16px 16px 0 0; padding: 32px 24px 24px; }
  .member-modal-social { margin-top: 20px; padding-top: 0; }
  .member-modal-right { padding: 24px; }
}

/* Instagram Feed Section */
.instagram-section { background: var(--light-bg); }
.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
@media (max-width: 991px) {
  .instagram-feed-grid { grid-template-columns: repeat(3, 1fr); }
  .instagram-feed-grid .ig-hide-mobile { display: none; }
}
@media (max-width: 575px) {
  .instagram-feed-grid { grid-template-columns: repeat(3, 1fr); }
}
.ig-post {
  aspect-ratio: 1;
  background: var(--dark-2);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.ig-post img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.ig-post:hover img { transform: scale(1.05); }
.ig-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.ig-post:hover .ig-post-overlay { opacity: 1; }
.ig-post-overlay i { color: #fff; font-size: 1.4rem; }
.ig-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 1.6rem;
}
.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.3s;
}
.ig-follow-btn:hover { opacity: 0.85; color: #fff; }

/* ================================================
   COOKIE CONSENT
   ================================================ */
#cookieBanner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 320px;
  background: var(--dark);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  z-index: 8888;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#cookieBanner.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner-icon { font-size: 1.5rem; margin-bottom: 10px; }
.cookie-banner-title { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.cookie-banner-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.55; margin-bottom: 16px; }
.cookie-banner-desc a { color: var(--accent); text-decoration: none; }
.cookie-banner-desc a:hover { text-decoration: underline; }
.cookie-banner-actions { display: flex; flex-direction: column; gap: 8px; }
.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.cookie-btn-accept:hover { background: var(--accent-dark); }
.cookie-btn-row { display: flex; gap: 8px; }
.cookie-btn-necessary {
  flex: 1;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.cookie-btn-necessary:hover { background: rgba(255,255,255,0.12); color: #fff; }
.cookie-btn-settings {
  flex: 1;
  background: transparent;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.cookie-btn-settings:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.25); }

/* Cookie Settings Panel */
#cookieSettings {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 340px;
  background: var(--dark);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  z-index: 8889;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#cookieSettings.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cookie-settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cookie-settings-title { font-size: 0.95rem; font-weight: 700; color: #fff; margin: 0; }
.cookie-settings-close {
  background: rgba(255,255,255,0.08);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cookie-settings-close:hover { background: var(--accent); color: #fff; }
.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category-info { flex: 1; }
.cookie-category-name { font-size: 0.82rem; font-weight: 600; color: #fff; margin-bottom: 2px; }
.cookie-category-desc { font-size: 0.73rem; color: rgba(255,255,255,0.45); line-height: 1.4; }
.cookie-toggle {
  position: relative;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 22px;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-toggle-track::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: var(--transition);
}
.cookie-toggle input:checked + .cookie-toggle-track { background: var(--accent); }
.cookie-toggle input:checked + .cookie-toggle-track::before { transform: translateX(16px); }
.cookie-toggle input:disabled + .cookie-toggle-track { opacity: 0.5; cursor: not-allowed; }
.cookie-settings-actions { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }

@media (max-width: 400px) {
  #cookieBanner, #cookieSettings {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 12px;
  }
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-form-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form .form-select {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 14px;
  transition: var(--transition);
}
.contact-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.12);
}
.map-section { height: 400px; background: var(--light-bg); }
.map-placeholder { height: 100%; background: #e8ecf0; }

/* ================================================
   PROJECTS LIST (projects.html)
   ================================================ */
.project-filter { margin-bottom: 8px; }
.filter-btn {
  background: transparent;
  border: 2px solid #e0e0e0;
  color: #555;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.project-card-link { text-decoration: none; color: inherit; display: block; }
.project-card-full {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: #fff;
}
.project-card-full:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.project-img-wrap {
  height: 220px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.project-card-full:hover .project-img-wrap { transform: scale(1.04); }
.project-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.project-card-full:hover .project-img-overlay { opacity: 1; }
.project-view-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}
.project-card-full:hover .project-view-icon { transform: scale(1); }
.project-card-body { padding: 20px 24px 24px; }
.project-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.project-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.project-card-desc { line-height: 1.6; margin-bottom: 12px; }
.project-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #999;
  flex-wrap: wrap;
}

/* ================================================
   PROJECT SINGLE (project-single.html)
   ================================================ */
.project-single-hero {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.project-single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.85) 0%, rgba(10,15,30,0.2) 60%, transparent 100%);
}
.project-single-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.35);
  padding: 4px 14px;
  border-radius: 3px;
}
.project-single-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.project-single-section { margin-bottom: 12px; }

/* Gallery */
.project-gallery-main { background-size: cover; background-position: center; }
.project-gallery-thumb {
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: opacity .3s;
}
.project-gallery-thumb:hover { opacity: 0.8; }

/* Challenge Cards */
.challenge-card {
  padding: 24px;
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  height: 100%;
}
.challenge-icon {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Timeline */
.project-timeline { position: relative; padding-left: 28px; }
.project-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item.last { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #e0e0e0;
}
.timeline-dot.accent {
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

/* Sidebar */
.project-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.sidebar-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.project-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.project-detail-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}
.project-detail-list li:last-child { border-bottom: none; }
.detail-label { color: #888; }
.detail-value { font-weight: 600; color: var(--dark); }
.service-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  background: rgba(232,160,32,0.1);
  color: var(--accent);
  border-radius: 3px;
  border: 1px solid rgba(232,160,32,0.25);
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: 8px;
  padding: 28px;
  color: #fff;
}
.sidebar-cta h5 { color: #fff; }
.sidebar-cta p { color: rgba(255,255,255,0.6); }


/* ================================================
   CONTACT WIDGET — quarter-fan (6.png style)
   ================================================ */

/*
  Toggle sol alt köşede sabit.
  Açılınca dilimler sağ üste doğru çeyrek yelpaze şeklinde genişler.
  Her platform ayrı bir halka katmanı — SVG clip-path arc ile.
  Hiçbir zaman sol veya alt kenardan taşmaz.
*/

#contactWidget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9000;
  width: 56px;
  height: 56px;
}

/* Fan container — toggle alt-sol köşesinden açılır */
.cw-pie {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Her halka dilimi: SVG ile çeyrek arc */
.cw-slice {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0;
  display: block;
  text-decoration: none;
  opacity: 0;
  transform: scale(0.5);
  transform-origin: bottom left;
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(.34,1.2,.64,1);
  pointer-events: none;
}

#contactWidget.open .cw-slice {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Stagger */
#contactWidget.open .cw-slice:nth-child(1) { transition-delay: 0.00s; }
#contactWidget.open .cw-slice:nth-child(2) { transition-delay: 0.05s; }
#contactWidget.open .cw-slice:nth-child(3) { transition-delay: 0.10s; }
#contactWidget.open .cw-slice:nth-child(4) { transition-delay: 0.15s; }
#contactWidget.open .cw-slice:nth-child(5) { transition-delay: 0.20s; }

.cw-slice svg {
  display: block;
  overflow: visible;
}

.cw-slice:hover path { filter: brightness(1.12); }

/* İkon label — dilimlerin ortasına konumlandırılmış */
.cw-slice i {
  position: absolute;
  color: #fff;
  font-size: 18px;
  pointer-events: none;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

/* Toggle butonu */
.cw-toggle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid rgba(255,255,255,0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(232,160,32,0.55);
  transition: background 0.25s ease, transform 0.2s ease;
  z-index: 10;
}
.cw-toggle:hover {
  background: var(--accent-dark);
  transform: scale(1.07);
}
.cw-toggle i {
  font-size: 20px;
  color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
  #contactWidget { bottom: 16px; left: 16px; }
}
