
    /* ===== CSS SIFIRLAMA VE TEMEL AYARLAR ===== - Designed by cloudmedya.com */
    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior:smooth; font-size:16px; }
    body {
      font-family:'Poppins',sans-serif;
      color:#1a1a2e;
      overflow-x:hidden;
      background:#f5f5f5;
    }
    a { text-decoration:none; color:inherit; }
    ul { list-style:none; }
    img { max-width:100%; display:block; }

    /* ===== CSS DEĞİŞKENLERİ ===== - Designed by cloudmedya.com */
    :root {
      --primary: #0d1b3e;
      --primary-light: #1a2d5a;
      --accent: #c8963e;
      --accent-light: #e0b96a;
      --accent-dark: #a07628;
      --white: #ffffff;
      --off-white: #f7f5f0;
      --gray-100: #f0eeea;
      --gray-200: #d4d0c8;
      --gray-300: #b0aaa0;
      --gray-600: #5a5a5a;
      --dark: #0a0a1a;
      --text: #2c2c3a;
      --shadow: 0 10px 40px rgba(0,0,0,.12);
      --shadow-lg: 0 25px 60px rgba(0,0,0,.15);
      --transition: .4s cubic-bezier(.25,.8,.25,1);
      --radius: 8px;
    }

    /* ===== YARDIMCI SINIFLAR ===== - Designed by cloudmedya.com */
    .container { max-width:1280px; margin:0 auto; padding:0 24px; }
    .section-pad { padding:100px 0; }
    .section-title {
      font-family:'Playfair Display',serif;
      font-size:clamp(2rem,4vw,3rem);
      color:var(--primary);
      margin-bottom:12px;
      position:relative;
    }
    .section-subtitle {
      color:var(--gray-600);
      font-size:1.05rem;
      max-width:600px;
      line-height:1.7;
      margin-bottom:50px;
    }
    .accent-line {
      width:60px; height:4px;
      background:var(--accent);
      border-radius:2px;
      margin-bottom:20px;
    }
    .btn {
      display:inline-flex; align-items:center; gap:8px;
      padding:14px 36px;
      font-family:'Poppins',sans-serif;
      font-weight:600;
      font-size:.95rem;
      border:none; border-radius:var(--radius);
      cursor:pointer;
      transition:var(--transition);
      text-transform:uppercase;
      letter-spacing:1.5px;
    }
    .btn-primary { background:var(--accent); color:var(--white); }
    .btn-primary:hover { background:var(--accent-dark); transform:translateY(-2px); box-shadow:0 8px 25px rgba(200,150,62,.4); }

    /* ===== ÖN YÜKLEYİCİ ===== - Designed by cloudmedya.com */
    #preloader {
      position:fixed; inset:0; z-index:99999;
      background:var(--primary);
      display:flex; flex-direction:column;
      align-items:center; justify-content:center;
      transition:opacity .6s, visibility .6s;
    }
    #preloader.hidden { opacity:0; visibility:hidden; }
    #preloader .preloader-logo {
      height:90px;
      width:auto;
      margin-bottom:30px;
      opacity:0;
      animation:fadeInLogo .6s ease .2s forwards;
    }
    @keyframes fadeInLogo {
      from { opacity:0; transform:scale(.92); }
      to   { opacity:1; transform:scale(1); }
    }
    .loader-bar {
      width:200px; height:3px;
      background:rgba(255,255,255,.1);
      border-radius:3px; overflow:hidden;
    }
    .loader-bar-inner {
      height:100%; width:0;
      background:var(--accent);
      border-radius:3px;
      animation:loadBar 1.8s ease forwards;
    }
    @keyframes loadBar { to { width:100%; } }

    /* ===== ÜST MENÜ / LOGO / NAV ===== - Designed by cloudmedya.com */
    .header {
      position:fixed; top:0; left:0; width:100%;
      z-index:9999; padding:20px 0; transition:var(--transition);
    }
    .header.scrolled {
      background:rgba(13,27,62,.97);
      backdrop-filter:blur(12px);
      padding:12px 0;
      box-shadow:0 4px 30px rgba(0,0,0,.2);
    }
    .header .container { display:flex; align-items:center; justify-content:space-between; }
    .logo { display:flex; align-items:center; gap:10px; }
    .header.scrolled .header-logo-img { height:38px; }
    .nav-links { display:flex; align-items:center; gap:32px; }
    .nav-links a {
      color:rgba(255,255,255,.8); font-size:.88rem; font-weight:500;
      text-transform:uppercase; letter-spacing:1.5px; position:relative; transition:var(--transition);
    }
    .nav-links a::after {
      content:''; position:absolute; bottom:-4px; left:0;
      width:0; height:2px; background:var(--accent); transition:var(--transition);
    }
    .nav-links a:hover, .nav-links a.active { color:var(--white); }
    .nav-links a:hover::after, .nav-links a.active::after { width:100%; }
    .nav-cta {
      padding:10px 24px !important; background:var(--accent); color:var(--white) !important;
      border-radius:var(--radius); font-weight:600 !important; letter-spacing:1px !important;
    }
    .nav-cta::after { display:none !important; }
    .nav-cta:hover { background:var(--accent-dark); transform:translateY(-1px); }

    .hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:10001; }
    .hamburger span { width:28px; height:2.5px; background:var(--white); border-radius:2px; transition:var(--transition); }
    .hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
    .hamburger.active span:nth-child(2) { opacity:0; }
    .hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

    .mobile-nav {
      position:fixed; inset:0; background:var(--primary); display:flex; flex-direction:column;
      align-items:center; justify-content:center; gap:30px; transform:translateX(100%);
      transition:transform .5s cubic-bezier(.77,0,.175,1); z-index:10000;
    }
    .mobile-nav.open { transform:translateX(0); }
    .mobile-nav a {
      color:var(--white); font-size:1.4rem; font-weight:600; text-transform:uppercase; letter-spacing:2px;
      opacity:0; transform:translateY(20px); transition:var(--transition);
    }
    .mobile-nav.open a { opacity:1; transform:translateY(0); }
    .mobile-nav a:hover { color:var(--accent); }

    /* ===== SAYFA BAŞLIĞI ===== - Designed by cloudmedya.com */
    .page-hero {
      position:relative; height:50vh; min-height:400px;
      display:flex; align-items:center; justify-content:center;
      background:url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&q=80') center/cover no-repeat;
    }
    .page-hero-overlay {
      position:absolute; inset:0;
      background:linear-gradient(135deg, rgba(13,27,62,.65) 0%, rgba(10,10,26,.45) 100%);
    }
    .page-hero-content {
      position:relative; z-index:2; text-align:center;
      color:var(--white); padding:0 24px;
    }
    .page-hero-title {
      font-family:'Playfair Display',serif; font-size:clamp(2.5rem,5vw,4rem);
      font-weight:900; margin-bottom:16px;
    }
    .page-hero-desc {
      font-size:1.1rem; color:rgba(255,255,255,.8); max-width:600px; margin:0 auto; line-height:1.6;
    }

    /* ===== HİZMETLER CONTENT ===== - Designed by cloudmedya.com */
    .service-detail-section {
      padding:100px 0;
      background:var(--white);
    }
    .service-detail-section:nth-child(even) {
      background:var(--off-white);
    }
    .service-block {
      display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
    }
    .service-block.reverse .service-content { order:1; }
    .service-block.reverse .service-image { order:2; }

    .service-image {
      position:relative;
      border-radius:16px;
      overflow:hidden;
      box-shadow:var(--shadow-lg);
    }
    .service-image img {
      width:100%; height:500px; object-fit:cover;
      transition:transform .6s ease;
    }
    .service-image:hover img {
      transform:scale(1.05);
    }
    .service-icon-float {
      position:absolute; top:24px; left:24px;
      width:70px; height:70px;
      background:var(--accent); color:var(--white);
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      font-size:1.8rem; box-shadow:0 10px 30px rgba(200,150,62,.4);
      z-index:2;
    }

    .service-content h2 {
      font-family:'Playfair Display',serif;
      font-size:2.2rem; color:var(--primary); margin-bottom:20px; line-height:1.2;
    }
    .service-content > p {
      color:var(--gray-600); line-height:1.8; font-size:1rem; margin-bottom:30px;
    }
    .service-list {
      display:flex; flex-direction:column; gap:16px; margin-bottom:40px;
    }
    .service-list li {
      display:flex; align-items:flex-start; gap:12px;
      color:var(--text); font-weight:500; font-size:.95rem; line-height:1.6;
    }
    .service-list li i {
      color:var(--accent); font-size:1.1rem; margin-top:2px; flex-shrink:0;
    }

    /* ===== ALT BİLGİ / FOOTER ===== - Designed by cloudmedya.com */
    .footer { background:var(--dark); color:rgba(255,255,255,.6); padding:70px 0 0; }
    .footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:40px; margin-bottom:50px; }
    .footer-brand p { line-height:1.8; font-size:.9rem; margin-bottom:24px; margin-top:20px;}
    .footer h4 { color:var(--white); font-size:1rem; font-weight:700; margin-bottom:24px; position:relative; }
    .footer h4::after { content:''; position:absolute; bottom:-8px; left:0; width:30px; height:2px; background:var(--accent); }
    .footer-links li { margin-bottom:10px; }
    .footer-links a { font-size:.9rem; transition:var(--transition); }
    .footer-links a:hover { color:var(--accent); padding-left:6px; }
    .footer-contact-item { display:flex; gap:12px; margin-bottom:14px; font-size:.9rem; }
    .footer-contact-item i { color:var(--accent); margin-top:4px; }
    .footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:24px 0; display:flex; justify-content:space-between; align-items:center; font-size:.85rem; }
    .social-links { display:flex; gap:12px; }
    .social-links a { width:40px; height:40px; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; color:var(--white); transition:var(--transition); }
    .social-links a:hover { background:var(--accent); border-color:var(--accent); transform:translateY(-3px); }

    /* ===== MOBİL UYUMLULUK ===== - Designed by cloudmedya.com */
    @media(max-width:1024px) {
      .service-block { grid-template-columns:1fr; gap:40px; }
      .service-block.reverse .service-content { order:2; }
      .service-block.reverse .service-image { order:1; }
      .service-image img { height:400px; }
      .footer-grid { grid-template-columns:repeat(2,1fr); }
    }
    @media(max-width:768px) {
      .nav-links { display:none; }
      .hamburger { display:flex; }
      .service-image img { height:300px; }
      .service-content h2 { font-size:1.8rem; }
      .footer-grid { grid-template-columns:1fr; }
      .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
    }
  

    .legal-hero {
      padding: 150px 20px 80px;
      background: var(--primary);
      color: var(--white);
      text-align: center;
    }
    .legal-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      margin-bottom: 20px;
      color: var(--accent);
    }
    .legal-content {
      padding: 80px 20px;
      background: var(--white);
    }
    .legal-container {
      max-width: 900px;
      margin: 0 auto;
      background: #fff;
      padding: 50px;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    }
    .legal-container h2 {
      font-size: 1.4rem;
      color: var(--primary);
      margin: 30px 0 15px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .legal-container p {
      font-size: 1.05rem;
      color: var(--gray-600);
      line-height: 1.8;
      margin-bottom: 15px;
    }
    @media(max-width:768px) {
      .legal-container { padding: 30px 20px; }
      .legal-hero h1 { font-size: 2rem; }
    }
  

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark, #0a0a1a);
  color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  font-family: 'Inter', sans-serif;
  flex-wrap: wrap;
  gap: 15px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-content {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}
.cookie-content a {
  color: var(--accent, #c8963e);
  text-decoration: none;
  font-weight: 600;
}
.cookie-content a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; text-align: center; padding: 20px; }
  .cookie-banner button { width: 100%; }
}




  85% { transform: translateY(-3px); }
  87% { transform: translateY(1px); }
  89% { transform: translateY(0); }
}





/* CLOUDMEDYA TASARIM IMZASI - Designed by cloudmedya.com */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

.cm-footer-signature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #94a3b8;
}
.cm-label { font-weight: 400; }
.cm-brand-link {
  text-decoration: none;
  font-weight: 600;
  color: #e2e8f0;
  transition: color 0.3s;
}
.cm-footer-signature:hover .cm-brand-link { color: #ffffff; }
.cm-power-icon {
  position: relative;
  width: 28px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cm-storm-cloud {
  position: absolute;
  width: 24px;
  height: 12px;
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.cm-storm-cloud::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #64748b;
  border-radius: 50%;
}
.cm-storm-cloud::after {
  content: '';
  position: absolute;
  top: -3px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: #64748b;
  border-radius: 50%;
}
.cm-active-bolt {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 10px solid #fbbf24;
  filter: drop-shadow(0 0 6px #fbbf24) drop-shadow(0 0 2px #ffffff);
  animation: electricPulse 2s ease-in-out infinite;
}
.cm-active-bolt::after {
  content: '';
  position: absolute;
  top: -7px;
  left: -2px;
  width: 0;
  height: 0;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-top: 6px solid #fbbf24;
  transform: rotate(25deg);
}
@keyframes electricPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
    filter: drop-shadow(0 0 4px #fbbf24);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #fbbf24) drop-shadow(0 0 4px #ffffff);
  }
}
