/**
* Template Name: QuickStart
* Template URL: https://bootstrapmade.com/quickstart-bootstrap-startup-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Montserrat", sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
  --background-color: #ffffff;
  --default-color: #3d4348;
  --heading-color: #3e5055;
  --accent-color: #388da8;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: #313336;
  --nav-hover-color: #77b6ca;
}

.light-background {
  --background-color: #f8fbfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header & Navigation
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  width: 100%;
}

.header .header-flex-container {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header .logo {
  line-height: 1.1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header .logo img {
  max-height: 65px;
  margin-right: 12px;
}

.header .logo h1 {
  font-family: var(--heading-font);
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: #000; /* Auro part (Black) */
  line-height: 1.1;
}

.nova-text { color: #041897 !important; }

/* Global Brand Consistency: Force "Auro" part to be black when wrapped with nova-text */
h1, h2, h3, h4, h5, p, span {
  /* This ensures that if AuroNova is inside any of these, the default 'Auro' part is black */
}
/* Specifically targeting headers that contain the brand to ensure black 'Auro' */
.logo h1, .hero h1, .section-title h2, .about-title, .sitename {
  color: #000 !important;
}

/* Desktop Navigation (min-width: 1200px) */
@media (min-width: 1200px) {
  .mobile-nav-toggle { display: none !important; }
  .nav-mobile-only { display: none !important; }

  .navmenu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 0 20px;
  }

  .navmenu ul {
    margin: 0;
    padding: 5px 12px;
    display: flex;
    list-style: none;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    border: 1px solid #f0f0f0;
    gap: 1px;
    flex-wrap: nowrap;
    max-width: 80vw;
  }

  .navmenu a {
    color: var(--nav-color);
    padding: 7px 14px;
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: 500;
    border-radius: 50px;
    transition: 0.3s;
    white-space: nowrap;
  }

  .navmenu a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    color: var(--accent-color);
  }

  .navmenu a.active {
    background-color: #f2f2f2 !important;
    color: #000 !important;
    font-weight: 600;
  }

  /* Integrated Super Pill */
  .auth-cart-integrated {
    border-left: 1px solid #ddd;
    margin-left: 10px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .btn-auth-teal-pill, .btn-auth-blue-pill {
    color: #fff !important;
    padding: 6px 15px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-block;
  }
  .btn-auth-teal-pill { background: #388da8; }
  .btn-auth-blue-pill { background: #041897; }

  .lang-switcher-pill {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    margin: 0 10px;
    gap: 5px;
  }
  .lang-switcher-pill a { color: var(--nav-color); }
  .lang-switcher-pill a.active { color: var(--accent-color); }
  .lang-switcher-pill .sep { color: #ddd; }

  .cart-toggle-pill {
    position: relative;
    font-size: 20px;
    color: var(--nav-color);
    cursor: pointer;
  }

  .cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent-color);
    color: #fff;
    font-size: 9px;
    padding: 2px 5px;
    border-radius: 50px;
    line-height: 1;
  }
}

/* Mobile Navigation (max-width: 1199.98px) */
@media (max-width: 1199.98px) {
  .navmenu ul { display: none !important; }
  .nav-desktop-actions { display: none !important; }

  .mobile-nav-toggle {
    display: flex !important;
    font-size: 32px;
    cursor: pointer;
    color: var(--nav-color);
    z-index: 1001;
  }

  .mobile-nav-active { overflow: hidden; }
  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(33, 37, 41, 0.8);
    display: block !important;
  }
  .mobile-nav-active .navmenu > ul {
    display: block !important;
    position: absolute;
    inset: 60px 20px 20px;
    background: #fff;
    border-radius: 8px;
    padding: 10px 0;
    overflow-y: auto;
  }
  .mobile-nav-active .navmenu > ul a {
    padding: 12px 20px;
    display: flex;
    color: var(--nav-color);
  }
  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.index-page .header { --background-color: rgba(255, 255, 255, 0); }
.index-page.scrolled .header { --background-color: #ffffff; }

/*--------------------------------------------------------------
# Sections & Global Elements
--------------------------------------------------------------*/
.section { padding: 80px 0; }
.section-title { text-align: center; padding-bottom: 60px; }
.section-title h2 { font-size: 32px; font-weight: 700; color: #041897; margin-bottom: 20px; }
.section-title h2:after { content: ""; display: block; width: 50px; height: 3px; background: var(--accent-color); margin: 20px auto 0; }

.hero {
  width: 100%;
  min-height: 70vh;
  padding: 160px 0 100px 0;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 90% 10%, rgba(56, 141, 168, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 10% 90%, rgba(4, 24, 151, 0.05) 0%, transparent 40%);
}

.hero h1 {
  font-family: var(--heading-font);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #000; /* Auro part (Black) */
}

.hero p {
  font-size: 22px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 18px; }
}

/* Visual Project Cards */
.visual-project-card {
  background: #fff; height: 100%; min-height: 420px; border-radius: 20px;
  display: flex; flex-direction: column; overflow: hidden; transition: 0.3s;
  border: 1px solid #f0f0f0; box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.visual-project-card:hover { transform: translateY(-8px); border-color: #041897; }
.project-img-container { width: 100%; height: 180px; overflow: hidden; }
.project-img-container img { width: 100%; height: 100%; object-fit: cover; }
.project-info-container { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.project-info-container h4 { font-weight: 700; font-size: 1.15rem; color: #000; }
.project-info-container .mt-auto { margin-top: auto; }

/* SPA Experience Badge - Fixed Local Positioning */
#project-details-section #spa-project-img-wrapper {
  position: relative !important;
  display: inline-block !important;
}

#project-details-section .experience-badge {
  position: absolute !important;
  top: -20px !important;
  left: -20px !important;
  z-index: 99 !important;
  pointer-events: none !important;
}

/*--------------------------------------------------------------
# Premium Service Cards (Index)
--------------------------------------------------------------*/
.service-card-premium {
  background: #fff; padding: 40px 30px; border-radius: 24px; border: 1px solid #f0f4f9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); height: 100%; transition: all 0.4s ease;
  position: relative; overflow: hidden; z-index: 1;
}
.service-card-premium:hover { transform: translateY(-12px); box-shadow: 0 20px 50px rgba(4, 24, 151, 0.08); border-color: #388da8; }
.service-card-premium .card-icon { width: 60px; height: 60px; background: rgba(56, 141, 168, 0.1); color: #388da8; display: flex; align-items: center; justify-content: center; border-radius: 14px; font-size: 28px; margin-bottom: 25px; transition: 0.3s; }
.service-card-premium:hover .card-icon { background: #388da8; color: #fff; transform: scale(1.1); }
.service-card-premium .title { margin-bottom: 15px; font-weight: 700; font-size: 1.25rem; }
.service-card-premium .title a { color: #333; }
.card-footer-decor { position: absolute; bottom: 0; left: 0; width: 0; height: 4px; background: #388da8; transition: width 0.4s ease; }
.service-card-premium:hover .card-footer-decor { width: 100%; }

/*--------------------------------------------------------------
# Features Section (Professional Tabs)
--------------------------------------------------------------*/
.features .nav-tabs { border: none !important; display: flex; flex-direction: column; gap: 15px; }
.features .nav-link { border: 1px solid #f0f4f9 !important; background: #fff !important; padding: 25px !important; border-radius: 16px !important; display: flex !important; align-items: center !important; transition: all 0.3s ease !important; text-align: left !important; box-shadow: 0 5px 15px rgba(0,0,0,0.02); width: 100%; }
.features .nav-link i { width: 50px; height: 50px; background: rgba(56, 141, 168, 0.1); color: #388da8; display: flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 24px; margin-right: 20px; flex-shrink: 0; transition: 0.3s; }
.features .nav-link.active { border-color: #041897 !important; background: #fcfdfe !important; box-shadow: 0 10px 25px rgba(4, 24, 151, 0.05) !important; }
.features .nav-link.active i { background: #041897; color: #fff; }
.features .tab-pane img { border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); border: 8px solid #fff; }

/*--------------------------------------------------------------
# About Section Premium
--------------------------------------------------------------*/
.about .about-meta { color: #388da8; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.about .about-title { font-size: 36px; font-weight: 800; color: #041897; margin-bottom: 20px; }
.about img { border-radius: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); width: 100%; height: auto; object-fit: cover; }

/* Stats & Experience Badges */
.experience-badge-about { position: absolute; bottom: 0px; left: -20px; background: #041897; color: #fff; padding: 25px; border-radius: 24px; box-shadow: 0 15px 35px rgba(4, 24, 151, 0.3); display: flex; flex-direction: column; align-items: center; min-width: 140px; animation: bounceBadgeAbout 3s infinite ease-in-out; z-index: 5; }
@keyframes bounceBadgeAbout { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.experience-badge-about .number { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.experience-badge-about .text { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.info-item-premium { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.info-item-premium .icon-box { width: 45px; height: 45px; background: rgba(56, 141, 168, 0.1); color: #388da8; display: flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 20px; flex-shrink: 0; }

/*--------------------------------------------------------------
# Premium Stats Section
--------------------------------------------------------------*/
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  transform: translateY(-50px);
  z-index: 10;
  position: relative;
  border: 1px solid #f0f4f9;
}

/* Single Item Alignment Fix */
.stats-grid[style*="1fr"] {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  grid-template-columns: 1fr !important;
}

.stat-item {
  text-align: center;
  border-right: 1px solid #f0f4f9;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item:last-child { border-right: none; }

.stat-item .count {
  font-size: 2.8rem;
  font-weight: 900;
  color: #041897;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 0.95rem;
  color: #777;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; transform: translateY(0); margin-bottom: 40px; }
  .stats-grid[style*="1fr"] { grid-template-columns: 1fr !important; }
  .stat-item { border-right: none; }
}

/*--------------------------------------------------------------
# Professional Buttons
--------------------------------------------------------------*/
.btn-primary, .btn-outline-primary {
  padding: 14px 40px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #041897;
  border: 2px solid #041897;
  color: #fff;
  box-shadow: 0 4px 15px rgba(4, 24, 151, 0.2);
}

.btn-primary:hover {
  background: #388da8;
  border-color: #388da8;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(56, 141, 168, 0.3);
}

.btn-outline-primary {
  color: #041897;
  border: 2px solid #041897;
  background: transparent;
}

.btn-outline-primary:hover {
  background: #041897;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(4, 24, 151, 0.2);
}

.premium-mission-card { background: #fff; padding: 50px 40px; border-radius: 30px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04); height: 100%; border-bottom: 5px solid transparent; transition: 0.4s; position: relative; }
.premium-mission-card:hover { transform: translateY(-10px); border-bottom-color: #041897; }
.card-icon-top { font-size: 3rem; color: rgba(4, 24, 151, 0.1); position: absolute; top: 20px; right: 30px; transition: 0.4s; }

/*--------------------------------------------------------------
# Porsche Concept UI - Contact Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Porsche Concept UI - Contact Page (Kompakt %10 Daha)
--------------------------------------------------------------*/
.contact-container-premium {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #041897;
  height: 100%;
}

.contact-field-wrapper {
  margin-bottom: 15px;
  position: relative;
}

.form-control-premium {
  width: 100%;
  padding: 12px 18px;
  background: #f8fafc;
  border: 2px solid #f0f4f9;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #333;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-control-premium:focus {
  background: #fff;
  border-color: #041897;
  box-shadow: 0 10px 20px rgba(4, 24, 151, 0.05);
  outline: none;
}

select.form-control-premium {
  appearance: auto;
  cursor: pointer;
}

.btn-send-premium {
  width: 100%;
  padding: 15px;
  background: #041897;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(4, 24, 151, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-send-premium:hover {
  background: #388da8;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(56, 141, 168, 0.3);
}

.map-container-premium {
  border-top: 6px solid #388da8 !important; /* Secondary Porsche Accent */
}

.news-card .card-img-top {
  width: 100%;
  height: 240px; /* Sabit resim boyutu */
  object-fit: cover;
  object-position: center;
}

/*--------------------------------------------------------------
# Premium Shopping Cart (Natro Style)
--------------------------------------------------------------*/
.offcanvas-cart {
  width: 400px !important;
  border-left: none;
  background: #f8fafc;
}

.cart-items-container {
  background: #fff;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid #f1f5f9;
  transition: 0.3s;
}

.cart-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cart-summary-premium {
  background: #fff;
  border-top: 1px solid #f0f4f9;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.02);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.discount-line {
  background: #f0f7ff;
  margin: 0 -24px;
  padding: 12px 24px;
}

.summary-total-label {
  font-size: 0.9rem;
  color: #666;
}

.grand-total-line {
  margin-top: 15px;
}

.coupon-section a {
  text-decoration: none;
}

/* Pricing Section (Professional & Aligned) */

.pricing .pricing-item {
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f0f4f9;
  height: 100%;
  transition: 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pricing .pricing-item:hover {
  transform: translateY(-10px);
  border-color: #388da8;
  box-shadow: 0 15px 40px rgba(4, 24, 151, 0.1);
}

.pricing .price {
  font-size: 42px;
  font-weight: 800;
  color: #041897;
  margin-bottom: 20px;
}

.pricing .buy-btn {
  display: block;
  padding: 12px 30px;
  border-radius: 50px;
  color: #388da8;
  border: 2px solid #388da8;
  font-weight: 700;
  text-align: center;
  margin-top: auto; /* Butonu en alta sabitler */
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: #388da8;
  color: #fff;
}

.pricing .featured {
  border: 2px solid #388da8;
}

.pricing .featured .buy-btn {
  background: #388da8;
  color: #fff;
}


/*--------------------------------------------------------------
# FAQ Section (Professional)
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  background: #fff;
  border: 1px solid #f0f4f9;
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq .faq-item h3 {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
  padding-right: 40px;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq .faq-item h3:before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(56, 141, 168, 0.1);
  color: #388da8;
  border-radius: 8px;
  font-size: 14px;
  flex-shrink: 0;
  transition: 0.3s;
}

.faq .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.faq .faq-item .faq-content p {
  padding-top: 15px;
  margin-bottom: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq .faq-item .faq-toggle {
  position: absolute;
  top: 25px;
  right: 20px;
  font-size: 16px;
  transition: 0.3s;
  color: #aaa;
}

.faq .faq-item.faq-active {
  border-color: #041897;
  background: #fcfdfe;
  box-shadow: 0 10px 25px rgba(4, 24, 151, 0.05);
}

.faq .faq-item.faq-active h3 { color: #041897; }
.faq .faq-item.faq-active h3:before { background: #041897; color: #fff; }
.faq .faq-item.faq-active .faq-content { max-height: 500px; opacity: 1; }
.faq .faq-item.faq-active .faq-toggle { transform: rotate(180deg); color: #041897; }


/*--------------------------------------------------------------
# Footer & Stars
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer Professional Styling
--------------------------------------------------------------*/
.footer {
  background: #fcfdfe;
  padding: 80px 0 30px;
  font-size: 14px;
  border-top: 1px solid #f0f4f9;
}

.footer .footer-top {
  margin-bottom: 50px;
}

.footer .footer-about .logo span {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.footer h4 {
  font-size: 16px;
  font-weight: 800;
  color: #041897;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul i {
  margin-right: 8px;
  font-size: 12px;
  color: #388da8;
}

.footer .footer-links ul a {
  color: #666;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #041897;
  padding-left: 5px;
}

/* Newsletter Premium */
.footer-newsletter p {
  color: #777;
  margin-bottom: 25px;
}

.footer-newsletter .newsletter-form {
  background: #fff;
  padding: 6px;
  padding-left: 20px;
  border-radius: 50px;
  border: 1.5px solid #eef2f7;
  display: flex;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.footer-newsletter .newsletter-form:focus-within {
  border-color: #388da8;
  box-shadow: 0 10px 25px rgba(56, 141, 168, 0.1);
}

.footer-newsletter .newsletter-form input[type=email] {
  border: none;
  width: 100%;
  background: transparent;
  outline: none;
  font-family: inherit;
  color: #333;
}

.footer-newsletter .newsletter-form input[type=submit] {
  border: none;
  background: #041897;
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
  cursor: pointer;
}

.footer-newsletter .newsletter-form input[type=submit]:hover {
  background: #388da8;
  transform: scale(1.02);
}

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  display: none; /* Başlangıçta gizli tut */
  border-radius: 12px;
  padding: 12px;
  margin-top: 15px;
  font-weight: 600;
  text-align: center;
  font-size: 13px;
}

.php-email-form .loading { background: #f8fafc; color: #041897; }
.php-email-form .error-message { background: #fff5f5; color: #c53030; }
.php-email-form .sent-message { background: #f0fff4; color: #2f855a; }

/* Social Icons */
.footer .social-links a {
  width: 38px;
  height: 38px;
  background: #f8fafc;
  color: #041897;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 10px;
  transition: 0.3s;
  border: 1.5px solid #eef2f7;
}

.footer .social-links a:hover {
  background: #041897;
  color: #fff;
  transform: translateY(-3px);
}


.stars-container { position: fixed; inset: 0; z-index: -2; background: #fff; }
#stars { width: 1px; height: 1px; background: transparent; box-shadow: 1744px 122px #388da8, 134px 1321px #388da8; animation: animStar 50s linear infinite; opacity: 0.15; }
@keyframes animStar { from { transform: translateY(0px); } to { transform: translateY(-2000px); } }

/*--------------------------------------------------------------
# Swiper Outer Nav
--------------------------------------------------------------*/
#projects .swiper { padding-bottom: 60px !important; }
#projects .swiper-pagination { bottom: 0px !important; }
.project-swiper-prev, .project-swiper-next { width: 45px; height: 45px; background: #fff; border-radius: 50%; box-shadow: 0 5px 15px rgba(0,0,0,0.1); color: var(--accent-color); top: 50% !important; transform: translateY(-50%); position: absolute; z-index: 10; display: flex; align-items: center; justify-content: center; }
.project-swiper-prev { left: -60px !important; }
.project-swiper-next { right: -60px !important; }
@media (max-width: 1350px) { .project-swiper-prev { left: 5px !important; } .project-swiper-next { right: 5px !important; } }

/*--------------------------------------------------------------
# Image Placeholders & Frames
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Interactive Quote Wizard
--------------------------------------------------------------*/
.wizard-container {
  border: 1px solid #f0f4f9;
  position: relative;
  overflow: hidden;
}

.wizard-card-label {
  display: block;
  cursor: pointer;
  height: 100%;
}

.wizard-card {
  padding: 30px 20px;
  border: 2px solid #f0f4f9;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  background: #fff;
  height: 100%;
}

.wizard-card i {
  color: #388da8;
  transition: 0.3s;
}

.wizard-card h6 {
  margin: 0;
  font-weight: 700;
  color: #444;
}

.wizard-card-label input:checked + .wizard-card {
  border-color: #041897;
  background: #fcfdfe;
  box-shadow: 0 10px 30px rgba(4, 24, 151, 0.08);
  transform: translateY(-5px);
}

.wizard-card-label input:checked + .wizard-card i {
  color: #041897;
  transform: scale(1.1);
}

.wizard-card-label input:checked + .wizard-card h6 {
  color: #041897;
}

.wizard-card:hover:not(.checked) {
  border-color: #388da8;
}

/* Step Animations */
.wizard-step {
  animation: fadeInStep 0.5s ease;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Custom UI Tweaks */
.shadow-lg {
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.1) !important;
}

/*--------------------------------------------------------------
# Porsche Concept UI (Option 2 Refined - No Icons)
--------------------------------------------------------------*/
.modal-content {
  border-radius: 30px !important;
  border: none !important;
  border-top: 6px solid #041897 !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12) !important;
  overflow: hidden;
}

.modal-header {
  padding: 30px 40px 10px 40px !important;
}

.modal-body {
  padding: 10px 40px 40px 40px !important;
}

.nav-tabs {
  border-bottom: 2px solid #f0f4f9 !important;
  margin-bottom: 30px !important;
}

.nav-tabs .nav-link {
  border: none !important;
  color: #777 !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  padding: 15px 25px !important;
  background: none !important;
  transition: 0.3s;
}

.nav-tabs .nav-link.active {
  color: #041897 !important;
  border-bottom: 3px solid #041897 !important;
}

.form-label {
  font-weight: 700 !important;
  color: #333 !important;
  font-size: 0.85rem !important;
  margin-bottom: 10px !important;
}

.form-control {
  padding: 16px 20px !important;
  background: #f8fafc !important;
  border: 2px solid #f0f4f9 !important;
  border-radius: 15px !important;
  font-size: 0.95rem !important;
  color: #333 !important;
  transition: all 0.3s ease !important;
}

.form-control:focus {
  background: #fff !important;
  border-color: #041897 !important;
  box-shadow: 0 10px 20px rgba(4, 24, 151, 0.05) !important;
  outline: none !important;
}

.btn-auth {
  width: 100%;
  padding: 18px !important;
  background: #041897 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 15px !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  transition: 0.3s !important;
  box-shadow: 0 10px 25px rgba(4, 24, 151, 0.2) !important;
}

.btn-auth:hover {
  background: #388da8 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 30px rgba(56, 141, 168, 0.3) !important;
}

/* Auth Modal Specific Fixes */
#authModal .modal-dialog { max-width: 500px; }
#authModal .form-check-input:checked { background-color: #041897; border-color: #041897; }

.grayscale-hover div {
  filter: grayscale(100%);
  opacity: 0.3; /* Sönük başlangıç */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.grayscale-hover div:hover {
  filter: grayscale(0%);
  opacity: 1; /* Parlayan sonuç */
  transform: scale(1.08);
  filter: drop-shadow(0 10px 20px rgba(4, 24, 151, 0.15));
}

.grayscale-hover div:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.shadow-2xl {
  box-shadow: 0 25px 60px -15px rgba(4, 24, 151, 0.15);
}

.img-placeholder-frame {
  width: 100%;
  height: 100%;
  min-height: 250px;
  background: #f1f4f9; /* Hafif koyulaştırılmış zemin */
  border: 2px dashed #d1d9e6; /* Daha belirgin çerçeve */
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #4a5568; /* Daha koyu, okunabilir yazı */
  font-weight: 800; /* Daha kalın duruş */
  transition: all 0.3s ease;
}

.img-placeholder-frame:hover {
  background: #f1f5f9;
  border-color: #388da8;
  color: #388da8;
  border-style: solid;
}

.services-img {
  max-height: 450px;
  width: 100%;
  object-fit: cover;
}

.process-step {
  position: relative;
  padding-top: 20px;
}

.step-num {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(4, 24, 151, 0.05);
  line-height: 1;
  z-index: 0;
}

.process-step h6 {
  position: relative;
  z-index: 1;
  color: #041897;
  margin-bottom: 10px;
}

.process-step p {
  position: relative;
  z-index: 1;
}

/* Service Sidebar Professional Fixed */
.service-details .service-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #f0f4f9;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.service-details .services-list a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #f8fafc;
  color: #444;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: 0.3s;
  border: 1px solid transparent;
}

.service-details .services-list a i {
  margin-right: 12px;
  font-size: 1.1rem;
  color: #388da8;
}

.service-details .services-list a.active {
  background: #041897;
  color: #fff;
  border-color: #041897;
}

.service-details .services-list a.active i {
  color: #fff;
}

.service-details .services-list a:hover:not(.active) {
  background: #eef2f7;
  border-color: #388da8;
  padding-left: 25px;
}

/*--------------------------------------------------------------
# Porsche AI SEO Bubble (Hybrid Concept)
--------------------------------------------------------------*/
.ai-bubble-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.ai-bubble {
  height: 70px;
  width: 70px;
  background: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: #041897;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid #f0f4f9;
  position: relative;
}

.ai-bubble:hover {
  width: 280px;
  box-shadow: 0 20px 50px rgba(4, 24, 151, 0.15);
}

.ai-bubble i {
  font-size: 2.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-bubble-text {
  margin-left: 15px;
  font-weight: 800;
  font-size: 0.9rem;
  opacity: 0;
  transition: 0.3s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #333;
}

.ai-bubble:hover .ai-bubble-text {
  opacity: 1;
}

.ai-bubble::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid #041897;
  animation: ai-pulse 2.5s infinite;
  opacity: 0;
  pointer-events: none;
}

@keyframes ai-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* AI Wizard Modal Porsche Styling */
.ai-wizard-content {
  border-radius: 40px !important;
  border-top: 10px solid #041897 !important;
  border-bottom: none !important;
  max-height: 90vh;
  overflow-y: auto;
}

.ai-wizard-content .modal-body {
  padding-bottom: 60px !important;
}


.ai-opt-card {
  padding: 30px;
  border: 2px solid #f0f4f9;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  height: 100%;
  background: #fdfdfe;
}

.ai-opt-card:hover {
  border-color: #388da8;
  transform: translateY(-5px);
}

.ai-opt-card.selected {
  border-color: #041897;
  background: #f8faff;
  box-shadow: 0 10px 30px rgba(4, 24, 151, 0.08);
}

.ai-opt-card h6 {
  font-weight: 800;
  margin-bottom: 10px;
  color: #041897;
  font-size: 1.1rem;
}

/* Shake Animation for Validation Errors */
.shake-animation {
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
}

@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}


