/* ============================================
   TEV GRUP - Modern Corporate
   Font: Manrope Only
   ============================================ */

:root {
  --black: #0a0a0a;
  --dark: #141414;
  --gray-900: #1f1f1f;
  --gray-800: #2e2e2e;
  --gray-700: #454545;
  --gray-600: #5c5c5c;
  --gray-500: #7a7a7a;
  --gray-400: #a3a3a3;
  --gray-300: #d1d1d1;
  --gray-200: #e8e8e8;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --accent: #c9a227;
  --accent-light: #dbb84a;
  --accent-dark: #a88620;
  
  /* Typography */
  --h1: clamp(2.5rem, 5vw, 3.5rem);
  --h2: clamp(1.75rem, 3vw, 2.5rem);
  --h3: clamp(1.25rem, 2vw, 1.5rem);
  --body: 1rem;
  --small: 0.875rem;
  
  --container: 1370px;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--body);
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}
@media (min-width: 1200px) {
  .container { padding: 0 60px; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gray-200);
  padding: 1rem 0;
}
.header.scrolled .logo { color: var(--dark); }
.header.scrolled .nav a { color: var(--gray-700); }
.header.scrolled .nav a:hover { color: var(--accent); }
.header.scrolled .header-phone { color: var(--gray-700); }
.header.scrolled .menu-toggle span { background: var(--dark); }
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 768px) {
  .header-inner { padding: 0 40px; }
}
@media (min-width: 1200px) {
  .header-inner { padding: 0 60px; }
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}
.logo span { color: var(--accent); }
.logo-img {
  height: 28px;
  width: auto;
  transition: filter 0.3s ease;
}
.header.scrolled .logo-img {
  filter: brightness(0);
}
.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
}
.nav a:hover { color: var(--accent); }

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-trigger svg {
  transition: transform 0.3s ease;
}
.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding-top: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: -1;
}
.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700) !important;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}
.nav-dropdown-menu a:first-child {
  padding-top: 28px;
  border-radius: 12px 12px 0 0;
}
.nav-dropdown-menu a:last-child {
  padding-bottom: 16px;
  border-radius: 0 0 12px 12px;
}
.nav-dropdown-menu a:hover {
  color: var(--accent) !important;
  background: var(--gray-100);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}
.header-phone:hover { color: var(--accent); }
.header-btn {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--dark);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
}
.header-btn:hover { background: var(--accent); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}
.menu-toggle span {
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
  .nav, .header-phone, .header-btn { display: none; }
  .menu-toggle { display: flex; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    justify-content: flex-start;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
  }
  .nav.active a { 
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark);
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
  }
  .nav.active a:first-child {
    border-top: 1px solid var(--gray-200);
  }
  .nav.active a:hover,
  .nav.active a.active {
    color: var(--accent);
  }
  .menu-toggle.active {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 1000;
  }
  .menu-toggle.active span {
    background: var(--dark);
  }
  .nav-cta-mobile {
    margin-top: auto;
    padding-top: 24px;
  }
  .nav-cta-mobile .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .nav.active .nav-dropdown {
    display: flex;
    flex-direction: column;
  }
  .nav.active .nav-dropdown-trigger {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark);
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
  }
  .nav.active .nav-dropdown-trigger svg {
    display: none;
  }
  .nav.active .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: unset;
    padding-top: 0;
  }
  .nav.active .nav-dropdown-menu::before {
    display: none;
  }
  .nav.active .nav-dropdown-menu a {
    font-size: 1rem;
    color: var(--gray-600) !important;
    padding: 12px 0 12px 20px;
    border-bottom: 1px solid var(--gray-200);
    border-radius: 0 !important;
  }
  .nav.active .nav-dropdown-menu a:first-child {
    padding-top: 12px;
  }
}
.nav-cta-mobile {
  display: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
}
.btn-outline-light:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--dark);
  padding: 12px 24px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.btn-dark:hover { background: var(--accent); }
.btn-block { width: 100%; }

/* ============================================
   SECTION COMMON
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}
.section-header { margin-bottom: 48px; }
.section-header h2 {
  font-size: var(--h2);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  max-width: 700px;
}
.section-header-center { text-align: center; }
.section-header-center h2 { margin: 0 auto; }
.section-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-top: 1rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
}
.hero-content .container { max-width: 700px; margin: 0 auto; text-align: center; }
.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-content h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero-content h1 span { color: var(--accent); }
.hero-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stats {
  position: relative;
  z-index: 1;
  background: var(--dark);
  padding: 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-box {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-800);
}
.stat-box:last-child { border-right: none; }
.stat-num-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 4px;
}
.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero { min-height: 80vh; }
  .hero-content { padding: 100px 0 40px; }
  .hero-actions { 
    flex-direction: row;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline-light {
    flex: 1;
    padding: 14px 16px;
    font-size: 0.875rem;
    white-space: nowrap;
    justify-content: center;
    text-align: center;
  }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-box { border-right: none; border-bottom: 1px solid var(--gray-800); }
  .stat-box:nth-child(odd) { border-right: 1px solid var(--gray-800); }
  .stat-box:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .hero-actions .btn-primary,
  .hero-actions .btn-outline-light {
    padding: 12px 12px;
    font-size: 0.8125rem;
  }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  position: relative;
  z-index: 10;
  padding: 100px 0;
  overflow: hidden;
  background: var(--white);
}
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-sm);
  text-align: center;
}
.about-badge span {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge small {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}
.about-content h2 {
  font-size: var(--h2);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-content .btn-dark { margin-top: 24px; }

@media (max-width: 1024px) {
  .about-wrapper { gap: 48px; }
  .about-badge { right: 0; bottom: -1rem; padding: 1rem 1.5rem; }
  .about-badge span { font-size: 2rem; }
}
@media (max-width: 768px) {
  .about { padding: 64px 0; }
  .about-wrapper { grid-template-columns: 1fr; }
  .about-img { max-width: 400px; margin: 0 auto; }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--white);
}
.svc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}
.svc-top-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
}
.svc-top-left h2 em {
  font-style: italic;
  color: var(--accent);
}
.svc-top-right {
  max-width: 400px;
  text-align: right;
}
.svc-top-right p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.svc-accordion {
  display: flex;
  gap: 8px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
}
.svc-panel {
  position: relative;
  flex: 0.8;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-panel.is-active {
  flex: 4;
}
.svc-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-panel:hover img {
  transform: scale(1.03);
}
.svc-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
  transition: background 0.4s ease;
}
.svc-panel:not(.is-active) .svc-panel-overlay {
  background: rgba(0,0,0,0.5);
}
.svc-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 1;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s ease 0.15s;
}
.svc-panel.is-active .svc-panel-content {
  opacity: 1;
  transform: translateY(0);
}
.svc-panel-num {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.svc-panel-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.svc-panel-content p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 360px;
}
.svc-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 12px;
  transition: gap 0.3s ease;
}
.svc-panel-link:hover {
  gap: 10px;
  color: var(--white);
}

@media (max-width: 992px) {
  .svc-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .svc-top-right { text-align: left; max-width: 100%; }
  .svc-accordion { height: 360px; }
  .svc-panel-content { padding: 24px; }
  .svc-panel-content h3 { font-size: 1.25rem; }
}
@media (max-width: 768px) {
  .services { padding: 48px 0; }
  .svc-top { margin-bottom: 32px; }

  .svc-accordion { 
    flex-direction: column; 
    height: auto !important; 
    gap: 8px;
    border-radius: 0;
    overflow: visible;
  }

  .svc-panel { 
    flex: none !important;
    height: 64px; 
    min-height: 64px;
    border-radius: 12px; 
    overflow: hidden;
    cursor: pointer;
    transition: height 0.35s ease;
  }
  .svc-panel.is-active { 
    height: 240px; 
  }

  .svc-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .svc-panel .svc-panel-overlay {
    background: rgba(0,0,0,0.5);
  }
  .svc-panel.is-active .svc-panel-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%);
  }

  .svc-panel .svc-panel-content {
    opacity: 1;
    transform: none;
    transition: none;
    position: absolute;
    bottom: auto;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 1;
  }
  .svc-panel .svc-panel-num {
    margin-right: 12px;
    margin-bottom: 0;
    font-size: 0.75rem;
  }
  .svc-panel .svc-panel-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
  }
  .svc-panel .svc-panel-content p { display: none; }
  .svc-panel .svc-panel-link { display: none; }

  /* Açık panel */
  .svc-panel.is-active .svc-panel-content {
    top: auto;
    bottom: 0;
    height: auto;
    display: block;
    padding: 20px;
  }
  .svc-panel.is-active .svc-panel-num {
    margin-right: 0;
    margin-bottom: 8px;
    display: block;
  }
  .svc-panel.is-active .svc-panel-content h3 { 
    font-size: 1.125rem; 
    margin-bottom: 6px;
  }
  .svc-panel.is-active .svc-panel-content p { 
    display: block; 
    font-size: 0.8125rem; 
  }
  .svc-panel.is-active .svc-panel-link { 
    display: inline-flex; 
    margin-top: 8px;
    font-size: 0.75rem;
  }
}

/* ============================================
   PROJECTS
   ============================================ */
.projects {
  padding: 100px 0;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.project-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-img img { transform: scale(1.05); }
.project-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
}
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}
.project-status {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(34, 197, 94, 0.9);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.project-body {
  padding: 28px;
}
.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.project-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.project-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
}
.project-body h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.project-slogan {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 10px;
}
.project-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.6;
}
.project-features {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 20px;
}
.project-feature {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pf-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
}
.pf-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.project-actions {
  display: flex;
  gap: 12px;
}
.btn-project-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  padding: 12px 20px;
  background: var(--dark);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-project-primary:hover { background: var(--accent); }
.btn-project-outline {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
  padding: 12px 20px;
  background: transparent;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-project-outline:hover { border-color: var(--accent); color: var(--accent); }
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
  padding: 10px 18px;
  background: var(--gray-100);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.project-link:hover { background: var(--dark); color: var(--white); }

@media (max-width: 768px) {
  .projects { padding: 64px 0; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-header { flex-wrap: wrap; gap: 8px; }
  .project-features { flex-direction: column; gap: 12px; }
  .project-actions { flex-direction: column; }
  .btn-project-primary,
  .btn-project-outline { width: 100%; }
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 100px 0;
  background: var(--dark);
}
.process .section-header-center h2 {
  color: var(--white);
}
.process .section-header-center .section-tag {
  color: var(--accent);
}
.process .section-desc {
  color: rgba(255,255,255,0.5);
}
.process-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}
.process-card {
  flex: 1;
  background: transparent;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.process-card:last-child {
  border-right: none;
}
.process-card:hover {
  background: rgba(255,255,255,0.03);
}
.process-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--accent);
  transition: all 0.3s ease;
}
.process-card:hover .process-icon {
  background: var(--accent);
  color: var(--dark);
}
.process-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.process-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.process-card p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.process-arrow {
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  z-index: 2;
}
.process-card:last-child .process-arrow {
  display: none;
}

@media (max-width: 1024px) {
  .process-grid { flex-wrap: wrap; }
  .process-card { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .process-card:nth-child(2n) { border-right: none; }
  .process-arrow { display: none; }
}
@media (max-width: 768px) {
  .process { padding: 64px 0; }
  .process-card { flex: 0 0 100%; border-right: none; }
}

/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: var(--h2);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .cta { padding: 64px 0; }
}

/* ============================================
   GALLERY CAROUSEL
   ============================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}
.gallery-carousel {
  position: relative;
  padding: 0 56px;
}
.gallery-carousel-inner {
  overflow: hidden;
  border-radius: 14px;
}
.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
}
.gallery-track.is-dragging {
  cursor: grabbing;
  transition: none;
}
.gallery-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  pointer-events: none;
  user-select: none;
}
.gallery-slide:hover img {
  transform: scale(1.05);
}
.gallery-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-slide:hover .gallery-slide-overlay {
  opacity: 1;
}
.gallery-slide-overlay span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}
.gallery-arrow:hover {
  background: var(--dark);
  color: var(--white);
}
.gallery-arrow--prev { left: 0; }
.gallery-arrow--next { right: 0; }
@media (max-width: 1024px) {
  .gallery-carousel { padding: 0 48px; }
  .gallery-slide { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 768px) {
  .gallery-section { padding: 64px 0; }
  .gallery-carousel { padding: 0 40px; }
  .gallery-slide { flex: 0 0 85%; }
  .gallery-track { gap: 12px; }
  .gallery-arrow { width: 36px; height: 36px; }
  .gallery-slide-overlay { opacity: 1; }
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.is-open .modal-content {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.modal-close:hover {
  background: var(--gray-200);
  color: var(--dark);
}
.modal-header {
  text-align: center;
  margin-bottom: 28px;
}
.modal-logo {
  height: 32px;
  margin-bottom: 16px;
}
.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.modal-header p {
  font-size: 0.875rem;
  color: var(--gray-500);
}
.modal-form .form-group {
  margin-bottom: 14px;
}
.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.9375rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.3s ease;
  font-family: inherit;
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.btn-block {
  width: 100%;
  justify-content: center;
}
@media (max-width: 480px) {
  .modal-content { padding: 28px 20px; border-radius: 16px; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-bg img {
  display: none;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: var(--gray-100);
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.04) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a227' fill-opacity='0.07' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.contact::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
}
.contact-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form-box,
.contact-info-box {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
}
.contact-form-box h3,
.contact-info-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.contact-form-box .form-group {
  margin-bottom: 14px;
}
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--gray-100);
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.contact-form-box select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235c5c5c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
  color: var(--gray-500);
}
.contact-form-box textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form-box .btn-primary {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 8px;
}
.contact-info-box h3 {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cii-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  color: var(--accent);
  flex-shrink: 0;
}
.cii-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cii-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
}
.cii-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
}
.contact-social {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.contact-social > span {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 8px;
  color: var(--gray-600);
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--accent);
  color: var(--white);
}

@media (max-width: 768px) {
  .contact { padding: 48px 0; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 24px; }
  .contact-form-box,
  .contact-info-box { padding: 24px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 28px;
  width: auto;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--accent);
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-800);
}
.footer-bottom p {
  font-size: 0.875rem;
  color: var(--gray-600);
}
.footer-bottom-credit {
  font-size: 0.8125rem;
  color: var(--gray-600);
}
.footer-bottom-credit a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.footer-bottom-credit a:hover {
  color: var(--accent-light);
}

@media (max-width: 1024px) {
  .footer-main { gap: 48px; }
}
@media (max-width: 768px) {
  .footer { padding: 48px 0 0; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .footer-col h4 { margin-bottom: 12px; }
}
@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   ANIMATIONS (AOS-like)
   ============================================ */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
}
[data-aos="fade-up"] {
  transform: translateY(30px);
}
[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}
[data-aos="fade-down"] {
  transform: translateY(-30px);
}
[data-aos="fade-down"].aos-animate {
  transform: translateY(0);
}
[data-aos="fade-left"] {
  transform: translateX(50px);
}
[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}
[data-aos="fade-right"] {
  transform: translateX(-50px);
}
[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}
[data-aos="zoom-in"] {
  transform: scale(0.9);
}
[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* Stat suffix styling */
.stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

/* Hero parallax */
.hero-bg {
  will-change: transform;
}

/* Floating animation for hero tag */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-tag {
  animation: float 3s ease-in-out infinite;
}
.hero-tag.aos-animate {
  animation: float 3s ease-in-out infinite;
}
