
/*##########YAPILAN DEĞİŞİKLİKLER#################*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&amp;family=Roboto:wght@100;300;400;500;700;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css?family=Barlow:100,200,300,400,500,600,700,800&amp;display=swap');

 
 

html, body {
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Barlow, sans-serif;
    background-color: #FFFFFF;
    color: #4B5563;
    --accent-color: #1E3A8A;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main-content {
    position: relative;
    z-index: 1;
    padding-top: 40px;
    flex: 1 0 auto;
    margin-left: 270px;
    width: calc(100% - 270px);
    box-sizing: border-box;
}
footer {
    flex-shrink: 0;
    margin-left: 270px;
    width: calc(100% - 270px);
    box-sizing: border-box;
}
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 270px;
    height: 100vh;
    background: #FFFFFF;
    border-right: 1px solid #E5E7EB;
    padding: 10px 0;
    overflow-y: auto;
}
.sidebar-content {
    width: 100%;
}
.sidebar::-webkit-scrollbar {
    width: 8px;
}
.sidebar::-webkit-scrollbar-track {
    background: #23272b;
}
.sidebar::-webkit-scrollbar-thumb {
    background: #383e44;
    border-radius: 4px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
    background: #454c54;
}
.logo {
    width: 240px;
    height: 240px;
    margin: 10px auto 30px;
    display: block;
    padding: 10px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}
.logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}
.logo-rotateY {
    animation: rotateYlogo 12s linear infinite;
    transform-style: preserve-3d;
}
@keyframes rotateYlogo {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}
.logo img {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    transition: all 0.3s ease;
}
.logo img:hover {
    transform: none;
    filter: none;
    box-shadow: none;
}
.menu {
    list-style: none;
    padding: 0;
    width: 100%;
    margin: 0;
}
.menu li {
    padding: 10px 30px;
    cursor: pointer;
    border-bottom: 1px solid #E5E7EB;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.menu li img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}
.menu li::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    pointer-events: none;
}
.menu li:hover {
    background: rgba(30, 58, 138, 0.1);
    transform: translateX(5px);
}
.menu li:hover::before {
    transform: translate(-50%, -50%) scale(1);
    animation: menuGlow 2s infinite;
}
.menu-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}
.menu li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1E3A8A;
    font-weight: 600;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}
.menu li:hover a {
    transform: scale(1.05);
    color: #1E3A8A;
}
@keyframes menuGlow {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
}
.social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 15px 0;
}
.main-content h1, 
.main-content h2, 
.main-content h3, 
.main-content h4, 
.main-content h5, 
.main-content h6 {
    color: #1E3A8A;
}
.main-content p,
.main-content li,
.main-content span {
    color: #4B5563;
}
.main-content h1 {
    color: #1E3A8A;
    text-shadow: none;
    transition: all 0.5s ease;
}
.main-content h1:hover {
    color: #1E3A8A;
    transform: scale(1.02);
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}
.service {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Özel renk temaları */
.service[data-service="ik"] {
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2),
                -3px -3px 10px rgba(255, 255, 255, 0.02);
}

.service[data-service="mimari"] {
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2),
                -3px -3px 10px rgba(255, 255, 255, 0.02);
}

.service[data-service="emlak"] {
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2),
                -3px -3px 10px rgba(255, 255, 255, 0.02);
}

.service[data-service="danismanlik"] {
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2),
                -3px -3px 10px rgba(255, 255, 255, 0.02);
}

.service[data-service="taahhut"] {
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2),
                -3px -3px 10px rgba(255, 255, 255, 0.02);
}

/* Hover efektleri */
.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-color: #1E3A8A;
}

.service[data-service="insaat"]:hover {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
}

.service[data-service="mimari"]:hover {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
}

.service[data-service="emlak"]:hover {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
}

.service[data-service="danismanlik"]:hover {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
}

.service[data-service="taahhut"]:hover {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
}

.service a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.service .icon-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}
.service .icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: brightness(1);
}
.service:hover .icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.service:hover .icon-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1);
}
.service img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s ease;
    filter: brightness(0.9);
}
.service:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}
.service p {
    color: #6B7280;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
}
.service p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    opacity: 0;
    transition: 0.3s;
}
.service:hover p::after {
    opacity: 1;
    width: 80px;
}
.hamburger-menu {
    position: fixed;
    top: 16px;
    right: 24px;
    z-index: 3000;
    cursor: pointer;
    display: none;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.hamburger-menu:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}
.hamburger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    margin: 4px 0;
    background: #4A90E2;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
@media (max-width: 900px) {
    body, html {
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }
    .sidebar {
        display: none !important;
    }
    .main-content {
        margin-left: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 0 2vw !important;
        box-sizing: border-box !important;
    }
    footer {
        margin-left: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    .footer-boxes {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        padding: 0 2vw !important;
        overflow-x: hidden !important;
    }
    .footer-box {
        width: 100% !important;
        max-width: 340px !important;
        margin: 0.5rem auto !important;
        box-sizing: border-box !important;
    }
    .services {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1rem 0;
    }
    .service {
        padding: 1rem;
        min-width: 0;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .service .icon-wrapper {
        width: 120px;
        height: 120px;
    }
    .service .icon-wrapper img {
        width: 100%;
        height: 100%;
    }
    .service-info {
        width: 90vw;
        min-width: 0;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    .main-content h1 {
        font-size: 2.1rem;
        text-align: center;
    }
    .main-content h2 {
        font-size: 1.4rem;
        text-align: center;
    }
    .main-content p, .main-content li {
        font-size: 1rem;
    }
    .footer-social {
        gap: 10px;
    }
    .language-selector {
        top: 8px;
        right: 8px;
        padding: 2px 4px;
        border-radius: 6px;
        gap: 4px;
    }
    .language-selector .lang-btn {
        font-size: 0.95rem;
        padding: 2px 8px;
        min-width: 36px;
        min-height: 24px;
        border-radius: 5px;
    }
    .mobile-menu-sidebar {
        max-width: 260px;
        width: 75vw;
    }
}
@media (max-width: 600px) {
    .main-content {
        padding: 8px 2vw;
    }
    .service .icon-wrapper {
        width: 80px;
        height: 80px;
    }
    .main-content h1 {
        font-size: 1.4rem;
    }
    .main-content h2 {
        font-size: 1.1rem;
    }
    .main-content p, .main-content li {
        font-size: 0.95rem;
    }
    .footer-boxes {
        gap: 0.5rem;
    }
    .footer-social {
        gap: 6px;
    }
    .phone-number-link {
        font-size: 2rem !important;
        white-space: nowrap !important;
        letter-spacing: 1px;
        display: block;
        text-align: center;
    }
}

/* Referanslar ve İstatistikler Bölümü */
.references-stats {
    padding: 4rem 2rem;
    background-color: #23272b;
    margin: 2rem 0;
}

.references, .statistics {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.references h2, .statistics h2 {
    text-align: center;
    color: #FFD700;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.reference-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.reference-item {
    background: #1a1e22;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 1px solid #383e44;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

.reference-item img {
    max-width: 150px;
    height: auto;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.reference-item:hover img {
    filter: brightness(1.1);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: #1a1e22;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border: 1px solid #383e44;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
    color: #ffffff;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .reference-logos {
        gap: 1rem;
    }
    
    .reference-item {
        padding: 1rem;
    }
    
    .reference-item img {
        max-width: 120px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* Dil Seçici */
.language-selector {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1000 !important;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 6px 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 8px;
}

.language-selector .lang-btn {
    background: #fff !important;
    border: 2px solid #1E3A8A !important;
    color: #1E3A8A !important;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    padding: 6px 18px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 8px rgba(30,58,138,0.07);
    min-width: 60px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.language-selector .lang-btn:hover {
    background: #1E3A8A !important;
    color: #fff !important;
    border: 2px solid #1E3A8A !important;
}

.cta-btn.cta-gold {
    background: #1E3A8A;
    color: #FFFFFF;
}

.cta-btn.cta-gold:hover {
    background: #1E3A8A;
    color: #FFFFFF;
    opacity: 0.9;
}

.cta-btn.cta-outline {
    background: transparent;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
}

.cta-btn.cta-outline:hover {
    background: #1E3A8A;
    color: #FFFFFF;
}

.big-title {
    text-align: center;
    margin-top: 10px;
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 1px;
    text-shadow: 0 2px 16px #00000055;
    transition: color 0.3s, transform 0.3s;
    cursor: pointer;
}

.big-title:hover {
    color: #1E3A8A;
    transform: scale(1.07);
}

footer {
    background: #FFFFFF;
    color: #4B5563;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid #E5E7EB;
}

.footer-box h3 {
    color: #1E3A8A;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-box p, .footer-box a, .footer-content, .working-hours p {
    color: #6B7280 !important;
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 600;
}

.social a {
    color: #1E3A8A;
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1E3A8A;
    border-radius: 50%;
    box-sizing: border-box;
    background: none;
    margin: 0;
}

.social a:hover {
    transform: scale(1.1);
    color: #1E3A8A;
    background: rgba(30, 58, 138, 0.1);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .services {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        padding: 2rem;
    }

    .service {
        width: 100px;
        height: 100px;
    }
    
    .service .icon-wrapper {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .services {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .service {
        width: 100px;
        height: 100px;
    }
    
    .service .icon-wrapper {
        width: 150px;
        height: 150px;
    }

    .service p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .services {
        grid-template-columns: 1fr;
         padding: 0rem;  
    }

    .service {
        width: 100px;
        height: 100px;
    }
    
    .service .icon-wrapper {
        width: 120px;
        height: 120px;
    }

    .service p {
        font-size: 1rem;
    }
}

.service-icon {
    width: 100%;
    height: 100%;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.service:hover .service-icon {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    transform: scale(1.1);
}

/* Bilgi kutusu */
.service-info {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(26, 30, 34, 0.98);
    padding: 15px;
    border-radius: 10px;
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    pointer-events: none;
}

.service-info::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: rgba(26, 30, 34, 0.98) transparent transparent transparent;
}

.service:hover .service-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-20px);
}

.service-info h4 {
    color: var(--accent-color);
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-info p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    padding: 0;
}

@media (max-width: 768px) {
    .service-info {
        width: 200px;
        padding: 12px;
    }

    .service-info h4 {
        font-size: 1rem;
    }

    .service-info p {
        font-size: 0.85rem;
    }
}

/* Mikro-etkileşimler */
.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(255, 255, 255, 0.1) 0%, 
                transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 15px;
}

.service:hover::before {
    opacity: 1;
}

/* Kurumsal Sayfa Stilleri */
.corporate-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.corporate-content h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.corporate-content section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.corporate-content h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.corporate-content p {
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.values ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.values li {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.values li:hover {
    transform: translateY(-5px);
}

.values h3 {
    color: #2a2a2a;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.certificates ul {
    list-style: none;
    padding: 0;
}

.certificates li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 5px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .corporate-content {
        padding: 1rem;
    }
    
    .corporate-content section {
        padding: 1.5rem;
    }
}

.footer-box .address-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 5px;
    border-radius: 5px;
}

.footer-box .address-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.footer-box .phone-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 5px;
    border-radius: 5px;
}

.footer-box .phone-link:hover {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    transform: translateY(-2px);
}

/* Footer Stilleri */
footer {
    background: #FFFFFF;
    color: #4B5563;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid #E5E7EB;
}

.footer-boxes {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.footer-box {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(30,58,138,0.07);
    border: 1px solid #E5E7EB;
    color: #4B5563;
}

.footer-box h3 {
    color: #1E3A8A;
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-content, .footer-box p, .footer-box a {
    color: #4B5563;
    line-height: 1.6;
    font-size: 0.95rem;
    text-decoration: none;
}

.working-hours {
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    float: none !important;
}

.working-hours h3 {
    color: #1E3A8A;
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.working-hours p {
    color: #4B5563;
    margin: 5px 0;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    footer {
        margin-left: 0;
    }
    
    .footer-boxes {
        grid-template-columns: 1fr !important;
    }

    .footer-box {
        padding: 15px;
    }

    .working-hours {
        margin-top: 20px;
    }
}

/* Sosyal Medya Stilleri */
.social a {
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.social a:hover {
    transform: scale(1.1);
}

.social i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Facebook */
.social a[title="Facebook"] i {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}

.social a[title="Facebook"]:hover i {
    background: rgba(24, 119, 242, 0.2);
}

/* Instagram */
.social a[title="Instagram"] i {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}

.social a[title="Instagram"]:hover i {
    background: rgba(228, 64, 95, 0.2);
}

/* TikTok */
.social a[title="TikTok"] i {
    color: #000000;
    background: rgba(0, 0, 0, 0.1);
}

.social a[title="TikTok"]:hover i {
    background: rgba(0, 0, 0, 0.2);
}

.center-yellow-title {
    text-align: center;
    color: #FFD700;
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

/* Açılır alt menüdeki kutunun yüksekliğini ve paddingini artır, overflow'u düzelt */
.menu .submenu {
  padding: 8px 0 !important;
  min-width: 180px;
  background: #fcfcf7 !important;
  border-radius: 8px !important;
  overflow: visible !important;
  box-shadow: 0 2px 12px #0001;
}
.menu .submenu li a {
  font-size: 0.97rem !important;
  line-height: 1.4 !important;
  padding: 7px 18px !important;
  white-space: normal !important;
  font-weight: 700;
}

.mobile-menu-sidebar {
  z-index: 12000 !important;
}

footer .working-hours {
  margin-left: auto;
  margin-right: auto;
  max-width: 340px;
  min-width: 220px;
  display: block;
  float: none;
}

/* Masaüstünde sidebar ve logo kesin pozisyon ve genişlik */
@media (min-width: 901px) {
  .sidebar {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 270px !important;
    height: 100vh !important;
    background: #fff !important;
    border-right: 1px solid #E5E7EB !important;
    transform: none !important;
    z-index: 1200 !important;
    display: block !important;
  }
  .sidebar .logo {
    display: block !important;
    margin: 10px auto 30px auto !important;
    width: 240px !important;
    height: 240px !important;
  }
  .hamburger-menu {
    display: none !important;
  }
}

/* KİLİTLİ: Footer kutuları ve sidebar/logonun masaüstünde doğru görünmesi için */
body .footer-boxes {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  width: 100% !important;
}
@media (max-width: 900px) {
  body .footer-boxes {
    grid-template-columns: 1fr !important;
  }
}
@media (min-width: 901px) {
  body .sidebar {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 270px !important;
    height: 100vh !important;
    background: #fff !important;
    border-right: 1px solid #E5E7EB !important;
    transform: none !important;
    z-index: 1200 !important;
    display: block !important;
  }
  body .sidebar .logo {
    display: block !important;
    margin: 10px auto 30px auto !important;
    width: 240px !important;
    height: 240px !important;
  }
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 0 32px 0;
    background: none;
}

@media (max-width: 768px) {
    .main-content {
        padding-top: 30px;
    }
    
    .hero-section {
        padding: 15px 0 25px 0;
    }
}

/* Mobil Uyumluluk için Media Queries */
@media screen and (max-width: 1024px) {
    .main-content {
        margin-left: 0;
        padding: 20px;
    }

    .sidebar {
        transform: translateX(100%);
        transition: transform 0.3s ease;
        position: fixed;
        right: 0;
        left: auto;
        z-index: 1000;
        background: #fff;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .hamburger-menu {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        left: auto;
        z-index: 99999;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 25px;
    }

    .hamburger-menu span {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #1E3A8A;
        margin: 5px 0;
        transition: all 0.3s ease;
        position: relative;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Ana başlık ve alt başlıklar için tutarlı boyutlar */
    .main-content h1, .ik-title {
        font-size: 2.2rem !important;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .ik-slogan-box div[data-lang="ik_slogan"] {
        font-size: 1.8rem !important;
    }

    .ik-slogan-box div[data-lang="ik_sloganDesc"] {
        font-size: 1.4rem !important;
    }

    h2, .section-title {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.6rem !important;
    }

    p, .content-text {
        font-size: 1.2rem !important;
    }

    /* İletişim sayfası grid düzeni */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    /* Hizmet kartları düzeni */
    .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    /* Form elemanları */
    .form-group {
        margin-bottom: 15px;
    }

    input, select, textarea {
        width: 100%;
    }

    /* Başlıklar */
    h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    /* Sosyal medya ikonları */
    .social {
        gap: 8px;
    }

    .social img {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }

    /* İletişim bilgileri */
    .contact-info {
        flex-direction: column;
    }

    /* Harita */
    .map-container {
        height: 300px;
    }

    /* Dil seçimi */
    .language-selector {
        top: 20px;
        right: 20px;
    }

    /* Form elemanları */
    .form-container {
        padding: 15px;
    }

    /* Butonlar */
    .button, .submit-btn {
        width: 100%;
        margin: 10px 0;
    }
}

@media screen and (max-width: 480px) {
    /* Başlıklar */
    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 16px;
    }

    /* Sosyal medya ikonları */
    .social img {
        width: 30px;
        height: 30px;
    }

    /* Menü */
    .menu li {
        padding: 8px 0;
    }

    /* Form elemanları */
    input, select, textarea {
        padding: 8px;
        font-size: 14px;
    }
} 














/*index*/



      /* Sosyal Medya Stilleri */
        .social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            padding: 15px 0;
        }

        .social a {
            color: #fff;
            text-decoration: none;
            font-size: 24px;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .social a:hover {
            transform: scale(1.1);
            color: #f0f0f0;
        }

        .social i {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: background 0.3s ease;
        }

        .social a:hover i {
            background: rgba(255, 255, 255, 0.2);
        }
        .stats-title {
            color: #ffd700;
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: bold;
        }

        .language-selector {
            position: fixed;
            top: 24px;
            right: 24px;
            z-index: 9999; /* En üstte görünmesi için yüksek z-index değeri */
            background: rgba(34,34,34,0.85);
            border-radius: 8px;
            padding: 6px 12px;
            box-shadow: 0 2px 12px #0002;
            display: flex;
            gap: 8px;
        }

        .language-selector .lang-btn {
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
        }
        .language-selector .lang-btn:hover {
            background: #ffd70022;
            color: #fff;
        }

        .main-content {
            position: relative;
            z-index: 1;
            padding-top: 30px; /* Üst boşluğu azalttım */
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
            margin-bottom: 10px;
        }
        .cta-btn {
            font-weight: bold;
            padding: 12px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1.1rem;
            box-shadow: 0 2px 12px #0002;
            transition: background 0.2s, color 0.2s, transform 0.2s;
            border: none;
            outline: none;
            display: inline-block;
        }
        .cta-btn.cta-gold {
            background: #FFD700;
            color: #222;
        }
        .cta-btn.cta-gold:hover {
            background: #FFC107;
            color: #000;
        }
        .cta-btn.cta-outline {
            background: transparent;
            color: #FFD700;
            border: 2px solid #FFD700;
        }
        .cta-btn.cta-outline:hover {
            background: #FFD700;
            color: #222;
        }
        .cta-btn.cta-whatsapp {
            background: #25D366;
            color: #fff;
            padding: 12px 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            border: none;
        }
        .cta-btn.cta-whatsapp:hover {
            background: #1ebe5d;
            color: #fff;
        }
        .cta-btn.cta-whatsapp i {
            font-size: 1.3em;
        }
        .dropdown, .dropdown-menu, .dropdown-toggle { display: initial !important; background: none !important; border: none !important; box-shadow: none !important; position: static !important; }

        .big-title {
            text-align: center;
            margin-top: 10px; /* Üst margin'i azalttım */
            font-size: 2.8rem;
            font-weight: 900;
            color: #ffd700;
            letter-spacing: 1px;
            text-shadow: 0 2px 16px #00000055;
            transition: color 0.3s, transform 0.3s;
            cursor: pointer;
        }
        .big-title:hover {
            color: #ffc107;
            transform: scale(1.07);
            text-shadow: 0 4px 24px #ffd70055;
        }
        .phone-number-link {
            text-decoration: none;
            color: #fff;
            font-size: 3.4rem;
            font-weight: 900;
            letter-spacing: 3px;
            text-shadow: 0 2px 16px #00000055;
            margin-bottom: 10px; /* Alt margin'i azalttım */
            transition: color 0.2s, transform 0.2s, text-shadow 0.2s;
        }
        .phone-number-link:hover {
            color: #fff200;
            transform: scale(1.07);
            text-shadow: 0 4px 24px #ffd70099;
        }
        .hero-slogan {
            text-align: center;
            margin-bottom: 18px;
        }
        .slogan-text {
            display: block;
            font-size: 2.1rem;
            font-weight: 900;
            color: #fff;
            letter-spacing: 1px;
            text-shadow: 0 2px 16px #00000055;
            margin-bottom: 8px;
            text-transform: uppercase;
        }
        .slogan-desc {
            display: block;
            font-size: 1.1rem;
            color: #e0e0e0;
            font-family: inherit;
            font-weight: 500;
            margin-bottom: 18px;
        }
        .hero-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 20px 0 32px 0; /* Üst padding'i azalttım */
            background: none;
        }
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        .footer-social-img {
            width: 48px;
            height: 48px;
            border: 2px solid #FFD700;
            border-radius: 50%;
            object-fit: cover;
            background: none;
            transition: box-shadow 0.2s, transform 0.2s;
            display: block;
        }
        .footer-social-img:hover {
            box-shadow: 0 0 0 4px #FFD70044;
            transform: scale(1.08);
        }
        .email-link {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .email-link:hover {
            color: #FFD700;
        }
        .animated-logo-hover {
            transition: transform 0.8s cubic-bezier(.4,2,.6,1), box-shadow 0.8s;
        }
        .animated-logo-hover:hover {
            transform: rotate(360deg) scale(1.08);
            box-shadow: 0 0 32px #ffd70055;
        }
        .animated-logo-spin {
            animation: spin 3s linear infinite;
        }
        @keyframes spin {
            100% { transform: rotate(360deg); }
        }
        .animated-logo-glow {
            animation: glow 2s ease-in-out infinite alternate;
        }
        @keyframes glow {
            0% { box-shadow: 0 0 0px #ffd70000; }
            100% { box-shadow: 0 0 32px #ffd700cc, 0 0 64px #fff20044; }
        }
        .main-logo-spin {
            animation: spin 3s linear infinite;
        }
        @keyframes spin {
            100% { transform: rotate(360deg); }
        }
        .main-logo-spin-left {
            animation: spinleft 3s linear infinite;
        }
        @keyframes spinleft {
            100% { transform: rotate(-360deg); }
        }
        .main-logo-spin-right {
            animation: spinright 3s linear infinite;
        }
        @keyframes spinright {
            100% { transform: rotate(360deg); }
        }
        .logo-rotateY {
            animation: rotateYlogo 5s linear infinite;
            transform-style: preserve-3d;
        }
        @keyframes rotateYlogo {
            100% { transform: rotateY(360deg); }
        }
        .mobile-menu-sidebar {
            position: fixed;
            top: 0;
            right: -100vw;
            left: auto;
            width: 80vw;
            max-width: 320px;
            height: 100vh;
            background: #fff;
            z-index: 2000;
            box-shadow: -2px 0 16px #0001;
            transition: right 0.3s;
            overflow-y: auto;
            padding: 2rem 1rem 1rem 1rem;
        }
        .mobile-menu-sidebar.active {
            right: 0;
        }
        .mobile-menu-sidebar .menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .mobile-menu-sidebar .menu li {
            padding: 0.7rem 0.5rem;
            border-bottom: 1px solid #eee;
        }
        .mobile-menu-sidebar .menu li a {
            color: #1E3A8A;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
        }
        .mobile-menu-sidebar .menu .has-submenu > a:after {
            content: '▼';
            float: right;
            font-size: 0.8em;
            margin-left: 8px;
        }
        .mobile-menu-sidebar .menu .submenu {
            display: none;
            padding-left: 1.2rem;
            background: #f5f6fa;
            border-radius: 0 0 8px 8px;
        }
        .mobile-menu-sidebar .menu .has-submenu.open > .submenu {
            display: block;
        }
        .mobile-menu-sidebar .menu .submenu li {
            border: none;
            padding: 0.5rem 0;
        }

        @media (max-width: 768px) {
            .main-content {
                padding-top: 20px; /* Mobil görünümde daha az padding */
            }
            
            .hero-section {
                padding: 15px 0 25px 0; /* Mobil görünümde daha az padding */
            }
        }

        .logo:hover {
            transform: scale(1.05) !important;
            filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3)) !important;
        }
        .social a:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .sidebar {
            position: fixed;
            left: 0;
            top: 0;
            width: 270px;
            height: 100vh;
            background: #FFFFFF;
            border-right: 1px solid #E5E7EB;
            padding: 10px 0;
            overflow-y: auto;
            -ms-overflow-style: none;  /* IE ve Edge için */
            scrollbar-width: none;  /* Firefox için */
        }

        .sidebar::-webkit-scrollbar {
            display: none; /* Chrome, Safari ve Opera için */
        }

        /* Yeni services stil düzenlemesi */
        .services {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, auto);
            gap: 20px;
            /*padding: 20px;*/
            max-width: 1200px;
            margin: 0 auto;
        }

        .service {
            flex: 0 0 calc(33.333% - 20px);
            margin: 10px;
            text-align: center;
            transition: transform 0.3s ease;
        }

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

        .hero-section img {
            max-width: 100%;
            height: auto;
            width: auto;
            padding: 0 15px;
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .hero-section img {
                width: 100%;
                max-height: 300px;
                object-fit: contain;
                padding: 10px;
            }
        }
		
		
		
		
		
/**IK***/



      .apply-button {
            display: inline-block;
            background: linear-gradient(90deg, #FFE355, #FFD700);
            color: #23272b;
            padding: 15px 0px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .apply-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        .ik-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .ik-section {
            background: #f5f6fa !important;
            color: #222 !important;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
        }
        .ik-section h2, .ik-section h3 {
            color: #1E3A8A !important;
        }
        .ik-section p {
            color: #222 !important;
        }

        .main-image {
            transition: transform 0.35s cubic-bezier(.4,2,.6,1), filter 0.35s;
        }
        .main-image:hover {
            transform: scale(1.07);
            filter: brightness(1.08) drop-shadow(0 8px 24px #ffd70033);
        }

        .ik-title {
            text-transform: uppercase;
        }

        .ik-content .service-image {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 24px 0 24px 0;
        }
        .ik-content .service-image img {
            width: 400px !important;
            height: 400px !important;
            object-fit: cover;
            border-radius: 16px;
            border: 3px solid #FFD700;
            background: #fff;
            box-shadow: 0 2px 16px rgba(0,0,0,0.10);
            transition: transform 0.3s, box-shadow 0.3s;
            display: block;
        }
        .ik-content .service-image img:hover {
            transform: scale(1.06);
            box-shadow: 0 6px 32px #FFD70044;
        }
        @media (max-width: 600px) {
            .ik-content .service-image img {
                width: 110px;
                height: 110px;
            }
        }

        .logo-rotateY {
            animation: rotateYlogo 5s linear infinite;
            transform-style: preserve-3d;
        }
        @keyframes rotateYlogo {
            100% { transform: rotateY(360deg); }
        }

        .ik-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            width: 100%;
            margin: 24px 0 0 0;
        }
        .ik-buttons .apply-button {
            width: 100%;
            max-width: 320px;
            margin: 0 auto;
            display: block;
            text-align: center;
        }
/* En alta bunu ekle */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px 24px;
  padding: 10px 0;
  margin-top: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.checkbox-item:hover {
  background: #f1f5ff;
  box-shadow: 0 3px 10px rgba(30, 58, 138, 0.1);
  transform: translateY(-2px);
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #1E3A8A;
  margin-right: 12px;
  cursor: pointer;
}

.checkbox-item label {
  font-weight: 500;
  font-size: 1rem;
  color: #1E3A8A;
  cursor: pointer;
  user-select: none;
}

@media (max-width: 768px) {
  .checkbox-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px;
    margin-top: 16px;
}
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px 24px;
    padding: 1rem 0;
    max-width: 100%;
}
/* Talep formu ve textarea için taşmayı kesin engelle */
.main-content,
.service-form,
.form-section,
.form-group {
    position: relative !important;
    z-index: 2 !important;
    background: transparent !important;
    overflow: visible !important;
}

.form-group textarea,
textarea[name="notes"] {
    min-height: 120px !important;
    max-height: 200px !important;
    height: 120px !important;
    resize: vertical !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: auto !important;
    background: #23272b !important;
    color: #fff !important;
    border-radius: 8px !important;
    border: 1px solid #383e44 !important;
    font-size: 16px !important;
    padding: 12px !important;
    z-index: 2 !important;
    position: relative !important;
    display: block !important;
}