
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    background-color: #1a1a1a;
    color: #fff;
    overflow-x: hidden;
  }
  
  :root {
    --mercankirmizi: #FF4E3A;
    --antrasit: #2B2B2B;
    --gri: #BFBFBF;
    --beyaz: #fff;
  }
  
  
  header {
    position: fixed;
    width: 100%;
    z-index: 100;
    background: rgba(30,30,30,0.8);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  header.scrolled {
    padding: 10px 50px;
    background: rgba(20,20,20,0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  }
  
  header .logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
  }
  
  header.scrolled .logo {
    height: 35px;
  }
  
  nav a {
    color: var(--beyaz);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 400;
    transition: 0.3s;
    position: relative;
  }
  
  nav a:hover {
    color: var(--mercankirmizi);
  }
  
  nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--mercankirmizi);
    transition: width 0.3s ease;
  }
  
  nav a:hover::after {
    width: 100%;
  }
  
  
  .hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 30%, rgba(255, 78, 58, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(255, 78, 58, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 40% 80%, rgba(255, 78, 58, 0.08) 0%, transparent 50%);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
  }
  
  
  .hero h2 {
    font-size: 3.8em;
    color: var(--beyaz);
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    line-height: 1.2;
    font-weight: 700;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero-text-container {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
  }
  
  .hero-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 3.8em;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .hero-text.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .hero-text.leaving {
    opacity: 0;
    transform: translateY(-30px);
  }
  
  .hero-text.gradient-1 {
    background: linear-gradient(135deg, #fff 0%, #ff8a78 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-text.gradient-2 {
    background: linear-gradient(135deg, #ff8a78 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-text.gradient-3 {
    background: linear-gradient(135deg, #fff 0%, #ff4e3a 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero p {
    color: var(--gri);
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
  }
  
  .hero button {
    background: var(--mercankirmizi);
    color: #fff;
    border: none;
    padding: 18px 45px;
    font-size: 1.2em;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(255, 78, 58, 0.3);
  }
  
  .hero button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
  }
  
  .hero button:hover::before {
    left: 100%;
  }
  
  .hero button:hover {
    background: #ff6347;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255,78,58,0.4);
  }
  
  
  .hero-decoration {
    position: absolute;
    z-index: 1;
  }
  
  .hero-decoration.circle-1 {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 78, 58, 0.1);
    border-radius: 50%;
    top: 15%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
  }
  
  .hero-decoration.circle-2 {
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 78, 58, 0.05);
    border-radius: 50%;
    bottom: 20%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
  }
  
  .compass-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    animation: spin 60s linear infinite;
    z-index: 1;
  }
  
  @keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }
  
  #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--gri);
    font-size: 0.9em;
    animation: bounce 2s infinite;
  }
  
  .scroll-indicator i {
    margin-top: 10px;
    display: block;
    font-size: 1.5em;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
  }
  
  
  section {
    padding: 100px 10%;
    background: #1a1a1a;
    position: relative;
  }
  
  section:nth-child(even) {
    background: #222;
  }
  
  h3.section-title {
    color: var(--mercankirmizi);
    font-size: 2.5em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  h3.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--mercankirmizi);
    border-radius: 2px;
  }
  
  
  .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .about-content {
    padding-right: 20px;
  }
  
  .about p {
    color: var(--gri);
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  
  .stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(43, 43, 43, 0.6);
    border-radius: 10px;
    transition: transform 0.3s;
  }
  
  .stat-item:hover {
    transform: translateY(-5px);
  }
  
  .stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--mercankirmizi);
    display: block;
  }
  
  .stat-text {
    font-size: 0.9em;
    color: var(--gri);
  }
  
  .about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
  }
  
  .about-image:hover img {
    transform: scale(1.05);
  }
  
  
  .about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .card {
    background: linear-gradient(145deg, #2b2b2b, #222);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
  }
  
  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--mercankirmizi), #ff8a78);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  
  .card:hover::before {
    transform: scaleX(1);
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  
  .card i {
    font-size: 3em;
    color: var(--mercankirmizi);
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .card:hover i {
    transform: scale(1.1) rotate(5deg);
  }
  
  .card h4 {
    color: var(--beyaz);
    font-size: 1.5em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--mercankirmizi);
    transition: width 0.3s ease;
  }
  
  .card:hover h4::after {
    width: 80px;
  }
  
  .card p {
    color: var(--gri);
    line-height: 1.7;
    font-size: 1em;
  }
  
  .card ul {
    list-style: none;
    padding: 0;
  }
  
  .card li {
    color: var(--gri);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
  }
  
  .card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mercankirmizi);
    font-weight: bold;
    font-size: 1.1em;
  }
  
  .card li strong {
    color: var(--beyaz);
    display: block;
    margin-bottom: 5px;
    font-size: 1.05em;
  }
  
  
  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .service-card {
    background: linear-gradient(145deg, #2b2b2b, #222);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--mercankirmizi), #ff8a78);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  
  .service-card:hover::before {
    transform: scaleX(1);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  }
  
  .service-card i {
    font-size: 2.5em;
    color: var(--mercankirmizi);
    margin-bottom: 15px;
    transition: 0.3s;
  }
  
  .service-card:hover i {
    transform: scale(1.1);
  }
  
  .service-card h4 {
    color: var(--beyaz);
    margin-bottom: 10px;
    font-size: 1.3em;
  }
  
  .service-card p {
    color: var(--gri);
    font-size: 0.95em;
  }
  
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
  }
  
  .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 78, 58, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 78, 58, 0.3);
  }
  
  .gallery img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: brightness(0) invert(1);
  }
  
  .gallery-item:hover img {
    transform: scale(1.08);
  }
  
  .gallery-overlay {
    display: none;
  }
  
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  .contact-form {
    background: linear-gradient(145deg, #2b2b2b, #222);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form input, .contact-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    color: var(--beyaz);
    font-size: 1em;
    transition: all 0.3s ease;
  }
  
  .contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--mercankirmizi);
    box-shadow: 0 0 0 2px rgba(255, 78, 58, 0.2);
    background: rgba(255,255,255,0.08);
  }
  
  .contact-form button {
    background: var(--mercankirmizi);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    width: 100%;
    font-size: 1.1em;
  }
  
  .contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
  }
  
  .contact-form button:hover::before {
    left: 100%;
  }
  
  .contact-form button:hover {
    background: #ff6347;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,78,58,0.3);
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(43, 43, 43, 0.6);
    border-radius: 10px;
    transition: transform 0.3s;
  }
  
  .contact-item:hover {
    transform: translateX(10px);
  }
  
  .contact-icon {
    background: var(--mercankirmizi);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
  }
  
  .contact-details h4 {
    color: var(--beyaz);
    margin-bottom: 5px;
    font-size: 1.2em;
  }
  
  .contact-details p {
    color: var(--gri);
    margin-bottom: 5px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beyaz);
    transition: all 0.3s;
  }
  
  .social-link:hover {
    background: var(--mercankirmizi);
    transform: translateY(-5px);
  }
  
  
  footer {
    background: linear-gradient(to right, #111, #0a0a0a);
    color: #888;
    padding: 60px 10% 30px;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-logo {
    flex-direction: column;
  }
  
  .footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
  }
  
  .footer-logo p {
    color: var(--gri);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95em;
  }
  
  .footer-links h3, .footer-services h3, .footer-contact h3 {
    color: var(--beyaz);
    font-size: 1.2em;
    margin-bottom: 20px;
    position: relative;
  }
  
  .footer-links h3::after, .footer-services h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--mercankirmizi);
  }
  
  .footer-links ul, .footer-services ul {
    list-style: none;
  }
  
  .footer-links li, .footer-services li {
    margin-bottom: 10px;
  }
  
  .footer-links a, .footer-services a {
    color: var(--gri);
    text-decoration: none;
    transition: 0.3s;
  }
  
  .footer-links a:hover, .footer-services a:hover {
    color: var(--mercankirmizi);
    padding-left: 5px;
  }
  
  .footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }
  
  .footer-contact i {
    margin-right: 10px;
    color: var(--mercankirmizi);
  }
  
  .footer-developer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .footer-developer a {
    color: var(--gri);
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
    border-radius: 5px;
  }
  
  .footer-developer a:hover {
    color: var(--mercankirmizi);
    background: rgba(255, 78, 58, 0.1);
    transform: translateY(-2px);
  }
  
  .footer-developer a::after {
    content: '↗';
    margin-left: 5px;
    font-size: 0.8em;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .footer-developer a:hover::after {
    opacity: 1;
  }
  
  
  .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--mercankirmizi);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(255, 78, 58, 0.3);
    animation: pulse-orange 2s infinite;
  }
  
  .scroll-top {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--mercankirmizi);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  .scroll-top.active {
    opacity: 1;
    visibility: visible;
  }
  
  .whatsapp-float:hover,
  .scroll-top:hover {
    background: #ff6347;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,78,58,0.4);
  }
  
  .whatsapp-float i,
  .scroll-top i {
    font-size: 1.3em;
  }
  
  @keyframes pulse-orange {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 78, 58, 0.7);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(255, 78, 58, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 78, 58, 0);
    }
  }
  
  
  @media (max-width: 1024px) {
    .about-container, .contact-container {
      grid-template-columns: 1fr;
    }
    
    .footer-container {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 768px) {
    header {
      padding: 10px 20px;
    }
    
    header .logo {
      height: 35px;
    }
    
    header.scrolled .logo {
      height: 30px;
    }
    
    nav a {
      margin: 0 10px;
      font-size: 0.9em;
    }
    
    .hero h2 {
      font-size: 2.5em;
    }
    
    .hero-text {
      font-size: 2.5em;
    }
    
    .hero p {
      font-size: 1.1em;
      padding: 0 10px;
    }
    
    .hero button {
      padding: 15px 35px;
      font-size: 1.1em;
    }
    
    .hero-decoration.circle-1,
    .hero-decoration.circle-2 {
      display: none;
    }
    
    section {
      padding: 60px 5%;
    }
    
    .about-stats {
      grid-template-columns: 1fr;
    }
    
    .about-cards {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .card {
      padding: 30px 20px;
    }
    
    .gallery {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    
    .gallery-item {
      height: 200px;
      padding: 25px;
    }
    
    .footer-container {
      grid-template-columns: 1fr;
    }
    
    .footer-logo img {
      height: 35px;
    }
    
    .whatsapp-float,
    .scroll-top {
      width: 45px;
      height: 45px;
      bottom: 25px;
      right: 25px;
    }
    
    .scroll-top {
      bottom: 85px;
    }
    
    .whatsapp-float i,
    .scroll-top i {
      font-size: 1.2em;
    }
  }
  
  /* Custom Pop-up Notification */
.notification-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: linear-gradient(145deg, #2b2b2b, #222);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 78, 58, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.notification-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.notification-popup.success {
  border-color: rgba(76, 175, 80, 0.5);
}

.notification-popup.error {
  border-color: rgba(244, 67, 54, 0.5);
}

.notification-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
}

.notification-popup.success .notification-icon {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
}

.notification-popup.error .notification-icon {
  background: rgba(244, 67, 54, 0.2);
  color: #F44336;
}

.notification-popup.loading .notification-icon {
  background: rgba(255, 78, 58, 0.2);
  color: var(--mercankirmizi);
  animation: spin 1s linear infinite;
}

.notification-title {
  color: var(--beyaz);
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: 600;
}

.notification-message {
  color: var(--gri);
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.notification-close {
  background: var(--mercankirmizi);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9em;
  transition: all 0.3s ease;
}

.notification-close:hover {
  background: #ff6347;
  transform: translateY(-2px);
}

.notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.notification-overlay.active {
  opacity: 1;
  visibility: visible;
}
  
  @media (max-width: 480px) {
    .hero h2 {
      font-size: 2em;
    }
    
    .hero-text {
      font-size: 2em;
    }
    
    .hero p {
      font-size: 1em;
    }
    
    h3.section-title {
      font-size: 2em;
    }
  }
  
  /* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--beyaz);
  font-size: 1.5em;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

.mobile-menu-btn:hover {
  color: var(--mercankirmizi);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  border-left: 1px solid rgba(255, 78, 58, 0.1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gri);
  font-size: 1.5em;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-nav-close:hover {
  color: var(--mercankirmizi);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-links a {
  color: var(--beyaz);
  text-decoration: none;
  font-size: 1.1em;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.mobile-nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 78, 58, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-nav-links a:hover::before {
  left: 100%;
}

.mobile-nav-links a:hover {
  color: var(--mercankirmizi);
  border-color: rgba(255, 78, 58, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}

.mobile-nav-links a.active {
  color: var(--mercankirmizi);
  background: rgba(255, 78, 58, 0.1);
  border-color: rgba(255, 78, 58, 0.3);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Header responsive updates */
@media (max-width: 768px) {
    
    .mobile-menu-btn {
    display: block; /* EKSİK OLAN */
  }
  header nav.desktop-nav {
    display: none;
  }


 header nav {
  display: flex;
}

  header {
    padding: 12px 20px;
  }

  header.scrolled {
    padding: 8px 20px;
  }

  .mobile-nav-links a {
    font-size: 1em;
    padding: 12px 18px;
  }
}

@media (max-width: 480px) {
  .mobile-nav {
    width: 250px;
  }

  .mobile-nav-links a {
    font-size: 0.95em;
    padding: 10px 15px;
  }
}

/* KVKK Pop-up Styles */
.kvkk-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.kvkk-overlay.active {
  opacity: 1;
  visibility: visible;
}

.kvkk-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  background: linear-gradient(145deg, #2b2b2b, #222);
  border-radius: 15px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 78, 58, 0.3);
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.kvkk-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.kvkk-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255, 78, 58, 0.05);
}

.kvkk-header h3 {
  color: var(--beyaz);
  font-size: 1.4em;
  font-weight: 600;
  margin: 0;
}

.kvkk-close {
  background: none;
  border: none;
  color: var(--gri);
  font-size: 1.3em;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.kvkk-close:hover {
  color: var(--mercankirmizi);
  background: rgba(255, 78, 58, 0.1);
}

.kvkk-content {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
  max-height: 60vh;
}

.kvkk-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.kvkk-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.kvkk-section h4 {
  color: var(--mercankirmizi);
  font-size: 1.1em;
  margin-bottom: 15px;
  font-weight: 600;
}

.kvkk-section p {
  color: var(--gri);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95em;
}

.kvkk-section ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 15px;
}

.kvkk-section li {
  color: var(--gri);
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
  line-height: 1.5;
  font-size: 0.95em;
}

.kvkk-section li::before {
  content: '•';
  color: var(--mercankirmizi);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.kvkk-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 20px;
}

.kvkk-accept, .kvkk-reject {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95em;
}

.kvkk-accept {
  background: var(--mercankirmizi);
  color: white;
}

.kvkk-accept:hover {
  background: #ff6347;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,78,58,0.3);
}

.kvkk-reject {
  background: rgba(255,255,255,0.1);
  color: var(--gri);
  border: 1px solid rgba(255,255,255,0.2);
}

.kvkk-reject:hover {
  background: rgba(255,255,255,0.15);
  color: var(--beyaz);
  transform: translateY(-2px);
}

/* Scrollbar styling for KVKK content */
.kvkk-content::-webkit-scrollbar {
  width: 6px;
}

.kvkk-content::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
}

.kvkk-content::-webkit-scrollbar-thumb {
  background: var(--mercankirmizi);
  border-radius: 3px;
}

.kvkk-content::-webkit-scrollbar-thumb:hover {
  background: #ff6347;
}

/* Responsive */
@media (max-width: 768px) {
  .kvkk-popup {
    width: 95%;
    max-height: 85vh;
  }
  
  .kvkk-header {
    padding: 20px;
  }
  
  .kvkk-content {
    padding: 20px;
  }
  
  .kvkk-actions {
    flex-direction: column;
  }
  
  .kvkk-accept, .kvkk-reject {
    width: 100%;
  }
}

/* Language Switcher Styles */
.language-switcher {
  background: rgba(255, 78, 58, 0.1);
  border: 1px solid rgba(255, 78, 58, 0.3);
  border-radius: 20px;
  padding: 8px 15px;
  margin-left: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.language-switcher:hover {
  background: rgba(255, 78, 58, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 78, 58, 0.2);
}

.language-switcher i {
  margin-right: 5px;
  font-size: 0.9em;
}

/* Mobile language switcher */
.mobile-language {
  margin-top: 15px;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  background: rgba(255, 78, 58, 0.15);
  border: 1px solid rgba(255, 78, 58, 0.4);
}

.mobile-language:hover {
  background: rgba(255, 78, 58, 0.25);
}

/* Header responsive updates for language switcher */
@media (max-width: 768px) {
  .desktop-nav .language-switcher {
    display: none;
  }
  
  .mobile-language {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-language {
    display: none;
  }
}

/* SVG Background ile Bayraklar */
.flag-svg {
  width: 16px;
  height: 12px;
  display: inline-block;
  margin-right: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.flag-tr {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Crect width='1200' height='800' fill='%23E30A17'/%3E%3Ccircle cx='600' cy='400' r='240' fill='white'/%3E%3Ccircle cx='650' cy='400' r='180' fill='%23E30A17'/%3E%3C/svg%3E");
}

.flag-uk {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Crect width='1200' height='600' fill='%23012169'/%3E%3Cpath d='M0,0 L1200,0 L1200,100 L0,100 Z M0,250 L1200,250 L1200,350 L0,350 Z M0,500 L1200,500 L1200,600 L0,600 Z M0,150 L500,150 L500,0 L700,0 L700,150 L1200,150 L1200,250 L700,250 L700,400 L1200,400 L1200,500 L700,500 L700,600 L500,600 L500,500 L0,500 L0,400 L500,400 L500,250 L0,250 Z' fill='white'/%3E%3Cpath d='M500,0 L700,0 L700,250 L1200,250 L1200,350 L700,350 L700,600 L500,600 L500,350 L0,350 L0,250 L500,250 Z' fill='%23C8102E'/%3E%3Cpath d='M550,0 L650,0 L650,300 L1200,300 L1200,350 L650,350 L650,600 L550,600 L550,350 L0,350 L0,300 L550,300 Z' fill='white'/%3E%3Cpath d='M600,0 L600,350 L1200,350 L1200,300 L600,300 L600,0 Z M0,350 L600,350 L600,600 L0,600 Z' fill='%23C8102E'/%3E%3C/svg%3E");
}