/* ============================================================
   VOYA İNŞAAT — Ana Stil Dosyası
   ============================================================ */

:root {
  --color-dark: #1A1A1A;
  --color-gold: #C8A04D;
  --color-silver: #C0C0C0;
  --color-light: #F5F5F5;
  --color-white: #FFFFFF;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

/* ============================================================
   BUTONLAR
   ============================================================ */
.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
  border: 2px solid var(--color-gold);
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border-radius: 4px;
}
.btn-gold:hover {
  background: transparent;
  color: var(--color-gold);
}
.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border-radius: 4px;
}
.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-white);
}
.btn-dark-custom {
  background: var(--color-dark);
  color: var(--color-white);
  border: 2px solid var(--color-dark);
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border-radius: 4px;
}
.btn-dark-custom:hover {
  background: transparent;
  color: var(--color-dark);
}

/* ============================================================
   BÖLÜM BAŞLIKLARI
   ============================================================ */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title .subtitle {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
}
.section-title .divider {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 0 auto;
}
.section-title p {
  color: #666;
  margin-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 10px 0;
}
.site-header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  padding: 5px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}
.site-header .navbar-brand img {
  transition: var(--transition);
}
.site-header.scrolled .navbar-brand img {
  height: 40px;
}
.site-header .nav-link {
  color: var(--color-white) !important;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 16px !important;
  position: relative;
}
.site-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}
.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
  width: 60%;
}
.site-header .nav-link.active {
  color: var(--color-gold) !important;
}
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 12px;
  color: var(--color-white);
  font-size: 20px;
  transition: var(--transition);
}
.navbar-toggler:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.navbar-toggler:focus {
  box-shadow: none;
  border-color: var(--color-gold);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slider .owl-item {
  height: 100vh;
  min-height: 600px;
}
.hero-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-dark);
}
.hero-slide .slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide .slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide .slide-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide .slide-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.4) 100%);
  z-index: 1;
}
.hero-slide .slide-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}
.hero-slide .slide-content h1 {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-slide .slide-content .gold-line {
  width: 80px;
  height: 3px;
  background: var(--color-gold);
  margin: 0 auto 20px;
}
.hero-slide .slide-content p {
  font-size: 1.2rem;
  color: var(--color-silver);
  margin-bottom: 30px;
}
.hero-slider .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-slider .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  transition: var(--transition);
}
.hero-slider .owl-dot.active span {
  background: var(--color-gold);
  transform: scale(1.3);
}

/* ============================================================
   HAKKIMIZDA ÖZET
   ============================================================ */
.about-section {
  padding: 100px 0;
  background: var(--color-white);
  position: relative;
}
.about-section .about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.about-section .about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.about-section .about-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 25px 30px;
  border-radius: 8px;
  text-align: center;
  min-width: 140px;
  box-shadow: 0 10px 30px rgba(200,160,77,0.4);
  z-index: 2;
}
.about-section .about-image .experience-badge h3 {
  font-size: 2.5rem;
  margin-bottom: 0;
  line-height: 1;
}
.about-section .about-image .experience-badge span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-image .about-floating-card {
  position: absolute;
  top: 20px;
  left: -10px;
  background: var(--color-white);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.about-image .about-floating-card i {
  color: var(--color-gold);
  font-size: 24px;
}
.about-image .about-floating-card span {
  font-size: 14px;
  font-weight: 600;
}

/* Feature Grid */
.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-feature-box {
  background: var(--color-light);
  padding: 25px;
  border-radius: 8px;
  transition: var(--transition);
  border-left: 3px solid var(--color-gold);
}
.about-feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.about-feature-box .af-icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(200,160,77,0.15);
  border-radius: 8px;
  color: var(--color-gold);
  font-size: 18px;
  margin-bottom: 12px;
}
.about-feature-box h5 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.about-feature-box p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Değer Kartları */
.about-value-card {
  background: var(--color-light);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.about-value-card .av-icon {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background: var(--color-white);
  border-radius: 50%;
  margin: 0 auto 15px;
  color: var(--color-gold);
  font-size: 22px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  }
  .about-value-card h6 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .about-value-card p {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0;
  }
  
  /* ============================================================
     VIDEO SECTION
     ============================================================ */
  .video-section {
    padding: 100px 0;
    background: var(--color-light);
  }
  .video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    position: relative;
  }
  .video-thumb {
    position: relative;
    cursor: pointer;
  }
  .video-thumb img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
  }
  .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 28px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(200,160,77,0.4);
  }
  .video-wrapper:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-dark);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  }
  .video-wrapper video { width: 100%; display: block; background: #000; }
  #videoModal .modal-content { border: none; border-radius: 12px; overflow: hidden; }
  #videoModal .modal-header {
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    padding: 14px 20px;
  }
  #videoModal .modal-header .btn-close { filter: brightness(0) invert(1); }
  #videoModal .modal-title { font-size: 1rem; font-weight: 600; }
  #videoModal .modal-body { background: #000; line-height: 0; }
  @media (max-width: 767px) {
    .video-section {
      padding: 60px 0;
    }
    .video-thumb img {
      height: 250px;
    }
    .video-play-btn {
      width: 60px;
      height: 60px;
      font-size: 20px;
    }
  }

/* ============================================================
   HİZMETLER
   ============================================================ */
.services-section {
  padding: 100px 0;
  background: var(--color-light);
}
.service-card {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}
.service-card .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: var(--color-light);
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--color-gold);
  transition: var(--transition);
}
.service-card:hover .icon {
  background: var(--color-gold);
  color: var(--color-white);
}
.service-card h5 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card .read-more {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}
.service-card .read-more i {
  transition: var(--transition);
}
.service-card .read-more:hover i {
  transform: translateX(5px);
}

/* ============================================================
   PROJELER
   ============================================================ */
.projects-section {
  padding: 100px 0;
}
.project-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 30px;
}
.project-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition);
}
.project-card:hover img {
  transform: scale(1.1);
}
.project-card .project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: var(--transition);
}
.project-card:hover .project-overlay {
  opacity: 1;
}
.project-card .project-overlay h5 {
  color: var(--color-white);
  margin-bottom: 5px;
}
.project-card .project-overlay span {
  color: var(--color-gold);
  font-size: 14px;
}
.project-filter {
  text-align: center;
  margin-bottom: 40px;
}
.project-filter .btn-filter {
  background: none;
  border: 2px solid var(--color-silver);
  color: #666;
  padding: 8px 24px;
  margin: 5px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.project-filter .btn-filter:hover,
.project-filter .btn-filter.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

/* ============================================================
   İSTATİSTİKLER
   ============================================================ */
.stats-section {
  padding: 80px 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/pattern.png') repeat;
  opacity: 0.05;
}
.stat-item {
  text-align: center;
  padding: 30px 15px;
}
.stat-item .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-gold);
  font-family: var(--font-heading);
  line-height: 1;
}
.stat-item .stat-label {
  color: var(--color-silver);
  font-size: 1rem;
  margin-top: 10px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   REFERANSLAR / PROJELER
   ============================================================ */
.partners-section {
  padding: 80px 0;
  background: var(--color-white);
}
.partner-logo {
  padding: 20px;
  text-align: center;
  opacity: 0.6;
  transition: var(--transition);
}
.partner-logo:hover {
  opacity: 1;
}
.partner-logo img {
  max-height: 60px;
  filter: grayscale(100%);
  transition: var(--transition);
}
.partner-logo:hover img {
  filter: grayscale(0);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--color-light);
}
.testimonial-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
  margin: 15px;
}
.testimonial-card .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  border: 2px solid var(--color-gold);
}
.testimonial-card .name {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 5px;
}
.testimonial-card .position {
  color: var(--color-gold);
  font-size: 14px;
  margin-bottom: 15px;
}
.testimonial-card .text {
  color: #666;
  font-style: italic;
  line-height: 1.8;
}
.testimonial-card .stars {
  color: var(--color-gold);
  margin-bottom: 15px;
}

/* ============================================================
   CTA BANDI
   ============================================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
  text-align: center;
}
.cta-section h2 {
  color: var(--color-white);
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.cta-section p {
  color: var(--color-silver);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* ============================================================
   İLETİŞİM SAYFASI
   ============================================================ */
.page-banner {
  position: relative;
  padding: 200px 0 100px;
  background: var(--color-dark);
  text-align: center;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.6) 100%);
  z-index: 1;
}
.page-banner .banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner .banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-banner .container {
  position: relative;
  z-index: 2;
}
.page-banner h1 {
  color: var(--color-white);
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.page-banner .breadcrumb {
  justify-content: center;
  background: none;
}
.page-banner .breadcrumb a,
.page-banner .breadcrumb-item {
  color: var(--color-silver);
}
.page-banner .breadcrumb-item.active {
  color: var(--color-gold);
}
.page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: var(--color-silver);
}
.contact-section {
  padding: 100px 0;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.contact-info-item .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--color-light);
  border-radius: 50%;
  color: var(--color-gold);
  font-size: 18px;
  margin-right: 15px;
  flex-shrink: 0;
}
.contact-info-item h6 {
  margin-bottom: 5px;
}
.contact-info-item p {
  color: #666;
  margin-bottom: 0;
}
.contact-form .form-control,
.quote-form .form-control {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-family: var(--font-body);
  transition: var(--transition);
}
.contact-form .form-control:focus,
.quote-form .form-control:focus {
  border-color: var(--color-gold);
  box-shadow: none;
}
.contact-form textarea,
.quote-form textarea {
  resize: vertical;
  min-height: 140px;
}
.captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.captcha-question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 10px 16px;
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 1px;
}
.captcha-wrapper .form-control {
  flex: 1;
  min-width: 100px;
}
/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  margin-bottom: 30px;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}
.blog-card .blog-image {
  height: 240px;
  overflow: hidden;
}
.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.blog-card:hover .blog-image img {
  transform: scale(1.1);
}
.blog-card .blog-body {
  padding: 25px;
}
.blog-card .blog-meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
}
.blog-card .blog-meta i {
  margin-right: 5px;
}
.blog-card .blog-meta span {
  margin-right: 15px;
}
.blog-card .blog-body h5 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.blog-card .blog-body h5 a {
  color: var(--color-dark);
}
.blog-card .blog-body h5 a:hover {
  color: var(--color-gold);
}
.blog-card .blog-body p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}
.blog-detail-content {
  line-height: 1.9;
  color: #444;
}
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
  margin-top: 30px;
  margin-bottom: 15px;
}
.blog-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

/* ============================================================
   PROJE DETAY
   ============================================================ */
/* Gallery Slider */
.project-gallery-slider {
  position: relative;
}
.gallery-main .owl-stage-outer {
  border-radius: 8px;
  overflow: hidden;
}
.gallery-main .gallery-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  cursor: pointer;
}
.gallery-main .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}
.gallery-main .owl-nav button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  background: rgba(26,26,26,0.6) !important;
  color: var(--color-white) !important;
  border-radius: 50% !important;
  font-size: 18px !important;
  transition: var(--transition);
  opacity: 0;
  margin: 0 12px !important;
}
.project-gallery-slider:hover .gallery-main .owl-nav button {
  opacity: 1;
}
.gallery-main .owl-nav button:hover {
  background: var(--color-gold) !important;
}
.gallery-thumbs .thumb-item {
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
  opacity: 0.6;
}
.gallery-thumbs .thumb-item.active,
.gallery-thumbs .thumb-item:hover {
  border-color: var(--color-gold);
  opacity: 1;
}
.gallery-thumbs .thumb-item img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}
.project-info-card {
  background: var(--color-light);
  padding: 30px;
  border-radius: 8px;
}
.project-info-card h5 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.project-info-card h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-gold);
}
.project-info-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}
.project-info-item:last-child {
  border-bottom: none;
}
.project-info-item .label {
  color: #888;
  font-size: 14px;
}
.project-info-item .value {
  font-weight: 600;
}

/* ============================================================
   TEKLİF FORMU
   ============================================================ */
.file-upload-wrapper {
  position: relative;
}
.file-upload-wrapper .form-control {
  padding: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-dark);
  color: var(--color-silver);
  padding: 80px 0 0;
}
.footer-widget h5 {
  color: var(--color-white);
  margin-bottom: 25px;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 10px;
}
.footer-widget h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--color-silver);
  font-size: 14px;
}
.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}
.footer-contact {
  list-style: none;
  padding: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
}
.footer-contact li i {
  color: var(--color-gold);
  margin-right: 10px;
  margin-top: 3px;
}
.footer-contact a {
  color: var(--color-silver);
}
.footer-contact a:hover {
  color: var(--color-gold);
}
.social-links {
  margin-top: 20px;
}
.social-links a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
  border-radius: 50%;
  color: var(--color-silver);
  margin-right: 8px;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}
.newsletter-form .form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid #444;
  color: var(--color-white);
  padding: 12px;
}
.newsletter-form .form-control::placeholder {
  color: #888;
}
.newsletter-form .btn-gold {
  padding: 12px 20px;
}
.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid #333;
  font-size: 14px;
}
.text-gold {
  color: var(--color-gold);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 3px 15px rgba(200,160,77,0.4);
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

/* ============================================================
   SAYFA İÇERİĞİ
   ============================================================ */
.page-content {
  padding: 100px 0;
}
.page-content h2, .page-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}
.page-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}
.page-content ul, .page-content ol {
  padding-left: 20px;
  margin-bottom: 15px;
}
.page-content li {
  color: #555;
  line-height: 1.8;
}

/* ============================================================
   HARİTA
   ============================================================ */
.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .site-header {
    background: rgba(26,26,26,0.95);
  }
  .hero-slide .slide-content h1 {
    font-size: 2.5rem;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .page-banner h1 {
    font-size: 2rem;
  }
  /* Mobile menu fix */
  .navbar-collapse {
    background: var(--color-dark);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    max-height: 80vh;
    overflow-y: auto;
  }
  .navbar-nav.ms-auto {
    margin-left: 0 !important;
  }
  .site-header .nav-link {
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .site-header .nav-link::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-slide .slide-content h1 {
    font-size: 1.8rem;
  }
  .hero-slide .slide-content p {
    font-size: 1rem;
  }
  .stat-item .stat-number {
    font-size: 2.2rem;
  }
  .about-section {
    padding: 60px 0;
  }
  .about-features-grid {
    grid-template-columns: 1fr;
  }
  .about-section .about-image img {
    height: 300px;
  }
  .about-image .about-floating-card {
    display: none;
  }
  .about-section .about-image .experience-badge {
    bottom: -10px;
    right: -10px;
    padding: 18px;
    min-width: 100px;
  }
  .about-section .about-image .experience-badge h3 {
    font-size: 1.8rem;
  }
  .services-section {
    padding: 60px 0;
  }
  .projects-section {
    padding: 60px 0;
  }
  .testimonials-section {
    padding: 60px 0;
  }
  .cta-section h2 {
    font-size: 1.5rem;
  }
  .project-card img {
    height: 250px;
  }
}
