
/* ========= GENEL STİLLER ========= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f4f9;
    color: #333;
    overflow-x: hidden;
}

/* ========= HEADER ========= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgb(255, 255, 255);
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #c62828;
    letter-spacing: 1px;
}

.logo span {
    color: #fffcfc;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #c62828;
}

/* ========= HERO ========= */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
                url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 2s ease forwards;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    background: #c62828;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #a91e1e;
    transform: scale(1.05);
}

/* ========= BÖLÜM GENEL ========= */
section {
    padding: 100px 10%;
}

section h2 {
    font-size: 2rem;
    color: #c62828;
    margin-bottom: 20px;
    text-align: center;
}

section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

/* ========= HAKKIMIZDA ========= */
#hakkimizda {
    background: #fff;
}

#hakkimizda p {
    color: #444;
    font-size: 1.05rem;
}

/* ========= HİZMETLER ========= */
.services {
    background: #f9f9f9;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
 
}

.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    transition: 0.4s;
  
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;

}

.service-card h3 {
    margin: 15px 0;
    color: #c62828;
}

.service-card p {
    padding: 0 15px;
    font-size: 0.95rem;

}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  
}

/* ========= GALERİ ========= */
.gallery {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
    transform: scale(1);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(198, 40, 40, 0.1);
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ========= İLETİŞİM ========= */
.contact {
    background: linear-gradient(135deg, #fafafa, #fff);
}

.contact-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 10px;
}

form {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    resize: none;
}

button {
    background: #c62828;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #a91e1e;
}

/* ========= SABİT WHATSAPP & ARA BUTONU ========= */
.whatsapp-btn, .call-btn {
    position: fixed;
    right: 25px;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-btn {
    bottom: 100px;
    background: #25d366;
}

.call-btn {
    bottom: 30px;
    background: #c62828;
}

.whatsapp-btn:hover,
.call-btn:hover {
    transform: scale(1.1);
}

/* ========= FOOTER ========= */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* ========= ANİMASYONLAR ========= */
.fadeIn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInMove 1s forwards;
}

.fadeInUp {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInMove 1.5s forwards;
}

.fadeInDown {
    opacity: 0;
    transform: translateY(-40px);
    animation: fadeInMove 1.5s forwards;
}

.zoomIn {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomInAnim 0.9s forwards;
}

@keyframes fadeInMove {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomInAnim {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========= RESPONSIVE ========= */
@media (max-width: 992px) {
    header {
        flex-direction: column;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    section {
        padding: 80px 7%;
    }
}

@media (max-width: 768px) {
    .hero {
        background-position: center;
        padding: 120px 20px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .service-card img {
        height: 180px;
    }
    form {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }
    nav ul {
        gap: 10px;
    }
    .btn {
        padding: 10px 20px;
    }
    .whatsapp-btn, .call-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
/* ======= BANNER ======= */
.page-banner {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    text-align: center;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 1.2rem;
    max-width: 700px;
}

/* ======= HİZMETLER ======= */
.services-page {
    padding: 100px 10%;
    background: #f9f9f9;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-card h3 {
    margin: 15px 0;
    color: #c62828;
}

.service-card p {
    padding: 0 15px;
    font-size: 0.95rem;
    color: #444;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.service-card:hover img {
    transform: scale(1.05);
}

/* ======= WHATSAPP & CALL ======= */
.whatsapp-float, .call-float {
    position: fixed;
    right: 25px;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float {
    bottom: 100px;
    background: #25d366;
}

.call-float {
    bottom: 30px;
    background: #c62828;
}

.whatsapp-float:hover, .call-float:hover {
    transform: scale(1.1);
}

/* ======= ANİMASYONLAR ======= */
.animated.fadeIn { animation: fadeInMove 1s forwards; }
.animated.zoomIn { animation: zoomInAnim 0.9s forwards; }

@keyframes fadeInMove {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomInAnim {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 992px) {
    .service-grid { gap: 20px; }
    .banner-content h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .banner-content h1 { font-size: 2rem; }
    .banner-content p { font-size: 1rem; }
    .services-page { padding: 80px 5%; }
    .service-card img { height: 180px; }
}


/* ======= GALERİ ======= */
.gallery-page {
    padding: 100px 10%;
    background: #f4f4f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    grid-auto-rows: 200px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    perspective: 1000px;
    transition: transform 0.5s, box-shadow 0.5s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Parallax Scroll Effect */
.gallery-item[data-animate] {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.gallery-item.animated {
    transform: translateY(0);
    opacity: 1;
}
/* ======= İLETİŞİM SAYFASI ======= */
.contact-page {
    padding: 100px 10%;
    background: #f9f9f9;
}

.contact-info h2, .contact-form-section h2, .map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #c62828;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.info-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.info-card h3 {
    margin-bottom: 15px;
}

.info-card p a {
    color: #c62828;
    text-decoration: none;
    font-weight: 600;
}

.info-card p a:hover {
    text-decoration: underline;
}

/* ======= FORM ======= */
.contact-form {
    max-width: 600px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c62828;
    outline: none;
    box-shadow: 0 0 8px rgba(198,40,40,0.4);
}

.contact-form button {
    padding: 15px 20px;
    border-radius: 10px;
    border: none;
    background: #c62828;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #e53935;
    transform: translateY(-3px);
}

/* ======= MAP ======= */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
    .contact-page { padding: 80px 5%; }
    .info-grid { gap: 15px; }
}
/* ======= HİZMET DETAY SAYFASI ======= */
.service-detail-page {
    padding: 100px 10%;
    background: #f9f9f9;
}

.service-description h2, .moving-steps h2, .customer-reviews h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #c62828;
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ======= TAŞIMA SÜRECİ ======= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.step-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ======= MÜŞTERİ YORUMLARI ======= */
.reviews-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.review-card {
    display: none;
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    font-style: italic;
}

.review-card h4 {
    margin-top: 15px;
    font-weight: 600;
    color: #c62828;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
    .service-detail-page { padding: 80px 5%; }
    .step-card img { height: 140px; }
}
/* ======= ŞEHİRLER ARASI NAKLİYAT ======= */
.service-detail-page {
    padding: 100px 10%;
    background: #f9f9f9;
}

.service-description h2, .moving-steps h2, .customer-reviews h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #c62828;
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.step-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.reviews-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.review-card {
    display: none;
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    font-style: italic;
}

.review-card h4 {
    margin-top: 15px;
    font-weight: 600;
    color: #c62828;
}

@media (max-width: 768px) {
    .service-detail-page { padding: 80px 5%; }
    .step-card img { height: 140px; }
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(120deg, #f0f0f0, #e4ebee);
  color: #222;
}

.frosted-header {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.frosted-header .logo {
  font-size: 1.5rem;
  font-weight: 700;
}
.frosted-header nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
.hero-sigorta {
  background: url('images/sigortali-bg.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(0, 0, 0);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}
.hero-content {
  text-align: center;
  animation: fadeInUp 1s ease;
}
.glass-info {
  display: flex;
  justify-content: center;
  padding: 100px 10%;
}
.info-box {
  max-width: 900px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.stats-section {
  text-align: center;
  background: #ffffff77;
  backdrop-filter: blur(10px);
  padding: 80px 5%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: auto;
}
.stat-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.stat-card:hover {
  transform: translateY(-5px);
}
.stat-card span {
  font-size: 2rem;
}
.sigorta-steps {
  padding: 100px 10%;
  background: #f9fafc;
  text-align: center;
}
.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.step-item {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  width: 280px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.step-item:hover { transform: scale(1.05); }

.parallax-quote {
  background: url('images/sigorta-parallax.jpg') center/cover fixed no-repeat;
  color: white;
  text-align: center;
  padding: 150px 20px;
}
.quote-glass {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  display: inline-block;
  padding: 30px 40px;
  border-radius: 15px;
}

.frosted-footer {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}

/* Floating butonlar */
.whatsapp-float, .call-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}
.call-float {
  bottom: 90px;
  background: #007bff;
}
.whatsapp-float:hover, .call-float:hover { transform: scale(1.1); }

/* Animasyonlar */
[data-animate] { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
[data-animate].animated { opacity: 1; transform: translateY(0); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
/* ==== AMBALAJLAMA ==== */
.amb-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.4)), url('images/amb-bg.jpg') center/cover no-repeat;
  height: 70vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 1.3rem;
}
.amb-info {
  padding: 100px 10%;
  background: #f9f9f9;
  text-align: center;
}
.info-container {
  max-width: 900px;
  margin: auto;
}
.amb-services {
  padding: 80px 10%;
  background: linear-gradient(120deg, #ffffff, #f2f5f8);
  text-align: center;
}
.amb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}
.amb-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.4s;
}
.amb-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.amb-card h3 {
  color: #c62828;
  margin-top: 15px;
}
.amb-card p {
  padding: 0 15px 25px;
  font-size: 0.95rem;
}
.amb-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.amb-article {
  background: #ffffff;
  padding: 100px 10%;
  text-align: center;
}
.article-box {
  max-width: 900px;
  margin: auto;
  background: rgba(255,255,255,0.9);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.amb-parallax {
  background: url('images/amb-parallax.jpg') center/cover fixed no-repeat;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
.overlay-text {
  background: rgba(0,0,0,0.4);
  padding: 20px 40px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}
.amb-footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 25px;
  font-size: 0.9rem;
}

/* Animasyonlar */
[data-animate] { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
[data-animate].animated { opacity: 1; transform: translateY(0); }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
/* GENEL YAPI */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fafafa;
  color: #222;
  overflow-x: hidden;
}

/* HEADER */
.header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a2a2a;
}

.logo span {
  color: #ff3b3b;
}

.navbar a {
  text-decoration: none;
  color: #333;
  margin-left: 20px;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover {
  color: #ff3b3b;
}

/* HERO */
.hero-section {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  text-align: center;
  margin-top: 80px;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInDown 1s ease-in-out;
}

.hero-overlay p {
  max-width: 700px;
  line-height: 1.6;
  animation: fadeInUp 1.3s ease-in-out;
}

/* ANİMASYONLAR */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CONTENT */
.content-section {
  padding: 80px 10%;
  background: #fff;
}

.content-section h2 {
  color: #222;
  font-size: 2rem;
  margin-bottom: 20px;
  border-left: 5px solid #ff3b3b;
  padding-left: 12px;
}

.content-section p {
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 30px;
  color: #555;
}

.content-section h3 {
  font-size: 1.5rem;
  color: #111;
  margin-top: 25px;
  margin-bottom: 15px;
}

/* MADDELER */
.features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.features li {
  background: #f5f5f5;
  padding: 18px;
  border-radius: 12px;
  transition: all 0.3s;
  font-weight: 500;
  text-align: center;
}

.features li:hover {
  background: #ff3b3b;
  color: #fff;
  transform: translateY(-8px);
}

/* MAKALE KUTULARI */
.article-box {
  background: #fafafa;
  border-left: 5px solid #ff3b3b;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.article-box:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* GALERİ */
.depo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.depo-gallery img {
  width: 100%;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.depo-gallery img:hover {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(1.1);
}

/* CTA (İLETİŞİM ÇAĞRISI) */
.cta-section {
  background: linear-gradient(135deg, #ff3b3b, #ff7f50);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.btn-primary {
  background: #fff;
  color: #ff3b3b;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #222;
  color: #fff;
}

/* WHATSAPP VE ARA BUTONLARI */
.whatsapp-float, .call-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  text-decoration: none;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  z-index: 999;
}

.call-float {
  bottom: 95px;
  background: #007bff;
}

.whatsapp-float:hover, .call-float:hover {
  transform: scale(1.1);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  background: #111;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 10px 20px;
  }

  .navbar {
    margin-top: 10px;
  }

  .hero-overlay h1 {
    font-size: 2.2rem;
  }

  .content-section {
    padding: 50px 8%;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .depo-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .cta-section {
    padding: 60px 20px;
  }
}

@media (max-width: 500px) {
  .depo-gallery {
    grid-template-columns: 1fr;
  }
}
/* GENEL STİLLER */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(180deg, #ffffff 0%, #f2f4f8 100%);
    color: #222;
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
header {
    background: rgba(255, 253, 253, 0.85);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
}

.navbar h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #00bcd4;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #00bcd4;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HERO BÖLÜMÜ */
.hero {
    background: url('drone-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 160px 20px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 2s ease-in-out;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* MAKALE ALANI */
.section {
    padding: 80px 10%;
    background: #fff;
}

.section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #00bcd4;
}

.article {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.article-card {
    background: #f9fafc;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    padding: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.article-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.article-card h3 {
    color: #00bcd4;
    margin-bottom: 10px;
}

.article-card p {
    font-size: 0.95rem;
}

/* WHATSAPP & ARAMA BUTONLARI */
.whatsapp-btn, .call-btn {
    position: fixed;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 25px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-btn {
    right: 25px;
    background: #25D366;
}

.call-btn {
    right: 95px;
    background: #00bcd4;
}

.whatsapp-btn:hover, .call-btn:hover {
    transform: scale(1.15);
}

/* FOOTER */
footer {
    background: #000;
    color: #ccc;
    text-align: center;
    padding: 30px 10%;
    font-size: 0.9rem;
}

/* ANİMASYONLAR */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .hero h2 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}
/* ============ FOOTER ============ */
.site-footer {
    background: linear-gradient(180deg, #111 0%, #000 100%);
    color: #ccc;
    padding: 60px 10% 30px;
    font-size: 0.95rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer h3, .site-footer h4 {
    color: #00bcd4;
    margin-bottom: 15px;
}

.footer-about p {
    line-height: 1.7;
    color: #bbb;
}

.footer-links ul, .footer-services ul {
    list-style: none;
}

.footer-links li, .footer-services li {
    margin-bottom: 10px;
}

.footer-links a, .footer-services a, .footer-contact a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover {
    color: #00bcd4;
    transform: translateX(4px);
}

.footer-contact p {
    margin: 6px 0;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 18px;
    color: #bbb;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #00bcd4;
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #888;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
    .social-icons a {
        margin: 0 8px;
    }
}
