/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header - Kompakt ve Modern */
header {
    background: linear-gradient(135deg, #ffffff 0%, #777777 60%, #0a6f6ffd 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 20px rgb(72, 171, 188);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 50px;
    padding: 12px 0;
}

/* Logo - Büyük ama Dengeli */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    border-radius: 10px;
    width: auto;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Navigation - Kompakt Modern */
nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;   /* ✅ eklendi */
    z-index: 1500;        /* ✅ eklendi */
}


.main-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.main-menu > li {
    position: relative;
}

/* Kompakt Menü Butonları */
.main-menu > li > a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    display: block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.main-menu > li > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.main-menu > li > a:hover::before {
    left: 100%;
}

.main-menu > li > a:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.main-menu > li.dropdown > a:hover {
    background: #ffffff;
    color: #48abbc;
}

/* Dropdown Menu - Ultra Modern */
.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    min-width: 950px;
    box-shadow: 0 15px 50px rgba(72, 171, 188, 0.25);
    padding: 35px;
    border-radius: 18px;
    border: 2px solid rgba(72, 171, 188, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000 !important; /* ✅ dropdown menü en önde */

}

.dropdown:hover .dropdown-content {
    display: flex;
    gap: 30px;
    opacity: 1;
    visibility: visible;
    top: calc(100% + 8px);
}

.dropdown-column {
    flex: 1;
    position: relative;
    padding: 18px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.dropdown-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(72, 171, 188, 0.15);
}

.dropdown-column h3 {
    color: #48abbc;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2.5px solid #48abbc;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    position: relative;
}

.dropdown-column h3::after {
    content: '';
    position: absolute;
    bottom: -2.5px;
    left: 0;
    width: 35px;
    height: 2.5px;
    background: #9595c7;
}

.dropdown-column ul {
    list-style: none;
}

.dropdown-column ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
}

.dropdown-column ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #48abbc;
    font-size: 13px;
    transition: transform 0.3s ease;
}

.dropdown-column ul li:hover::before {
    transform: translateX(4px);
}

.dropdown-column ul li a {
    color: #555;
    text-decoration: none;
    font-size: 12.5px;
    display: block;
    padding: 6px 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-column ul li a:hover {
    color: #48abbc;
    padding-left: 6px;
}

/* Mobile Menu Toggle - Düzeltilmiş */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2.5px;
    background: #ffffff;
    display: block;
    transition: 0.3s;
    border-radius: 2px;
}

/* Slider Section */
.slider-section {
    position: relative;
    height: 650px;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(72, 171, 188, 0.15), rgba(149, 149, 199, 0.15));
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #48abbc;
    border: none;
    font-size: 26px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #48abbc;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(72, 171, 188, 0.4);
}

.slider-btn.prev {
    left: 35px;
}

.slider-btn.next {
    right: 35px;
}

.slider-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.dot.active,
.dot:hover {
    background: #48abbc;
    transform: scale(1.3);
    border-color: #ffffff;
    box-shadow: 0 0 12px rgba(72, 171, 188, 0.6);
}

/* Main Content */
.main-content {
    padding: 90px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.tagline {
    text-align: center;
    margin-bottom: 45px;
}

.tagline h2 {
    color: #48abbc;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 22px;
}

.tagline h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3.5px;
    background: linear-gradient(90deg, #48abbc, #9595c7);
    border-radius: 2px;
}

.content-text {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.05);
}

.content-text p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 22px;
    text-align: justify;
}

/* About Section */
.about-section {
    padding: 90px 0;
    background: #ffffff;
}

.section-title {
    color: #48abbc;
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 55px;
    position: relative;
    padding-bottom: 22px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background: linear-gradient(90deg, #48abbc, #9595c7);
    border-radius: 2.5px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(72, 171, 188, 0.1);
}

.about-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 22px;
    text-align: justify;
}

/* Solutions Section */
.solutions-section {
    padding: 90px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 55px;
}

.solution-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(72, 171, 188, 0.1), rgba(149, 149, 199, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.solution-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 18px 45px rgba(72, 171, 188, 0.25);
    border-color: #48abbc;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #48abbc, #9595c7);
    position: relative;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .solution-image img {
    transform: scale(1.15) rotate(2deg);
}

.solution-card h3 {
    color: #7883af;
    font-size: 19px;
    font-weight: 600;
    text-align: center;
    padding: 28px 22px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.solution-card:hover h3 {
    color: #48abbc;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #817d7d 0%, #464444 40%, #0a6f6ffd 100%);
    color: #ffffff;
    padding: 70px 0 25px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #48abbc, #9595c7, #48abbc);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-content {
        gap: 35px;
    }

    .dropdown-content {
        min-width: 850px;
        padding: 30px;
    }
}

@media (max-width: 968px) {
    .header-content {
        grid-template-columns: auto auto;
        justify-content: space-between;
        padding: 10px 0;
    }

    .logo img {
        height: 55px;
    }

    nav {
        display: none;
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #48abbc, #7883af);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        max-height: calc(100vh - 76px);
        overflow-y: auto;
    }

    nav.active {
        display: block;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-menu {
        flex-direction: column;
        gap: 12px;
    }

    .main-menu > li {
        width: 100%;
    }

    .main-menu > li > a {
        width: 100%;
        text-align: center;
        border-radius: 12px;
        padding: 14px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .dropdown-content {
        position: static;
        transform: none;
        min-width: 100%;
        flex-direction: column;
        margin-top: 10px;
        border-radius: 12px;
        padding: 25px;
        gap: 20px;
    }

    .dropdown-column {
        padding: 15px;
    }

    .slider-section {
        height: 450px;
    }

    .slider-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .slider-btn.prev {
        left: 18px;
    }

    .slider-btn.next {
        right: 18px;
    }

    .tagline h2 {
        font-size: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .content-text,
    .about-content {
        padding: 32px;
    }

      .dropdown-content {
      position: relative !important;
      z-index: 2000 !important;
  }

}

@media (max-width: 576px) {
    .container {
        padding: 0 18px;
    }

    .logo img {
        height: 50px;
    }

    .slider-section {
        height: 320px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-btn.prev {
        left: 12px;
    }

    .slider-btn.next {
        right: 12px;
    }

    .slider-dots {
        padding: 8px 16px;
        gap: 12px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .main-content,
    .about-section,
    .solutions-section {
        padding: 55px 0;
    }

    .tagline h2 {
        font-size: 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .content-text,
    .about-content {
        padding: 22px;
    }

    .content-text p,
    .about-content p {
        font-size: 15px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    footer {
        padding: 45px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* E-İmza Sayfası Stilleri - style.css dosyanıza ekleyin */

.eimza-page {
    padding: 90px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.eimza-image-box {
    max-width: 400px;
    margin: 0 auto 40px;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(10, 111, 111, 0.1);
    text-align: center;
}

.eimza-image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.eimza-image-box .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 20px;
    font-weight: 500;
    border: 3px dashed #ddd;
}

.eimza-content-box {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(10, 111, 111, 0.1);
}

.eimza-content-box h2 {
    color: #0a6f6ffd;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.eimza-content-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 110px;
    height: 4px;
    background: linear-gradient(90deg, #0a6f6ffd, #464444);
    border-radius: 2.5px;
}

.eimza-content-box p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 22px;
    text-align: justify;
}

.eimza-content-box p:last-child {
    margin-bottom: 0;
}

.eimza-content-box ul {
    list-style: none;
    padding-left: 0;
    column-count: 2;
    column-gap: 30px;
}

.eimza-content-box ul li {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    break-inside: avoid;
}

.eimza-content-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0a6f6ffd;
    font-weight: bold;
    font-size: 16px;
}

.highlight-box {
    background: linear-gradient(135deg, #0a6f6ffd, #464444);
    color: white;
}

.highlight-box h2 {
    color: white;
}

.highlight-box h2::after {
    background: rgba(255, 255, 255, 0.5);
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    font-size: 17px;
}

.eimza-cta-box {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(10, 111, 111, 0.2);
}

.eimza-cta-box h2 {
    color: #0a6f6ffd;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0a6f6ffd, #464444);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(10, 111, 111, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(10, 111, 111, 0.5);
}

/* Responsive */
@media (max-width: 968px) {
    .eimza-page {
        padding: 60px 0;
    }

    .eimza-image-box .image-placeholder {
        height: 300px;
        font-size: 18px;
    }

    .eimza-content-box {
        padding: 35px 25px;
        margin-bottom: 30px;
    }

    .eimza-content-box h2 {
        font-size: 28px;
    }

    .eimza-content-box ul {
        column-count: 1;
    }

    .eimza-cta-box {
        padding: 40px 25px;
    }

    .eimza-cta-box h2 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .eimza-image-box {
        padding: 25px;
    }

    .eimza-image-box .image-placeholder {
        height: 250px;
        font-size: 16px;
    }

    .eimza-content-box {
        padding: 25px 20px;
    }

    .eimza-content-box h2 {
        font-size: 24px;
    }

    .eimza-content-box p {
        font-size: 15px;
    }

    .eimza-cta-box {
        padding: 30px 20px;
    }

    .eimza-cta-box h2 {
        font-size: 22px;
    }

    .cta-btn {
        padding: 15px 35px;
        font-size: 16px;
    }
}


/* ===================== Hizmetlerimiz ===================== */
.services-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f9fafc 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

/* Görsel buton */
.service-button {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.service-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  text-align: center;
  color: #48abbc;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 10px 30px;
}



/* ==================== HİZMET DETAY SAYFASI (service.html) ==================== */
.service-page {
  padding: 90px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.service-hero {
  text-align: center;
  margin-bottom: 50px;
}

.service-hero img {
  max-width: 900px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 35px rgba(72, 171, 188, 0.25);
}

.service-hero h1 {
  margin-top: 25px;
  font-size: 36px;
  font-weight: 700;
  color: #0a6f6ffd;
}

.service-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.service-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(10, 111, 111, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(72, 171, 188, 0.2);
}

.service-block h2 {
  color: #48abbc;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.service-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #48abbc, #9595c7);
  border-radius: 2px;
}

.service-block p {
  color: #555;
  font-size: 16px;
  line-height: 1.9;
  text-align: justify;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .service-hero img {
    max-width: 100%;
  }
  .service-block {
    padding: 25px;
  }
  .service-block h2 {
    font-size: 22px;
  }
}


/* ============================
   HİZMETLERİMİZ DROPDOWN DÜZENİ
   ============================ */
.dropdown-content {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  min-width: 250px;
  padding: 15px 0;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(72, 171, 188, 0.25);
  border: 1.5px solid rgba(72, 171, 188, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
  max-height: 260px; /* yaklaşık 4 satır */
  scrollbar-width: thin;
  scrollbar-color: rgba(72, 171, 188, 0.4) transparent;
}

.dropdown:hover .dropdown-content {
  display: flex;
  opacity: 1;
  visibility: visible;
  top: calc(100% + 6px);
}

.dropdown-content a {
  display: block;
  padding: 10px 18px;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(72, 171, 188, 0.08);
  transition: all 0.25s ease;
  background: transparent;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: linear-gradient(90deg, rgba(72, 171, 188, 0.1), rgba(149, 149, 199, 0.1));
  color: #48abbc;
  padding-left: 25px;
}

/* Kaydırma çubuğu (Chrome) */
.dropdown-content::-webkit-scrollbar {
  width: 6px;
}
.dropdown-content::-webkit-scrollbar-thumb {
  background: rgba(72, 171, 188, 0.4);
  border-radius: 10px;
}
.dropdown-content::-webkit-scrollbar-thumb:hover {
  background: rgba(72, 171, 188, 0.6);
}



/* =============================
   HİZMETLERİMİZ - 4'LÜ KART DİZİLİMİ
   ============================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Sabit 4 kolon */
  gap: 25px;
  margin-top: 50px;
  justify-items: center;
}

/* Kart boyutu - biraz daha kompakt */
.service-card {
  width: 100%;
  max-width: 300px; /* Kartlar küçüldü */
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(72, 171, 188, 0.25);
}

/* Görsel yüksekliği daha dengeli */
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Başlık boyutu */
.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #48abbc;
  padding: 16px 10px 22px;
}

/* Hover efekti - parlama */
.service-card:hover h3 {
  color: #0a6f6f;
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* =============================
   ÇÖZÜM ORTAKLARIMIZ - DÜZENLİ GRID
   ============================= */
.partners-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f9fafc 100%);
}

.partners-content {
  text-align: center;
  margin-bottom: 40px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* otomatik uyumlu */
  gap: 30px;
  align-items: center;
  justify-items: center;
  margin-top: 30px;
}

/* Her logo kutusu aynı oranda olacak */
.partner {
  width: 220px;
  height: 120px; /* dikdörtgen oran */
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(72, 171, 188, 0.15);
  overflow: hidden;
}

.partner:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(72, 171, 188, 0.25);
  border-color: rgba(72, 171, 188, 0.35);
}

/* Logo görselleri - tam sığacak şekilde */
.partner img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ⚡ kenarlarda siyah boşluk yok */
  object-position: center;
  border-radius: 0;
  background: transparent;
  mix-blend-mode: multiply; /* arka planla doğal karışım */
  transition: transform 0.3s ease;
}

.partner:hover img {
  transform: scale(1.05);
}

/* Küçük ekranlarda uyumlu */
@media (max-width: 768px) {
  .partner {
    width: 160px;
    height: 90px;
  }
}


/* =============================
   HİZMET DETAY SAYFASI - TAM SĞAN, NET GÖRSEL
   ============================= */

.service-header {
  text-align: center;
  margin-top: 60px; /* 🟣 Menüden boşluk */
  margin-bottom: 50px;
}

.service-header img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;  /* Sayfayı taşırmadan merkezde tutar */
  height: 400px;      /* ⚖️ Sabit bir yükseklik alanı */
  object-fit: contain; /* 🔥 Görselin tamamı görünür, kırpma olmaz */
  object-position: center;
  border-radius: 18px;
  background: #f2f2f2; /* Gri arka plan - görselden taşan boşluğu doğal gösterir */
  box-shadow: 0 6px 25px rgba(72, 171, 188, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-header img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 35px rgba(72, 171, 188, 0.35);
}

.service-header h2 {
  margin-top: 25px;
  font-size: 30px;
  font-weight: 600;
  color: #0a6f6f;
  letter-spacing: 0.4px;
}

@media (max-width: 992px) {
  .service-header {
    margin-top: 40px;
  }
  .service-header img {
    max-width: 90%;
    height: 320px;
  }
  .service-header h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .service-header {
    margin-top: 30px;
  }
  .service-header img {
    max-width: 100%;
    height: 240px;
  }
  .service-header h2 {
    font-size: 22px;
  }
}

/* ==============================
   Hizmetlerimiz dropdown - 4 satır sonra sağ sütuna geç
   ============================== */
@media (min-width: 969px) {
  #solutions-dropdown {
    display: grid !important;
    grid-auto-flow: column; /* akışı sütun sütun yapar */
    grid-template-rows: repeat(4, auto); /* her sütunda 4 satır */
    column-gap: 40px; /* sütun arası boşluk */
    row-gap: 8px; /* satır arası boşluk */
    padding: 25px 35px;
    width: max-content;
    max-height: none;
    overflow: visible;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 14px;
  }

  #solutions-dropdown a {
    display: block;
    white-space: nowrap;
    padding: 8px 0;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
  }

  #solutions-dropdown a:hover {
    color: #48abbc;
    padding-left: 6px;
  }
}
/* ==========================
   İLETİŞİM SAYFASI
   ========================== */
.contact-section {
  padding: 90px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.contact-box {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(72, 171, 188, 0.2);
  text-align: center;
}

.contact-box p {
  font-size: 17px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 18px;
}

.contact-box a {
  color: #48abbc;
  text-decoration: none;
  font-weight: 600;
}

.contact-box a:hover {
  text-decoration: underline;
}


/* =============================
   WHATSAPP FLOATING BUTTON
   ============================= */
.whatsapp-float {
  position: fixed;          /* ✅ her zaman görünür */
  bottom: 25px;             /* ekranın altından 25px */
  left: 25px;               /* ekranın solundan 25px */
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 4000;            /* her şeyin üstünde kalır */
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Küçük ekranlarda biraz küçültelim */
@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 18px;
    left: 18px;
  }
  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}
