/* ==============================================
   FETTAH BİLİŞİM – Corporate IT Website
   style.css  |  Production Ready
   Logo Palette:
     Primary   : #1FA3B1
     Dark BG   : #0E3A4E
     Accent    : #2EC4D6
     Light BG  : #F4F9FB
     White     : #FFFFFF
   ============================================== */

/* -----------------------------------------------
   1. DESIGN TOKENS
----------------------------------------------- */
:root {
  /* === Brand Colors === */
  --primary:        #1FA3B1;    /* Turquoise Blue   */
  --primary-dark:   #178999;    /* Hover shade      */
  --primary-light:  #d6f2f5;    /* Tint background  */
  --accent:         #2EC4D6;    /* Light Cyan       */
  --dark:           #0E3A4E;    /* Deep Navy        */
  --dark-deep:      #082635;    /* Darker navy      */
  --dark-mid:       #144160;    /* Mid navy         */
  --dark-border:    rgba(255,255,255,.08);
  --light-bg:       #F4F9FB;    /* Section light bg */
  --white:          #FFFFFF;
  --gray-50:        #f8fafc;
  --gray-100:       #f1f5f9;
  --gray-200:       #e2e8f0;
  --gray-300:       #cbd5e1;
  --gray-400:       #94a3b8;
  --gray-500:       #64748b;
  --gray-600:       #475569;
  --gray-700:       #334155;
  --gray-800:       #1e293b;
  --text-body:      #2d4a5a;    /* Body text on light */
  --text-muted:     #5f7d8e;

  /* === Typography === */
  --font-body:      'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display:   'Space Grotesk', 'Plus Jakarta Sans', sans-serif;

  /* === Spacing === */
  --sec-py:         6rem;
  --sec-py-sm:      4rem;

  /* === Radius === */
  --r-sm:   0.5rem;
  --r-md:   0.875rem;
  --r-lg:   1.25rem;
  --r-xl:   1.625rem;
  --r-full: 999px;

  /* === Shadows === */
  --shadow-card:  0 4px 28px rgba(14, 58, 78, .10);
  --shadow-hover: 0 16px 48px rgba(14, 58, 78, .16);
  --shadow-glow:  0 0 40px rgba(46, 196, 214, .18);

  /* === Transitions === */
  --t-fast: 150ms ease;
  --t-base: 280ms ease;
  --t-slow: 450ms cubic-bezier(.4,0,.2,1);
}

/* -----------------------------------------------
   2. BASE RESET
----------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--dark);
}

::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color var(--t-base); }
img, svg { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* -----------------------------------------------
   3. SHARED SECTION ELEMENTS
----------------------------------------------- */
.section-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(31, 163, 177, .1);
  border: 1px solid rgba(31, 163, 177, .25);
  padding: .3rem .9rem;
  border-radius: var(--r-full);
  margin-bottom: .875rem;
}

/* Light variant (dark sections) */
.section-badge--light {
  color: var(--accent);
  background: rgba(46, 196, 214, .1);
  border-color: rgba(46, 196, 214, .25);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: .875rem;
}

.section-title--light { color: var(--white); }

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.75;
}

.section-sub--light { color: rgba(255,255,255,.65); }

/* -----------------------------------------------
   4. BUTTONS
----------------------------------------------- */

/* Primary brand button */
.btn-primary-brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: .875rem 2rem;
  border-radius: var(--r-full);
  border: none;
  box-shadow: 0 6px 20px rgba(31,163,177,.35);
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  cursor: pointer;
}

.btn-primary-brand:hover,
.btn-primary-brand:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(31,163,177,.45);
  color: var(--white);
}

/* Outline white */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: .875rem 2rem;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(255,255,255,.35);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.btn-outline-white:hover,
.btn-outline-white:focus-visible {
  background: rgba(255,255,255,.08);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* Outline brand (light sections) */
.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: .875rem 2.25rem;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(46,196,214,.4);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus-visible {
  background: rgba(46,196,214,.1);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Navbar CTA */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  background: var(--primary);
  color: var(--white);
  font-size: .875rem;
  font-weight: 600;
  padding: .55rem 1.3rem;
  border-radius: var(--r-full);
  border: none;
  box-shadow: 0 4px 14px rgba(31,163,177,.35);
  transition: background var(--t-base), transform var(--t-base);
  white-space: nowrap;
}

.btn-nav-cta:hover,
.btn-nav-cta:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--white);
}

/* Submit full-width */
.btn-submit-full {
  width: 100%;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: var(--r-md);
}

/* -----------------------------------------------
   5. NAVBAR
----------------------------------------------- */
#mainNav {
  background: rgba(8, 38, 53, .6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--dark-border);
  padding-top: .875rem;
  padding-bottom: .875rem;
  transition: background var(--t-slow), padding var(--t-slow), box-shadow var(--t-slow);
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(8, 38, 53, .98);
  padding-top: .6rem;
  padding-bottom: .6rem;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
  border-bottom-color: rgba(31,163,177,.15);
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

/* Navbar logo image */
.navbar-logo {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  /* Drop-shadow for dark background readability */
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.35));
  transition: opacity var(--t-base), transform var(--t-base);
}

.navbar-brand:hover .navbar-logo {
  opacity: .88;
  transform: translateY(-1px);
}

/* Scrolled state — slightly smaller logo */
#mainNav.scrolled .navbar-logo {
  height: 38px;
}

/* Footer logo image */
.footer-logo {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  /* Slight brightness lift so logo pops on dark footer */
  filter: brightness(1.05) drop-shadow(0 1px 4px rgba(0,0,0,.3));
}

/* Legacy text brand (kept as fallback, hidden when img is present) */
.brand-icon {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white); flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(31,163,177,.4);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}

.brand-text strong { color: var(--accent); font-weight: 800; }

.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.75) !important;
  padding: .5rem .75rem !important;
  border-radius: var(--r-sm);
  transition: color var(--t-base), background var(--t-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,.07);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(8,38,53,.98);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-md);
    padding: 1rem;
    margin-top: .75rem;
  }
  .navbar-nav { gap: .25rem; }
  .btn-nav-cta { margin-top: .5rem; width: 100%; justify-content: center; }
}

/* -----------------------------------------------
   6. HERO SECTION
----------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--dark-deep);
  overflow: hidden;
  padding-top: 5rem;
}

/* Gradient overlay */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, var(--dark) 0%, var(--dark-deep) 60%, #061d2c 100%);
}

/* Grid pattern */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,163,177,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,163,177,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 100%);
}

/* Glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 560px; height: 560px;
  top: -80px; right: -80px;
  background: radial-gradient(circle, rgba(31,163,177,.18) 0%, transparent 70%);
  animation: orbPulse 14s ease-in-out infinite;
}

.hero-orb-2 {
  width: 380px; height: 380px;
  bottom: -60px; left: -60px;
  background: radial-gradient(circle, rgba(46,196,214,.12) 0%, transparent 70%);
  animation: orbPulse 18s ease-in-out infinite reverse;
}

@keyframes orbPulse {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-25px) scale(1.06); }
}

/* Floating Tech Icons */
.hero-tech-icons {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-tech-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(31,163,177,.08);
  border: 1px solid rgba(31,163,177,.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: techFloat 8s ease-in-out infinite;
}

.hero-tech-icon-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.hero-tech-icon-2 {
  top: 25%;
  right: 12%;
  animation-delay: 1s;
}

.hero-tech-icon-3 {
  top: 45%;
  left: 5%;
  animation-delay: 2s;
}

.hero-tech-icon-4 {
  top: 60%;
  right: 8%;
  animation-delay: 3s;
}

.hero-tech-icon-5 {
  bottom: 25%;
  left: 10%;
  animation-delay: 4s;
}

.hero-tech-icon-6 {
  bottom: 15%;
  right: 15%;
  animation-delay: 5s;
}

.hero-tech-icon-7 {
  top: 35%;
  left: 15%;
  animation-delay: 6s;
}

.hero-tech-icon-8 {
  bottom: 35%;
  right: 5%;
  animation-delay: 7s;
}

@keyframes techFloat {
  0%,100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: .4;
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(5deg);
    opacity: .6;
  }
  50% {
    transform: translateY(-10px) translateX(-10px) rotate(-5deg);
    opacity: .5;
  }
  75% {
    transform: translateY(-30px) translateX(5px) rotate(3deg);
    opacity: .7;
  }
}

/* Tech Equipment Images */
.hero-tech-images {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-tech-img {
  position: absolute;
  width: 300px;
  height: 200px;
  border-radius: var(--r-lg);
  overflow: hidden;
  opacity: .12;
  filter: blur(2px);
  border: 1px solid rgba(31,163,177,.1);
}

.hero-tech-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tech-img-left {
  top: 20%;
  left: -5%;
  transform: rotate(-8deg);
  animation: techImgFloatLeft 12s ease-in-out infinite;
}

.hero-tech-img-right {
  bottom: 20%;
  right: -5%;
  transform: rotate(8deg);
  animation: techImgFloatRight 14s ease-in-out infinite;
}

@keyframes techImgFloatLeft {
  0%,100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-30px) rotate(-5deg);
  }
}

@keyframes techImgFloatRight {
  0%,100% {
    transform: translateY(0) rotate(8deg);
  }
  50% {
    transform: translateY(-30px) rotate(11deg);
  }
}

/* Hero inner */
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  padding-bottom: 5.5rem;
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--accent);
  background: rgba(46,196,214,.08);
  border: 1px solid rgba(46,196,214,.22);
  padding: .45rem 1.1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.75rem;
}

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.125rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

.hero-accent {
  color: var(--accent);
}

/* Subline */
.hero-subline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.6);
  max-width: 630px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* CTA group */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

/* Stats bar */
.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 1.5rem 2rem;
  backdrop-filter: blur(10px);
  max-width: 680px;
  margin: 0 auto;
}

.hero-stat {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 0 1.25rem;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat-suf {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat-lbl {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: .2rem;
  font-weight: 500;
}

.hero-stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: scrollBounce 2.8s ease-in-out infinite;
}

.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: var(--r-full);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: var(--r-full);
  animation: scrollDot 2.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollDot {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* -----------------------------------------------
   7. TRUST SECTION
----------------------------------------------- */
.trust-section {
  background: var(--white);
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.trust-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}

.trust-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-5px);
}

.trust-icon-wrap {
  font-size: 2.125rem;
  color: var(--primary);
  margin-bottom: .75rem;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: .5rem;
}

.trust-lbl {
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* -----------------------------------------------
   8. SERVICES SECTION
----------------------------------------------- */
.services-section {
  background: var(--light-bg);
  padding: var(--sec-py) 0;
}

/* Service Card */
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-slow);
}

/* Top accent line on hover */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(31,163,177,.2);
}

.svc-card:hover::before { transform: scaleX(1); }

/* Featured card */
.svc-card--featured {
  background: var(--dark);
  border-color: rgba(31,163,177,.2);
}

.svc-card--featured .svc-title   { color: var(--white); }
.svc-card--featured .svc-desc    { color: rgba(255,255,255,.55); }
.svc-card--featured .svc-list li { color: rgba(255,255,255,.75); }
.svc-card--featured .svc-link    { color: var(--accent); border-top-color: rgba(255,255,255,.1); }

.svc-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(46,196,214,.1);
  border: 1px solid rgba(46,196,214,.25);
  padding: .2rem .65rem;
  border-radius: var(--r-full);
}

.svc-icon {
  width: 56px; height: 56px;
  background: rgba(31,163,177,.08);
  border: 1px solid rgba(31,163,177,.15);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: background var(--t-base), box-shadow var(--t-base);
}

.svc-card:hover .svc-icon {
  background: rgba(31,163,177,.16);
  box-shadow: 0 0 20px rgba(31,163,177,.2);
}

.svc-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin: 0;
}

.svc-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.svc-list li i {
  color: var(--primary);
  font-size: .875rem;
  flex-shrink: 0;
  margin-top: .15rem;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--gray-200);
  transition: gap var(--t-fast), color var(--t-fast);
}

.svc-link:hover { gap: .75rem; color: var(--primary-dark); }

/* -----------------------------------------------
   9. PROJECTS SECTION
----------------------------------------------- */
.projects-section {
  background: var(--dark);
  padding: var(--sec-py) 0;
}

/* Project card link wrapper */
.proj-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.proj-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}

.proj-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }

.proj-inner {
  position: relative;
  height: 320px;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Project image */
.proj-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform var(--t-slow), opacity var(--t-slow);
}

.proj-card:hover .proj-image {
  transform: scale(1.08);
  opacity: .85;
}

/* Card-specific gradients — all within the brand dark palette */
.proj-inner--1 { background: linear-gradient(145deg, #0E3A4E 0%, #14506c 100%); }
.proj-inner--2 { background: linear-gradient(145deg, #082635 0%, #0E3A4E 100%); }
.proj-inner--3 { background: linear-gradient(145deg, #0a2e40 0%, #144160 100%); }
.proj-inner--4 { background: linear-gradient(145deg, #0d3547 0%, #0E3A4E 100%); }
.proj-inner--5 { background: linear-gradient(145deg, #082635 0%, #113554 100%); }
.proj-inner--6 { background: linear-gradient(145deg, #0b3244 0%, #0E3A4E 100%); }

.proj-icon-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  color: rgba(31,163,177,.07);
  transition: transform var(--t-slow);
  z-index: 1;
  pointer-events: none;
}

.proj-card:hover .proj-icon-bg { transform: scale(1.08) rotate(-5deg); }

.proj-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(8,38,53,.96) 0%, rgba(8,38,53,.6) 60%, transparent 100%);
  transition: padding var(--t-slow);
}

.proj-card:hover .proj-content { padding-bottom: 2rem; }

.proj-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(46,196,214,.1);
  border: 1px solid rgba(46,196,214,.25);
  padding: .2rem .65rem;
  border-radius: var(--r-full);
  margin-bottom: .6rem;
}

.proj-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
  line-height: 1.35;
}

.proj-desc {
  font-size: .825rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: .75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}

.proj-card:hover .proj-desc { opacity: 1; transform: translateY(0); }

.proj-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

.proj-meta span { display: flex; align-items: center; gap: .3rem; }
.proj-meta i    { color: var(--accent); }

/* -----------------------------------------------
   10. ABOUT SECTION
----------------------------------------------- */
.about-section {
  background: var(--white);
  padding: var(--sec-py) 0;
}

/* Visual panel */
.about-panel { position: relative; padding: 1.5rem; }

.about-panel-inner {
  position: relative;
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark-mid) 100%);
  border-radius: var(--r-xl);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(31,163,177,.12);
  box-shadow: 0 8px 40px rgba(14,58,78,.25);
}

.about-panel-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,163,177,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,163,177,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo in panel grid center */
.about-panel-logo {
  position: relative;
  z-index: 1;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.about-panel-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.15) drop-shadow(0 2px 8px rgba(0,0,0,.3));
}

/* Floating stat cards */
.about-float-card {
  position: absolute;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: .875rem 1.125rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: 1;
  min-width: 185px;
}

.about-float-card strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}

.about-float-card span {
  font-size: .775rem;
  color: rgba(255,255,255,.55);
}

.about-float-card--top {
  top: -1rem; right: -0.5rem;
  animation: floatUp 5s ease-in-out infinite;
}

.about-float-card--btm {
  bottom: -1rem; left: -0.5rem;
  animation: floatUp 5s ease-in-out infinite 2.5s;
}

.about-float-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white); flex-shrink: 0;
}

/* Logo in float card */
.about-float-logo {
  width: 50px; height: 50px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  padding: .4rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.15);
}

.about-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
}

@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* About text */
.about-lead {
  font-size: 1.0625rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-body {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Mission / Vision cards */
.mv-card {
  background: var(--light-bg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  height: 100%;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}

.mv-card:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(31,163,177,.25);
}

.mv-card i  { font-size: 1.5rem; color: var(--primary); margin-bottom: .75rem; display: block; }
.mv-card h4 { font-family: var(--font-display); font-size: .875rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.mv-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Why Us */
.why-us-title {
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--dark);
  margin-bottom: 1rem;
}

.why-us-list { display: flex; flex-direction: column; gap: .6rem; }

.why-us-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.why-us-list li i {
  color: var(--primary);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

/* -----------------------------------------------
   11. PARTNERS STRIP
----------------------------------------------- */
.partners-section {
  background: var(--light-bg);
  padding: 3rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.partners-lbl {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.partners-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.partner-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: color var(--t-base), border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}

.partner-pill i { font-size: 1rem; color: var(--gray-400); transition: color var(--t-base); }

.partner-pill:hover {
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(31,163,177,.15);
  transform: translateY(-2px);
}

.partner-pill:hover i { color: var(--primary); }

/* -----------------------------------------------
   12. PROCESS SECTION
----------------------------------------------- */
.process-section {
  background: var(--white);
  padding: var(--sec-py) 0;
}

.process-row { position: relative; }

.process-line {
  display: none;
  position: absolute;
  top: 78px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(31,163,177,.2) 20%, rgba(31,163,177,.2) 80%, transparent);
  pointer-events: none;
}

@media (min-width: 992px) { .process-line { display: block; } }

.process-card {
  background: var(--light-bg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: background var(--t-slow), border-color var(--t-slow), transform var(--t-slow), box-shadow var(--t-slow);
}

.process-card:hover {
  background: var(--white);
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.process-num {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  color: rgba(31,163,177,.12);
  line-height: 1;
  margin-bottom: .75rem;
  letter-spacing: -.04em;
  transition: color var(--t-slow);
}

.process-card:hover .process-num { color: rgba(31,163,177,.22); }

.process-icon-wrap {
  width: 58px; height: 58px;
  background: rgba(31,163,177,.08);
  border: 1.5px solid rgba(31,163,177,.18);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0 auto 1rem;
  transition: background var(--t-base), box-shadow var(--t-base);
}

.process-card:hover .process-icon-wrap {
  background: rgba(31,163,177,.16);
  box-shadow: 0 0 22px rgba(31,163,177,.2);
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .75rem;
}

.process-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* -----------------------------------------------
   13. CTA SECTION
----------------------------------------------- */
.cta-section {
  position: relative;
  background: var(--dark);
  padding: var(--sec-py-sm) 0;
  overflow: hidden;
}

.cta-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 15% 50%, rgba(31,163,177,.12) 0%, transparent 60%),
    radial-gradient(ellipse 70% 100% at 85% 50%, rgba(46,196,214,.08) 0%, transparent 60%);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.cta-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* -----------------------------------------------
   14. CONTACT SECTION
----------------------------------------------- */
.contact-section {
  background: var(--light-bg);
  padding: var(--sec-py) 0;
}

/* Info block */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 46px; height: 46px;
  background: var(--primary);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white); flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(31,163,177,.3);
}

.contact-info-row h4 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .3rem;
}

.contact-info-row p {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.contact-info-row a {
  color: var(--text-muted);
  display: block;
  transition: color var(--t-fast);
}

.contact-info-row a:hover { color: var(--primary); }

/* Social buttons */
.contact-socials {
  display: flex;
  gap: .75rem;
  padding-top: .5rem;
}

.contact-social-btn {
  width: 40px; height: 40px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--gray-500);
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.contact-social-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Form box */
.contact-form-box {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
}

.form-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
}

.req-star { color: #e53e3e; }

.c-input {
  background: var(--light-bg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .75rem 1rem;
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
}

.c-input:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3.5px rgba(31,163,177,.12);
  color: var(--dark);
  outline: none;
}

.c-input::placeholder { color: var(--gray-400); }

.c-input.is-invalid { border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,.1); }
.c-input.is-valid   { border-color: #38a169; box-shadow: none; }

.invalid-feedback { font-size: .8rem; color: #e53e3e; }

/* Success message */
.form-success-msg {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: #2f855a;
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
}

.form-error-msg {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: #c53030;
  background: #fed7d7;
  border: 1px solid #fc8181;
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
}

/* Map */
.map-box {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-card);
}

/* -----------------------------------------------
   15. FOOTER
----------------------------------------------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.6); }

.footer-top {
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid var(--dark-border);
}

.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

/* Footer social */
.footer-social-links {
  display: flex;
  gap: .6rem;
}

.footer-social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  color: rgba(255,255,255,.45);
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.footer-social-links a:hover {
  background: rgba(31,163,177,.15);
  border-color: rgba(31,163,177,.3);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-nav { display: flex; flex-direction: column; gap: .6rem; }

.footer-nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: block;
}

.footer-nav a:hover { color: var(--accent); padding-left: .4rem; }

.footer-contact { display: flex; flex-direction: column; gap: .9rem; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.55;
}

.footer-contact li i { color: var(--primary); font-size: .95rem; flex-shrink: 0; margin-top: .125rem; }

.footer-contact a { color: rgba(255,255,255,.45); transition: color var(--t-fast); }
.footer-contact a:hover { color: var(--accent); }

/* Footer bottom */
.footer-bottom { padding: 1.5rem 0; }

.footer-copy {
  font-size: .85rem;
  color: rgba(255,255,255,.3);
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .25rem;
}

.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  padding: .25rem .5rem;
  border-radius: var(--r-sm);
  transition: color var(--t-fast);
}

.footer-legal a:hover { color: var(--accent); }

@media (max-width: 767.98px) {
  .footer-legal { justify-content: center; margin-top: .5rem; }
}

/* -----------------------------------------------
   16. SCROLL-TO-TOP BUTTON
----------------------------------------------- */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--primary);
  border: none;
  border-radius: var(--r-sm);
  color: var(--white);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(31,163,177,.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--t-base), transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
  z-index: 999;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 28px rgba(31,163,177,.5);
  transform: translateY(-2px);
}

/* -----------------------------------------------
   17. SCROLL REVEAL ANIMATIONS
----------------------------------------------- */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}

.reveal-up    { transform: translateY(38px); }
.reveal-left  { transform: translateX(-38px); }
.reveal-right { transform: translateX(38px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0,0);
}

/* Stagger delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* -----------------------------------------------
   18. RESPONSIVE ADJUSTMENTS
----------------------------------------------- */
@media (max-width: 575.98px) {
  :root { --sec-py: 4rem; --sec-py-sm: 3rem; }

  .hero-stats-bar {
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero-stat-sep {
    width: 60px;
    height: 1px;
  }

  .hero-stat { padding: 0; }
  .contact-form-box { padding: 1.5rem 1.25rem; }

  /* Hide some tech icons on mobile */
  .hero-tech-icon-5,
  .hero-tech-icon-6,
  .hero-tech-icon-7,
  .hero-tech-icon-8 {
    display: none;
  }

  .hero-tech-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .hero-tech-img {
    width: 200px;
    height: 140px;
    opacity: .08;
  }
}

@media (max-width: 767.98px) {
  .about-float-card--top,
  .about-float-card--btm {
    position: static;
    animation: none;
    margin-bottom: .75rem;
  }

  .about-panel-inner {
    min-height: auto;
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: .75rem;
  }

  .about-panel-logo {
    width: 140px;
    height: 140px;
    padding: 1.5rem;
  }

  /* Hero tech elements on tablet */
  .hero-tech-img {
    width: 250px;
    height: 160px;
  }
}

/* -----------------------------------------------
   19. PAGE HEADER (Sub-pages)
----------------------------------------------- */
.page-header-section {
  position: relative;
  background: var(--dark);
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-deep) 100%);
}

.page-breadcrumb {
  margin-bottom: 1.5rem;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.breadcrumb-item a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color var(--t-fast);
}

.breadcrumb-item a:hover { color: var(--accent); }

.breadcrumb-item.active { color: var(--white); }

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  color: rgba(255,255,255,.4);
  padding: 0 .5rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* -----------------------------------------------
   20. PROJECT DETAIL PAGE
----------------------------------------------- */
.project-hero-image {
  background: var(--light-bg);
  padding: 3rem 0;
}

.project-hero-img-wrapper {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  max-width: 100%;
}

.project-hero-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: contain;
  object-position: center;
}

.project-info-section {
  background: var(--white);
  padding: var(--sec-py) 0;
}

.project-detail-content {
  max-width: 800px;
}

.project-section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.project-subtitle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.project-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.project-tech-list,
.project-results-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.project-tech-list li,
.project-results-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: .75rem;
}

.project-tech-list li i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .2rem;
}

.project-results-list li i {
  color: #f59e0b;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .2rem;
}

/* Project Sidebar */
.project-sidebar {
  position: sticky;
  top: 100px;
}

.project-sidebar-card {
  background: var(--light-bg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.sidebar-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.sidebar-info-list li:last-child { border-bottom: none; }

.sidebar-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.sidebar-label i { color: var(--primary); }

.sidebar-value {
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
}

.sidebar-desc {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Project Gallery */
.project-gallery-section {
  background: var(--light-bg);
  padding: var(--sec-py) 0;
}

.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-base), box-shadow var(--t-base);
  aspect-ratio: 4/3;
  max-height: 340px;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About Page - Çalışmalarımızdan Görüntüler */
.about-gallery-section {
  background: var(--light-bg);
}

.about-gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  max-height: 280px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.about-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Related Projects */
.related-projects-section {
  background: var(--white);
  padding: var(--sec-py) 0;
}

/* -----------------------------------------------
   21. ABOUT PAGE
----------------------------------------------- */
.about-page-section {
  background: var(--white);
  padding: var(--sec-py) 0;
}

.mission-vision-section {
  background: var(--light-bg);
  padding: var(--sec-py) 0;
}

.mv-card-large {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  height: 100%;
  text-align: center;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}

.mv-card-large:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.mv-icon-large {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(31,163,177,.3);
}

.mv-title-large {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.mv-text-large {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

.why-us-page-section {
  background: var(--white);
  padding: var(--sec-py) 0;
}

.why-card {
  background: var(--light-bg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.why-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(31,163,177,.1);
  border: 1.5px solid rgba(31,163,177,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 1.25rem;
  transition: background var(--t-base), box-shadow var(--t-base);
}

.why-card:hover .why-card-icon {
  background: rgba(31,163,177,.2);
  box-shadow: 0 0 20px rgba(31,163,177,.25);
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .75rem;
}

.why-card-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.values-section {
  background: var(--light-bg);
  padding: var(--sec-py) 0;
}

.value-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .75rem;
}

.value-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Projects Page */
.projects-page-section {
  background: var(--light-bg);
  padding: var(--sec-py) 0;
}

/* Service Detail Page */
.service-detail-main-section {
  padding: var(--sec-py) 0;
  background: var(--light-bg);
}

.service-detail-content {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.6vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.service-detail-content::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -160px;
  top: -180px;
  background: radial-gradient(circle, rgba(46,196,214,.18) 0%, rgba(46,196,214,0) 70%);
  pointer-events: none;
  animation: serviceGlowPulse 6s ease-in-out infinite;
}

.service-detail-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 24px rgba(31,163,177,.25);
}

.service-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--dark);
  margin-bottom: .85rem;
}

.service-detail-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  margin: 1.5rem 0 .8rem;
}

.service-detail-text {
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.8;
}

.service-inside-gallery {
  margin-top: 1.3rem;
}

.inside-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}

.inside-gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 160px;
  max-height: 260px;
  box-shadow: 0 12px 25px rgba(8,38,53,.12);
  border: 1px solid rgba(31,163,177,.18);
}

.inside-gallery-item--lg {
  grid-column: span 2;
  min-height: 220px;
  max-height: 340px;
}

.inside-gallery-item img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .65s ease, filter .65s ease;
  filter: saturate(1.06);
}

.inside-gallery-item--lg img {
  max-height: 340px;
}

.inside-gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,38,53,0) 35%, rgba(8,38,53,.7) 100%);
  z-index: 1;
}

.inside-gallery-item figcaption {
  position: absolute;
  left: .85rem;
  bottom: .8rem;
  z-index: 2;
  color: var(--white);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.inside-gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.15);
}

.service-detail-list,
.service-benefit-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.service-detail-list li,
.service-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.65;
}

.service-detail-list li i {
  color: var(--primary);
  margin-top: .15rem;
}

.service-benefit-list li i {
  color: var(--accent);
  margin-top: .15rem;
}

.service-detail-sidebar {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.1rem;
  box-shadow: var(--shadow-sm);
}

.service-sidebar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: .7rem;
}

.service-sidebar-text {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.btn-primary-brand {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--r-sm);
  padding: .72rem 1.1rem;
  margin-top: .85rem;
}

.btn-primary-brand:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn-outline-brand {
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  border-radius: var(--r-sm);
  padding: .7rem 1.05rem;
}

.btn-outline-brand:hover {
  background: var(--primary);
  color: var(--white);
}

@media (max-width: 991.98px) {
  .service-detail-sidebar {
    position: static;
    top: auto;
  }
}

/* Service Detail - Example Services */
.service-examples-section {
  background: var(--white);
  padding: var(--sec-py) 0;
}

.service-quick-highlights-section {
  background: var(--white);
  padding: 2rem 0 1.25rem;
}

.quick-highlight-card {
  background: var(--light-bg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.quick-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(31,163,177,.3);
}

.quick-highlight-image {
  width: 100%;
  height: 180px;
  max-height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.quick-highlight-card:hover .quick-highlight-image {
  transform: scale(1.06);
}

.quick-highlight-body {
  padding: 1rem 1rem 1.2rem;
}

.quick-highlight-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--dark);
  margin-bottom: .6rem;
}

.quick-highlight-desc {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: .95rem;
}

.service-spotlight-section {
  background: var(--light-bg);
  padding: var(--sec-py) 0;
}

.service-spotlight-image-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-spotlight-image {
  width: 100%;
  height: 320px;
  max-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}

.service-spotlight-image-wrap:hover .service-spotlight-image {
  transform: scale(1.07);
}

.service-spotlight-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  color: var(--dark);
  margin-bottom: .75rem;
}

.service-spotlight-desc {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.service-spotlight-list {
  display: flex;
  flex-direction: column;
  gap: .95rem;
}

.service-spotlight-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.service-spotlight-list li i {
  color: #f0821e;
  font-size: 1.25rem;
  margin-top: .2rem;
  flex-shrink: 0;
}

.service-spotlight-list li strong {
  color: var(--dark);
  display: block;
  font-family: var(--font-display);
  margin-bottom: .15rem;
}

.service-spotlight-list li p {
  margin: 0;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.65;
}

.service-sector-focus-section {
  background: var(--white);
  padding: var(--sec-py) 0;
}

.sector-pill-card {
  background: var(--light-bg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  min-height: 150px;
  text-align: center;
  padding: 1.15rem .8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.sector-pill-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31,163,177,.35);
  box-shadow: var(--shadow-card);
}

.sector-pill-card i {
  font-size: 2.15rem;
  color: #1f87e4;
}

.sector-pill-card h4 {
  margin: 0;
  color: var(--dark);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
}

.example-service-card {
  background: var(--light-bg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.example-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(31,163,177,.28);
}

.example-service-image {
  width: 100%;
  height: 260px;
  max-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.example-service-card:hover .example-service-image {
  transform: scale(1.05);
}

.example-service-body {
  padding: 1.2rem 1.2rem 1.35rem;
}

.example-service-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--dark);
  margin-bottom: .75rem;
}

.example-service-desc {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.example-service-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.example-service-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  color: var(--text);
  font-size: .92rem;
  line-height: 1.6;
}

.example-service-list li i {
  color: var(--primary);
  margin-top: .13rem;
}

@keyframes serviceGlowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: .9;
  }
  50% {
    transform: scale(1.12);
    opacity: .65;
  }
}

@media (max-width: 575.98px) {
  .inside-gallery-grid {
    grid-template-columns: 1fr;
  }

  .inside-gallery-item--lg {
    grid-column: auto;
    min-height: 180px;
    max-height: 260px;
  }
  .inside-gallery-item--lg img {
    max-height: 260px;
  }
}

/* -----------------------------------------------
   22. PRINT
----------------------------------------------- */
@media print {
  .navbar, .scroll-top-btn, .hero-scroll { display: none !important; }
  body { background: #fff; color: #000; }
}
