/* ============================================
   Çukurova Kepenk - Custom Modern Styles
   ============================================ */

/* ── Hero Section ── */
.ck-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ck-hero__media {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ck-hero__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(27,42,74,0.85) 0%, rgba(24,0,173,0.55) 100%);
  z-index: 1;
}

.ck-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.ck-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.ck-hero__title {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.ck-hero__title span {
  color: #ffffff;
}

.ck-hero__desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

.ck-hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: rgba(255,255,255,0.16);
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.9);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.22);
}

.btn-hero-primary i {
  color: inherit;
}

.btn-hero-primary:hover i {
  color: inherit;
}

.ck-hero__buttons .btn-hero-outline {
  background: transparent;
  color: #fff;
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ck-hero__buttons .btn-hero-outline:hover {
  background: #fff;
  color: #1B2A4A;
  border-color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ck-hero { min-height: 80vh; }
  .ck-hero__title { font-size: 32px; }
  .ck-hero__desc { font-size: 16px; }
}

/* ── Service Cards Modern ── */
.ck-service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.ck-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(27,42,74,0.2);
}

.ck-service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ck-service-card:hover .ck-service-card__img {
  transform: scale(1.08);
}

.ck-service-card__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(27,42,74,0) 30%, rgba(27,42,74,0.92) 100%);
  transition: background 0.4s;
}

.ck-service-card:hover .ck-service-card__overlay {
  background: linear-gradient(180deg, rgba(27,42,74,0.1) 20%, rgba(27,42,74,0.95) 100%);
}

.ck-service-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.4s;
}

.ck-service-card:hover .ck-service-card__content {
  transform: translateY(0);
}

.ck-service-card__title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ck-service-card__title a {
  color: inherit;
  text-decoration: none;
}

.ck-service-card__desc {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  opacity: 0;
  transition: opacity 0.4s;
}

.ck-service-card:hover .ck-service-card__desc {
  opacity: 1;
}

.ck-service-card__services {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  opacity: 0;
  transition: opacity 0.4s 0.1s;
}

.ck-service-card:hover .ck-service-card__services {
  opacity: 1;
}

.ck-service-card__services li {
  padding: 3px 0;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
}

.ck-service-card__services li a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.3s;
}

.ck-service-card__services li a:hover {
  color: #7B6FE0;
}

.ck-service-card__services li i {
  color: #7B6FE0;
  margin-right: 6px;
}

.ck-service-card__no-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1B2A4A 0%, #1800ad 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ck-service-card__no-img i {
  font-size: 64px;
  color: rgba(255,255,255,0.2);
}

/* ── About / Stats Section ── */
.ck-stats-section {
  background: linear-gradient(135deg, #1B2A4A 0%, #1a1a5e 50%, #1800ad 100%);
  position: relative;
}

.ck-stats-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/><circle cx="50" cy="50" r="25" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>') no-repeat center;
  background-size: contain;
}

.ck-stat-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}

.ck-stat-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.ck-stat-card__number {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.ck-stat-card__label {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ── FAQ Modern ── */
.ck-faq .accordion-item {
  border: 1px solid var(--border-color) !important;
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(27,42,74,0.04);
}

.ck-faq .accordion-button {
  font-weight: 600;
  font-size: 16px;
  color: var(--title-color);
  padding: 18px 24px;
  background: #fff;
  box-shadow: none !important;
}

.ck-faq .accordion-button:not(.collapsed) {
  background: var(--smoke-color);
  color: var(--theme-color);
}

.ck-faq .accordion-button::after {
  background-size: 16px;
}

.ck-faq .accordion-body {
  padding: 0 24px 20px;
  color: var(--body-color);
  line-height: 1.8;
}

/* ── Blog Cards Modern ── */
.ck-blog-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(27,42,74,0.06);
  transition: all 0.3s;
  height: 100%;
}

.ck-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(27,42,74,0.12);
}

.ck-blog-card__img {
  height: 220px;
  overflow: hidden;
}

.ck-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.ck-blog-card:hover .ck-blog-card__img img {
  transform: scale(1.06);
}

.ck-blog-card__body {
  padding: 24px;
}

.ck-blog-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.ck-blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.ck-blog-card__title a:hover {
  color: var(--theme-color);
}

.ck-blog-card__text {
  color: var(--body-color);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.ck-blog-card__link {
  color: var(--theme-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.ck-blog-card__link:hover {
  gap: 10px;
  color: var(--theme-color2);
}

/* ── Section Title Modern ── */
.ck-section-badge {
  display: inline-block;
  background: rgba(24,0,173,0.1);
  color: var(--theme-color);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ── Scroll Animations ── */
.ck-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ck-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Breadcrumb Modern ── */
.breadcumb-wrapper {
  background: linear-gradient(135deg, #1B2A4A 0%, #2E6AB4 100%) !important;
  position: relative;
  overflow: hidden;
}

.breadcumb-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.breadcumb-wrapper::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

/* ── Header Sticky Modern ── */
.sticky-wrapper.active {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(27,42,74,0.08);
}

/* ── Buttons Override ── */
.btn {
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24,0,173,0.25);
}

/* ── About Page ── */
.about-area-2 .about-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--body-color);
}

.about-area-2 .about-content p {
  margin-bottom: 16px;
}

/* ── Vision/Mission Cards ── */
.ck-vision-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(27,42,74,0.06);
  border-left: 4px solid var(--theme-color);
  transition: all 0.3s;
}

.ck-vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27,42,74,0.1);
}

.ck-vision-card h3 {
  color: var(--title-color);
  margin-bottom: 16px;
}

.ck-vision-card h3 i {
  color: var(--theme-color);
}

/* ── Contact Page Cards ── */
.contact-page-card {
  border-radius: 14px !important;
  padding: 32px !important;
  background: var(--smoke-color) !important;
  border: 1px solid rgba(24,0,173,0.08);
  transition: all 0.3s;
  height: 100%;
}

.contact-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(27,42,74,0.08);
}

.contact-page-card h4 {
  color: var(--title-color);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}

.contact-page-card h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--theme-color);
  border-radius: 2px;
}

/* ── Contact Form ── */
.contact-form .form-control {
  border-radius: 8px;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  font-size: 15px;
  transition: all 0.3s;
}

.contact-form .form-control:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 3px rgba(24,0,173,0.12);
}

/* ── Service Detail Page ── */
.page-single {
  background: #fff;
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(27,42,74,0.05);
}

.page-single .page-title {
  color: var(--title-color);
  font-weight: 700;
}

.page-single .page-img img {
  border-radius: 12px !important;
}

.page-single .page-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--body-color);
}

/* ── Sidebar ── */
.sidebar-area .widget {
  border-radius: 14px;
  overflow: hidden;
}

.sidebar-area .widget_title {
  color: var(--title-color);
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.sidebar-area .widget_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--theme-color);
  border-radius: 2px;
}

.widget_nav_menu .menu li {
  padding: 6px 0;
}

.widget_nav_menu .menu li a {
  color: var(--body-color);
  transition: all 0.3s;
}

.widget_nav_menu .menu li a:hover,
.widget_nav_menu .menu li.active a {
  color: var(--theme-color);
  padding-left: 6px;
}

/* ── Service Card in Listing ── */
.service-card {
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,42,74,0.06);
  transition: all 0.3s;
  background: #fff;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(27,42,74,0.12);
}

.service-card .service-card_img {
  height: 220px;
  overflow: hidden;
}

.service-card .service-card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card_img img {
  transform: scale(1.06);
}

.service-card .service-card_content {
  padding: 24px;
}

.service-card .service-card_title {
  font-weight: 700;
  color: var(--title-color);
}

.service-card .service-card_title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.service-card .service-card_title a:hover {
  color: var(--theme-color);
}

/* ── Footer Modern ── */
.footer-wrapper {
  background-color: #1B2A4A !important;
}

.footer-top-1 {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 30px;
}

.widget_title {
  position: relative;
  padding-bottom: 12px;
}

.widget_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--theme-color);
}

.copyright-wrap {
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── Map Section ── */
.map-area .map-sec iframe {
  width: 100%;
  min-height: 400px;
  border: none;
  border-radius: 0;
  filter: grayscale(20%);
}

/* ── Teklif Al Sidebar Button ── */
.sidebar-area .widget[style*="theme-color"] {
  border-radius: 14px !important;
}

/* ── Responsive fixes ── */
@media (max-width: 991px) {
  .page-single {
    padding: 24px;
    margin-bottom: 30px;
  }
  
  .ck-service-card {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .ck-service-card {
    height: 280px;
  }
  
  .ck-service-card__title {
    font-size: 18px;
  }
  
  .ck-stat-card__number {
    font-size: 32px;
  }
}
