/* ===================================
   PIRIL HALI YIKAMA - COMPLETE MODERN LUXURY STYLESHEET
   =================================== */

:root {
  --primary-navy: #070337;
  --text-navy: #070337;
  --accent-green: #06AE5A;
  --accent-green-hover: #048a47;
  --banner-yellow: #FFC000;
  --bg-beige: #F5EFEB;
  --bg-light: #F8FAF9;
  --font-serif: 'Playfair Display', 'Lora', serif;
  --font-sans: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

.text-center {
  text-align: center;
}

/* ===================================
   HEADER & NAVIGATION BAR
   =================================== */
.top-nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 12px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.top-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.main-menu ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.main-menu a {
  text-decoration: none;
  color: var(--text-navy);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}

.main-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--accent-green);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.main-menu a:hover,
.main-menu a.active {
  color: var(--accent-green);
}

.main-menu a:hover::after,
.main-menu a.active::after {
  width: 100%;
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent-green);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(6, 174, 90, 0.3);
  transition: all 0.25s ease;
}

.header-phone-btn:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 174, 90, 0.45);
}

.mobile-menu-toggle {
  display: none;
}

/* ===================================
   BACKGROUND VIDEO HERO SECTION
   =================================== */
.hero-section-video {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #070337;
  color: #ffffff;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1);
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(7, 3, 55, 0.4) 0%, rgba(7, 3, 55, 0.85) 100%);
  z-index: 2;
}

.hero-video-container {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  width: 100%;
  padding: 100px 24px 60px 24px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--banner-yellow);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-video-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-video-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 820px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
  font-weight: 400;
}

.hero-action-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #06AE5A 0%, #048243 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(6, 174, 90, 0.4);
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(6, 174, 90, 0.55);
}

.btn-hero-wa {
  background: #25D366;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}

.btn-hero-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-hero-play-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--banner-yellow);
  color: var(--text-navy);
  border: none;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 192, 0, 0.4);
  transition: all 0.3s ease;
}

.btn-hero-play-icon:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 25px rgba(255, 192, 0, 0.6);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 950px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--banner-yellow);
  color: var(--text-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stat-info strong {
  display: block;
  font-size: 1.15rem;
  color: #ffffff;
}

.stat-info span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   PAGE SUBHEADER BANNER (FOR SUBPAGES)
   =================================== */
.page-banner {
  background: linear-gradient(135deg, #070337 0%, #055a36 100%);
  color: #ffffff;
  padding: 90px 20px 60px 20px;
  text-align: center;
  position: relative;
  border-bottom: 4px solid var(--banner-yellow);
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.15);
}

.page-banner-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--banner-yellow);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  margin: 10px 0;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-breadcrumb {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumb a {
  color: var(--banner-yellow);
  text-decoration: none;
  font-weight: 600;
}

.page-breadcrumb .active-crumb {
  color: #ffffff;
  font-weight: 600;
}

/* ===================================
   YELLOW CONTACT BANNER
   =================================== */
.contact-banner {
  background-color: var(--banner-yellow);
  padding: 24px 40px;
  width: 100%;
}

.contact-banner-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.form-title-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.form-sub-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.form-heading {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-navy);
  margin: 0;
  white-space: nowrap;
}

.contact-form {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.input-icon-group {
  position: relative;
  flex: 1;
  min-width: 150px;
  display: flex;
  align-items: center;
}

.input-icon-group.flex-1 {
  flex: 1;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: var(--accent-green);
  font-size: 1rem;
  pointer-events: none;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.form-input-styled,
.form-select-styled {
  width: 100%;
  height: 50px;
  padding: 0 16px 0 46px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  background-color: #ffffff;
  color: #222222;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-input-styled:focus,
.form-select-styled:focus {
  border-color: var(--accent-green);
  box-shadow: 0 6px 20px rgba(6, 174, 90, 0.25);
}

.form-select-styled {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%3C06AE5A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.btn-send-modern {
  height: 50px;
  padding: 0 28px;
  background: linear-gradient(135deg, #06AE5A 0%, #048243 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(6, 174, 90, 0.35);
  white-space: nowrap;
}

.btn-send-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6, 174, 90, 0.45);
}

/* Floating Bottom Buttons */
.call-float-left {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-float-left .phone-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--accent-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.3rem;
  box-shadow: 0 4px 18px rgba(6, 174, 90, 0.4);
}

.call-float-left .call-badge {
  background-color: #333333;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===================================
   ABOUT SECTION (HOMEPAGE & HAKKIMIZDA)
   =================================== */
.about-section,
.about-detail-section {
  padding: 90px 40px;
  background: linear-gradient(180deg, #F8FAF9 0%, #FFFFFF 100%);
}

.about-container,
.about-detail-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-column {
  width: 100%;
}

.about-img-card,
.about-img-card-luxury {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(7, 3, 55, 0.12);
  border: 4px solid #ffffff;
}

.about-hero-img,
.about-img-card-luxury img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-floating-experience,
.experience-badge-floating {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--banner-yellow);
  color: var(--text-navy);
  padding: 16px 24px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 14px;
}

.exp-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.exp-number,
.exp-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.exp-label,
.exp-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content-column,
.about-text-column {
  width: 100%;
}

.section-tag-pill,
.yellow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--banner-yellow);
  color: var(--text-navy);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-main-title,
.section-heading-large {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.7rem);
  font-weight: 800;
  color: var(--text-navy);
  margin-bottom: 18px;
  line-height: 1.2;
}

.about-desc-lead,
.about-lead-p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-navy);
  margin-bottom: 14px;
  line-height: 1.6;
}

.about-desc-text,
.about-body-p {
  font-size: 0.92rem;
  color: #555555;
  margin-bottom: 28px;
  line-height: 1.6;
}

.about-features-modern-grid,
.values-grid-luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-mini-card,
.value-card-luxury {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1.5px solid #eef3f0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.25s ease;
}

.feature-mini-card:hover,
.value-card-luxury:hover {
  transform: translateY(-3px);
  border-color: var(--accent-green);
  box-shadow: 0 8px 25px rgba(6, 174, 90, 0.12);
}

.feat-icon-circle,
.val-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(6, 174, 90, 0.12);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.feat-info h4,
.val-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-navy);
  margin-bottom: 4px;
}

.feat-info p,
.val-content p {
  font-size: 0.82rem;
  color: #666666;
  line-height: 1.45;
}

/* CTA Strip Banner */
.cta-strip-banner {
  background: linear-gradient(135deg, #070337 0%, #055a36 100%);
  color: #ffffff;
  padding: 60px 40px;
}

.cta-strip-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-strip-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-strip-btns {
  display: flex;
  gap: 16px;
}

.btn-cta-white {
  background: #ffffff;
  color: var(--text-navy);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}

.btn-cta-green {
  background: #25D366;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}

/* ===================================
   SERVICES SECTION (DARK & LIGHT SHOWCASE)
   =================================== */
.services-section-dark {
  padding: 100px 40px;
  background: linear-gradient(135deg, #070337 0%, #055a36 100%);
  color: #ffffff;
  position: relative;
}

.services-detail-section {
  padding: 90px 40px;
  background-color: var(--bg-light);
}

.services-container,
.services-detail-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title-box,
.section-header-center {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
}

.yellow-pill-badge {
  display: inline-block;
  background-color: var(--banner-yellow);
  color: var(--text-navy);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.section-heading-light,
.section-title-large {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-heading-light { color: #ffffff; }
.section-title-large { color: var(--text-navy); }

.section-desc-light,
.section-subtitle-p {
  font-size: 1rem;
  margin: 0 auto 50px auto;
}

.section-desc-light { color: rgba(255, 255, 255, 0.85); }
.section-subtitle-p { color: #666666; }

.services-grid-modern,
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card-modern,
.service-card-luxury {
  background: #ffffff;
  color: #333333;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1.5px solid #eef3f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-modern:hover,
.service-card-luxury:hover {
  transform: translateY(-8px);
  border-color: var(--accent-green);
  box-shadow: 0 18px 45px rgba(6, 174, 90, 0.25);
}

.card-top-bar,
.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-icon-circle,
.svc-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(6, 174, 90, 0.12);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.card-badge-num,
.svc-num-badge {
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(7, 3, 55, 0.12);
}

.card-service-title,
.svc-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-navy);
  margin-bottom: 10px;
}

.card-service-desc,
.svc-desc {
  font-size: 0.9rem;
  color: #555555;
  margin-bottom: 20px;
  line-height: 1.55;
}

.card-check-list,
.svc-check-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-check-list li,
.svc-check-list li {
  font-size: 0.86rem;
  color: #444444;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.card-check-list li i,
.svc-check-list li i {
  color: var(--accent-green);
  font-size: 0.9rem;
}

.card-wa-btn,
.btn-svc-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #06AE5A 0%, #048243 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 15px rgba(6, 174, 90, 0.3);
  transition: all 0.25s ease;
}

.card-wa-btn:hover,
.btn-svc-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 174, 90, 0.45);
}

/* ===================================
   WHY US SECTION & TIMELINE
   =================================== */
.why-us-section {
  background-color: #ffffff;
}

.why-us-banner-modern {
  background: var(--banner-yellow);
  padding: 60px 40px;
}

.why-us-banner-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.banner-text-content {
  width: 100%;
}

.banner-sub-tag {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.banner-title-text {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.banner-para-text {
  font-size: 1rem;
  color: #222222;
  margin-bottom: 24px;
  line-height: 1.6;
}

.banner-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-banner-call {
  background: var(--text-navy);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(7, 3, 55, 0.25);
}

.btn-banner-wa {
  background: #25D366;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.banner-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(7, 3, 55, 0.15);
  border: 4px solid #ffffff;
}

.machine-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.timeline-container-modern {
  padding: 90px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.timeline-header {
  max-width: 750px;
  margin: 0 auto 50px auto;
}

.timeline-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--text-navy);
  margin: 10px 0;
}

.timeline-subtitle {
  font-size: 0.95rem;
  color: #666666;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step-card {
  background: var(--bg-light);
  padding: 34px 24px 24px 24px;
  border-radius: 20px;
  border: 1.5px solid #eef3f0;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-green);
  box-shadow: 0 12px 30px rgba(6, 174, 90, 0.15);
  background: #ffffff;
}

.step-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-green);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(6, 174, 90, 0.3);
}

.step-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--banner-yellow);
  color: var(--text-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 8px auto 16px auto;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-navy);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.88rem;
  color: #666666;
  line-height: 1.5;
}

/* ===================================
   FOOTER CONTACT FORM SECTION
   =================================== */
.contact-footer-section {
  padding: 90px 40px 80px 40px;
  background-color: var(--bg-light);
}

.contact-footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-tag-wrapper {
  text-align: center;
  margin-bottom: 8px;
}

.section-heading-footer {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--text-navy);
  text-align: center;
  margin-bottom: 50px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}

.info-icon-green {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(6, 174, 90, 0.12);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-navy);
  margin-bottom: 4px;
}

.info-text {
  font-size: 0.95rem;
  color: #555555;
}

.phone-numbers-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.info-phone-link {
  font-size: 1rem;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 700;
}

.footer-form-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(7, 3, 55, 0.08);
  border: 1.5px solid #eef3f0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 18px;
}

.btn-footer-send-modern {
  height: 52px;
  background: linear-gradient(135deg, #06AE5A 0%, #048243 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(6, 174, 90, 0.3);
  margin-top: 6px;
}

.btn-footer-send-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6, 174, 90, 0.4);
}

/* ===================================
   İLETİŞİM & CONTACT PAGE
   =================================== */
.contact-page-section {
  padding: 90px 40px;
  background-color: #ffffff;
}

.contact-page-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-cards-grid-luxury {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.contact-card-luxury {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 20px;
  border: 1.5px solid #eef3f0;
  box-shadow: 0 10px 30px rgba(7, 3, 55, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card-luxury:hover {
  transform: translateY(-5px);
  border-color: var(--accent-green);
  box-shadow: 0 15px 35px rgba(6, 174, 90, 0.15);
}

.cc-icon-circle-lg {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--banner-yellow);
  color: var(--text-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px auto;
}

.cc-icon-circle-lg.wa {
  background-color: #25D366;
  color: #ffffff;
}

.cc-title-lg {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-navy);
  margin-bottom: 8px;
}

.cc-text-lg {
  font-size: 0.92rem;
  color: #555555;
  line-height: 1.55;
}

.cc-text-lg a {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 700;
}

.cc-wa-btn-link {
  display: inline-block;
  margin-top: 10px;
  color: #25D366;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}

.contact-main-grid-luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-form-card-luxury {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(7, 3, 55, 0.08);
  border: 1.5px solid #eef3f0;
}

.form-header-box h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-navy);
  margin: 8px 0;
}

.form-header-box p {
  font-size: 0.92rem;
  color: #666666;
  margin-bottom: 24px;
}

.contact-form-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.btn-send-page-modern {
  height: 52px;
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-send-page-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.contact-map-card-luxury {
  background: #ffffff;
  padding: 12px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(7, 3, 55, 0.08);
  border: 1.5px solid #eef3f0;
  display: flex;
}

/* ===================================
   SITE FOOTER & COPYRIGHT
   =================================== */
.site-footer {
  background-color: var(--primary-navy);
  color: #ffffff;
  padding-top: 70px;
}

.footer-top-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 40px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease;
}

.footer-social-links a:hover {
  background: var(--accent-green);
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--banner-yellow);
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: 10px;
}

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-nav-list a:hover {
  color: var(--accent-green);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--accent-green);
  font-size: 1rem;
  margin-top: 3px;
}

.footer-contact-item a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom-bar {
  background-color: #040224;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   =================================== */
@media (max-width: 1024px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-grid-two,
  .footer-contact-grid,
  .why-us-banner-container,
  .contact-main-grid-luxury {
    grid-template-columns: 1fr;
  }

  .services-grid-modern,
  .services-full-grid,
  .process-steps-grid,
  .contact-cards-grid-luxury {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-nav {
    padding: 12px 20px;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-navy);
    cursor: pointer;
  }

  .main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }

  .main-menu.mobile-active {
    display: block;
  }

  .main-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .header-phone-box {
    display: none;
  }

  .services-grid-modern,
  .services-full-grid,
  .process-steps-grid,
  .about-features-modern-grid,
  .values-grid-luxury,
  .contact-cards-grid-luxury,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip-container,
  .contact-form-wrapper,
  .contact-form,
  .form-row {
    flex-direction: column;
    width: 100%;
  }

  .contact-banner {
    padding: 24px 16px;
  }

  .contact-banner-container {
    flex-direction: column;
    width: 100%;
  }

  .contact-form-wrapper {
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .form-title-group {
    text-align: center;
    align-items: center;
  }

  .input-icon-group,
  .form-input-styled,
  .form-select-styled,
  .btn-send-modern {
    width: 100%;
    min-width: 100%;
  }
}

/* Video Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 3, 55, 0.88);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(6px);
}

.modal-overlay.active {
  display: flex !important;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 850px;
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10001;
  line-height: 1;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* AI Assistant */
.ai-trigger-btn {
  position: fixed;
  bottom: 95px;
  right: 25px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #070337 0%, #055a36 100%);
  color: #ffffff;
  padding: 8px 16px 8px 10px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(7, 3, 55, 0.3);
}

.ai-icon-pulse {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  overflow: hidden;
}

.ai-btn-p-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-badge {
  font-size: 0.82rem;
  font-weight: 700;
}

.ai-chat-box {
  display: none;
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 370px;
  max-width: calc(100vw - 40px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(7, 3, 55, 0.25);
  z-index: 9999;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.ai-chat-box.active {
  display: flex;
}

.ai-chat-header {
  background: linear-gradient(135deg, #070337 0%, #055a36 100%);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  overflow: hidden;
}

.ai-header-p-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-chat-title {
  font-size: 1rem;
  font-weight: 700;
}

.ai-status {
  font-size: 0.75rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  display: inline-block;
}

.ai-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}

.ai-chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background-color: #f8faf9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-msg {
  display: flex;
  flex-direction: column;
  max-width: 82%;
  word-break: break-word;
}

.ai-msg.bot {
  align-self: flex-start;
  margin-right: auto;
}

.ai-msg.user {
  align-self: flex-end;
  margin-left: auto;
}

.msg-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.ai-msg.bot .msg-bubble {
  background-color: #ffffff;
  color: var(--text-navy);
  border-bottom-left-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #e6eeea;
}

.ai-msg.user .msg-bubble {
  background-color: var(--accent-green);
  color: #ffffff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 3px 10px rgba(6, 174, 90, 0.3);
  text-align: left;
}

.ai-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip-btn {
  background-color: #ffffff;
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 20px;
  cursor: pointer;
}

.chip-btn:hover {
  background-color: var(--accent-green);
  color: #ffffff;
}

.chip-btn.direct-wa {
  border-color: #25D366;
  color: #128C7E;
  background-color: #e8f9ee;
}

.ai-chat-footer {
  padding: 12px;
  background-color: #ffffff;
  border-top: 1px solid #eef2f0;
}

.ai-input-form {
  display: flex;
  gap: 8px;
}

#aiUserInput {
  flex: 1;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #e2e8e5;
  border-radius: 20px;
  font-size: 0.88rem;
  outline: none;
}

#aiUserInput:focus {
  border-color: var(--accent-green);
}

.ai-send-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--accent-green);
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.ai-btn-action {
  display: inline-block;
  background-color: var(--accent-green);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  margin-top: 6px;
}
