/* Genel Stil Ayarları */
:root {
    --primary-color: #4CAF50; /* Yeşil */
    --secondary-color: #388E3C; /* Koyu Yeşil */
    --accent-color: #FFC107; /* Sarı */
    --dark-text: #333;
    --light-text: #f4f4f4;
    --background-light: #f9f9f9;
    --background-dark: #2c3e50; /* Koyu Mavi Gri */
    --card-background: #ffffff;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --header-height: 80px;
}
body.no-scroll {
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--background-light);
    overflow-x: hidden; /* Yatay kaydırmayı engelle */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

/* Buton Stilleri */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px; /* Yuvarlak köşeler */
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 4px 10px var(--shadow-light);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--shadow-medium);
}

.btn-secondary {
    background-color: var(--background-dark);
    color: var(--light-text);
    box-shadow: 0 4px 10px var(--shadow-light);
}

.btn-secondary:hover {
    background-color: #3f556e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--shadow-medium);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: var(--card-background);
    box-shadow: 0 2px 10px var(--shadow-light);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
}

.logo img {
    border-radius: 5px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--dark-text);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
}

.burger-menu div {
    width: 100%;
    height: 3px;
    background-color: var(--dark-text);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-section {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('img/bannerr4.jpg')
              no-repeat center center/cover;
  color: #f5f5f5;
  text-align: center;
  padding: 120px 20px;
  border-radius: 0 0 20px 20px;
  margin-bottom: 40px;
}
.hero-section h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-hero-section {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('img/bannerr4.jpg') no-repeat center center/cover;
  color: #f5f5f5;
  text-align: center;
  padding: 80px 20px;
  border-radius: 0 0 15px 15px;
  margin-bottom: 40px;
}

.page-hero-section h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-hero-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}


/* Ortak Bölüm Stilleri */
section {
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}

section:not(.page-hero-section):nth-of-type(odd) {
    background-color: var(--background-light);
}

section:not(.page-hero-section):nth-of-type(even) {
    background-color: var(--card-background);
}

h2 {
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-weight: 700;
}

section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Sayaç Bölümü */
.counter-section {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 15px;
    margin-top: -60px; /* Hero'nun altına kaydır */
    position: relative;
    box-shadow: 0 8px 20px var(--shadow-medium);
}

.counter-section h2 {
    color:black
}

.counter-section p {
    color: var(--light-text);
    opacity: 0.9;
}

.counters {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.counter-item {
    flex-basis: calc(33% - 40px);
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.counter-item .icon-large {
    font-size: 3.5rem;
    color: black;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.counter-item .number {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color:black;
    text-shadow: #2c3e50 1px 1px 2px;
    ;
}

.counter-item p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
    color: black;
}

/* İletişim Formu Bölümü */
.contact-form-section {
    background-color: var(--background-light);
    padding: 80px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.contact-form-section.alt-bg { /* İletişim sayfasındaki form bölümü için */
    background-color: var(--card-background);
}


.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    text-align: left;
}

.contact-form-section.alt-bg .contact-form {
    background-color: var(--background-light); /* Formun arka planını değiştir */
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1.1rem;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea,
.form-group input[type="email"], /* Email alanı için ekledik */
.form-group input[type="url"] /* Web site alanı için ekledik */
{
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
    outline: none;
}

.contact-form .btn-secondary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Web Sitesi Paketleri Bölümü */
.packages-section {
    background-color: var(--background-dark);
    color: var(--light-text);
    padding: 100px 0;
    border-radius: 15px;
    margin-bottom: 40px;
}

.packages-section.alt-bg { /* Fiyatlar sayfası için farklı arka plan */
    background-color: var(--background-light);
    color: var(--dark-text);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.packages-section.alt-bg h2,
.packages-section.alt-bg p {
    color: var(--dark-text);
}


.package-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background-color: var(--card-background);
    color: var(--dark-text);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-medium);
    text-align: left;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 30px var(--shadow-medium);
}

.package-card.featured {
  background-color: var(--primary-color);
  color: #ffffff; /* Daha net ve görünür yazı rengi */
}

.packages-section.alt-bg .package-card.featured {
    background-color: var(--secondary-color); /* Fiyatlar sayfasında farklı vurgu rengi */
    box-shadow: 0 10px 30px rgba(56, 142, 60, 0.4);
}

.package-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.5);
}

.packages-section.alt-bg .package-card.featured:hover {
    box-shadow: 0 15px 35px rgba(56, 142, 60, 0.5);
}


.package-card.featured h3,
.package-card.featured .price,
.package-card.featured ul li {
  color: #ffffff;
  opacity: 1;
}

.package-card h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.package-card.featured h3 {
    color: var(--accent-color);
}

.package-card .price {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.package-card .small-text { /* Yeni stil */
    font-size: 0.9rem;
    color: #777;
    margin-top: -15px;
    margin-bottom: 20px;
    line-height: 1.4;
    max-width: 100%;
}


.package-card ul {
    margin-bottom: 30px;
    flex-grow: 1;
}

.package-card ul li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.package-card ul li i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.2em;
}

.package-card.featured ul li i {
  color: #ffffff;
}

.package-card ul li .fa-times-circle {
    color: #e74c3c; /* Kırmızı */
}

/* Referanslar Bölümü (Anasayfa İçin) */
.references-section {
    padding: 80px 0;
    background-color: var(--background-light);
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.reference-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.reference-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px var(--shadow-medium);
}

/* Tüm Referanslar Sayfası Stilleri */
.full-references-section {
    background-color: var(--card-background);
    padding: 60px 0;
}

.reference-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reference-item-card {
    background-color: var(--background-light);
    border-radius: 15px;
    box-shadow: 0 6px 20px var(--shadow-light);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.reference-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.reference-item-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.reference-item-card .card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reference-item-card .card-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.reference-item-card .card-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 100%; /* Override generic section p */
}

.reference-item-card .btn {
    align-self: flex-start; /* Butonu sola hizala */
}

/* SSS Sayfası Stilleri */
.faq-section {
    background-color: var(--card-background);
    padding: 60px 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: left;
}

.accordion-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.accordion-header {
    width: 100%;
    background-color: var(--background-light);
    color: var(--dark-text);
    padding: 20px 25px;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 12px; /* Köşeler */
}

.accordion-item.active .accordion-header {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-header i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 25px;
    background-color: var(--card-background);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-content p {
    padding: 20px 0;
    margin: 0;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Yeterince büyük bir değer */
    padding: 20px 25px;
}

/* Fiyatlar Sayfası Stilleri (Packages Section zaten var) */
.custom-solution-section {
    background-color: var(--background-dark);
    color: var(--light-text);
    padding: 80px 0;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px var(--shadow-medium);
}

.custom-solution-section h2,
.custom-solution-section p {
    color: var(--light-text);
}

/* İletişim Detayları Bölümü */
.contact-details-section {
    padding: 60px 0;
    background-color: var(--card-background);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-info-card {
    background-color: var(--background-light);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.contact-info-card .icon-large {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-info-card h3 {
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 100%; /* Override generic section p */
}

/* Google Haritalar Bölümü */
.google-maps-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.map-container {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden; /* iframe'in köşelerinin yuvarlak olması için */
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block; /* Altındaki boşluğu kaldırmak için */
}


.mt-4 {
    margin-top: 40px;
}

/* Footer */
.footer {
    background-color: var(--background-dark);
    color: var(--light-text);
    padding: 60px 0 20px;
    margin-top: 80px;
    border-radius: 15px 15px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-col p,
.footer-col ul li {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--light-text);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-col .fas,
.footer-col .fab {
    margin-right: 10px;
    color: var(--accent-color);
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border-radius: 50%;
    font-size: 1.2rem;
    margin-right: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Canlı Destek Butonu */
.live-support-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--dark-text);
    padding: 15px 20px;
    border-radius: 50px; /* Daha yuvarlak */
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
    z-index: 1001;
    transition: all 0.3s ease;
}

.live-support-btn:hover {
    background-color: #ffca28;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 193, 7, 0.6);
}

.live-support-btn i {
    font-size: 1.4rem;
}

/* Modal Stili (Canlı Destek veya diğer mesajlar için) */
.modal {
    display: none; /* Varsayılan olarak gizli */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--card-background);
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    max-width: 500px;
    text-align: center;
    position: relative;
    transform: translateY(-50px);
    animation: fadeIn 0.3s forwards ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.modal-content h3 {
    margin-bottom: 20px;
    color: var(--dark-text);
    font-size: 1.8rem;
}

.modal-content p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.modal-content .btn {
    margin-top: 15px;
}

/* Hakkımızda Sayfası Stilleri */
.about-content-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
    margin-bottom: 60px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 100%; /* Override generic section p */
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.mission-vision-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: left;
}

.mvv-item {
    background-color: var(--card-background);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.mvv-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.mvv-item h3 i {
    font-size: 1.5em;
    margin-right: 15px;
    color: var(--accent-color);
}

.mvv-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 100%; /* Override generic section p */
}

.mvv-item ul {
    margin-top: 15px;
    list-style: disc;
    padding-left: 20px;
    color: #555;
}

.mvv-item ul li {
    margin-bottom: 8px;
}

.team-section {
    background-color: var(--card-background);
    padding: 80px 0;
}

.team-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-light);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px var(--shadow-light);
}

.team-card h3 {
    font-size: 1.6rem;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 600;
}

.team-card p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 20px;
    max-width: 100%; /* Override generic section p */
}

.social-links-small a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1rem;
    margin: 0 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links-small a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}


/* Responsive Ayarlar */
@media (max-width: 992px) {
    .nav-links {
        gap: 15px;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .page-hero-section h1 {
        font-size: 2.5rem;
    }

    .counter-item {
        flex-basis: calc(50% - 30px);
    }

    .package-card {
        max-width: 45%; /* İki kart yan yana */
        min-width: 320px;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .about-grid {
        grid-template-columns: 1fr; /* Hakkımızda'da tek sütun */
        text-align: center;
    }

    .about-text {
        order: 2; /* Metin görselin altında */
    }

    .about-image {
        order: 1; /* Görsel metnin üstünde */
        margin-bottom: 30px;
    }

    .mvv-item {
        min-width: unset;
    }

    .team-card {
        min-width: unset;
    }

    .reference-items {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
@media (max-width: 768px) {
    /* ... diğer stiller ... */

    .nav-links {
        position: fixed; /* 'absolute' yerine 'fixed' kullanıyoruz */
        top: 0; /* Ekranın en üstünden başlasın */
        right: 0;
        background-color: var(--background-dark);
        flex-direction: column;
        width: 70%;
        max-width: 300px;
        height: 100vh; /* Tam ekran yüksekliği */
        justify-content: flex-start;
        padding: 100px 20px 30px; /* Header yüksekliğine göre üstten boşluk bırakın */
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -5px 0 15px var(--shadow-medium);
        z-index: 999;
        border-radius: 0; /* Menü tüm ekranı kapladığı için yuvarlak köşeyi kaldırın */
    }

    .nav-links.active {
        transform: translateX(0);
    }
    
    /* ... diğer stiller ... */
}

    .nav-links li {
        width: 100%;
        margin-bottom: 20px;
    }

    .nav-links a {
        color: var(--light-text);
        font-size: 1.2rem;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:hover {
        color: var(--accent-color);
    }
     .nav-links a::after {
        background-color: var(--accent-color);
    }

    .burger-menu {
        display: flex;
    }

    /* Burger menü animasyonu */
    .burger-menu.active .line1 {
        transform: translateY(11px) rotate(45deg);
    }
    .burger-menu.active .line2 {
        opacity: 0;
    }
    .burger-menu.active .line3 {
        transform: translateY(-11px) rotate(-45deg);
    }

    .hero-section {
        padding: 80px 0;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .page-hero-section h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    section p {
        font-size: 1rem;
    }

    .counter-item {
        flex-basis: 90%; /* Tek kart */
        max-width: 350px;
    }

    .package-card {
        flex: 1 1 100%; /* Her kart kendi satırında */
        max-width: 350px;
    }

    .reference-gallery {
        grid-template-columns: 1fr; /* Tek sütun */
    }

    .live-support-btn {
        right: 20px;
        bottom: 20px;
        padding: 12px 18px;
        font-size: 1rem;
    }

    .live-support-btn span {
        display: none; /* Mobil'de sadece ikon */
    }
    .live-support-btn i {
        margin: 0;
    }

    .about-text, .mvv-item, .team-card {
        text-align: center;
    }

    .accordion-header {
        font-size: 1.1rem;
        padding: 18px 20px;
    }

    .accordion-content p {
        font-size: 0.95rem;
        padding: 15px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr; /* Tek sütun */
    }

    .contact-info-card {
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .header .logo span {
        font-size: 1.2rem; /* Küçük ekranlarda logo metnini küçült */
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 0.9rem;
    }

    .page-hero-section h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .counter-item .number {
        font-size: 3rem;
    }

    .counter-item .icon-large {
        font-size: 3rem;
    }

    .contact-form {
        padding: 25px;
    }

    .package-card h3 {
        font-size: 1.8rem;
    }

    .package-card .price {
        font-size: 2.2rem;
    }

    .footer-col h3 {
        font-size: 1.3rem;
    }

    .mvv-item h3 {
        font-size: 1.5rem;
        justify-content: center;
    }

    .mvv-item h3 i {
        margin-right: 10px;
    }

    .team-card h3 {
        font-size: 1.4rem;
    }

    .reference-item-card .card-content h3 {
        font-size: 1.6rem;
    }

    .accordion-header {
        font-size: 1rem;
        padding: 15px;
    }

    .contact-info-card h3 {
        font-size: 1.6rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 5px;
    margin-right: 15px;
}
body.no-scroll {
    overflow: hidden;
}