* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}
body {
    background-color: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}
.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}
h1, h2, h3, .sub-title {
    font-family: 'Playfair Display', serif;
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(45, 106, 79, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 95px;
    display: flex;
    align-items: center;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    width: 100%;
}
.main-nav {
    flex: 1;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}
.nav-links li {
    display: flex;
    align-items: center;
}
.nav-links a {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.nav-links a:hover, .nav-links a.active {
    color: #1b4332;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}
.logo-area {
    display: flex;
    align-items: center;
    height: 100%;
}
.logo-area a {
    display: flex;
    align-items: center;
    height: 75px;
    padding: 5px 10px;
    text-decoration: none;
    overflow: visible;
}
.site-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    display: block;
    transform-origin: center center;
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}
.logo-area a:hover .site-logo {
    transform: scale(1.06);
}
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 2px solid #1b4332;
    list-style: none;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.dropdown-menu li {
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.dropdown-menu li:last-child {
    border-bottom: none;
}
.dropdown-menu a {
    display: block;
    padding: 15px 20px;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
}
.dropdown-menu a::after {
    display: none;
}
.dropdown-menu a i {
    margin-right: 10px;
    color: #2d6a4f;
    font-size: 13px;
}
.dropdown-menu a:hover {
    background-color: #1b4332;
    color: #ffffff !important;
}
.dropdown-menu a:hover i {
    color: #d4af37;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.slider-section {
    position: relative;
    height: 75vh;
    width: 100%;
    overflow: hidden;
    margin-top: 95px;
}
.slider-container {
    height: 100%;
    width: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 10%;
    z-index: 1;
    overflow: hidden;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}
.slide-blur-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background-size: cover;
    background-position: center;
    filter: blur(25px) brightness(0.4);
    z-index: -1;
}
.slide-sharp-img {
    max-width: 55%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    z-index: 2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.slide.slide-right {
    justify-content: flex-end;
}
.slide.slide-right .slide-sharp-img {
    left: 10%;
}
.slide.slide-left {
    justify-content: flex-start;
}
.slide.slide-left .slide-sharp-img {
    right: 10%;
}
.slide-content {
    max-width: 420px;
    z-index: 10;
    position: relative;
}
.slide-right .slide-content {
    text-align: right;
}
.slide-left .slide-content {
    text-align: left;
}
.slide-content span {
    color: #ffffff;
    background-color: #2d6a4f;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    padding: 6px 15px;
    margin-bottom: 15px;
    border-radius: 2px;
}
.slide-content h1, .slide-content h2 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
    line-height: 1.2;
}
.slide-content p {
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 400;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.8);
    line-height: 1.6;
}
.btn-premium {
    display: inline-block;
    padding: 12px 35px;
    background-color: #1b4332;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 2px solid #1b4332;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.btn-premium:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #d4af37;
}
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s;
}
.slide-btn:hover {
    background: #1b4332;
    border-color: #1b4332;
}
.prev-btn { left: 20px; }
.next-btn { right: 20px; }
.inner-page-hero {
    height: 25vh;
    margin-top: 95px;
    background-color: #112e21 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.3);
    width: 100%;
}
.inner-page-hero .slide-content {
    max-width: 100% !important;
    text-align: center !important;
    background: none !important;
    padding: 0 !important;
    position: relative !important;
}
.inner-page-hero h1 {
    font-size: 40px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    margin-bottom: 10px !important;
}
.inner-page-hero p {
    font-size: 14px !important;
    color: #ffffff !important;
    text-shadow: none !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}
.inner-page-hero p a {
    color: #d4af37 !important;
    text-decoration: none !important;
}
.works-section {
    background-color: #fcfcfc;
}
.section-title {
    text-align: center;
    margin-bottom: 80px;
}
.section-title span {
    color: #2d6a4f;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}
.section-title h2 {
    font-size: 42px;
    margin-top: 10px;
    color: #1a1a1a;
}
.work-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}
.work-row:last-child {
    margin-bottom: 0;
}
.work-content {
    padding: 20px 0;
}
.work-content h3 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    border-left: 4px solid #1b4332;
    padding-left: 15px;
}
.work-title-link {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}
.work-title-link:hover {
    color: #2d6a4f;
}
.work-content p {
    color: #555555;
    line-height: 1.8;
    font-size: 16px;
}
.work-image-wrapper {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
    height: 400px;
}
.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.work-row:hover .work-img {
    transform: scale(1.06);
}
@media (max-width: 1200px) {
    .slide-content {
        max-width: 320px;
    }
}
@media (max-width: 992px) {
    .slide {
        padding: 0 5%;
    }
    .slide-content {
        background-color: rgba(0,0,0,0.4);
        padding: 25px;
        border-radius: 4px;
        max-width: 290px;
    }
}
@media (max-width: 768px) {
    .main-header {
        position: relative;
        background-color: #ffffff;
        height: auto;
    }
    .header-container {
        flex-direction: column-reverse;
        gap: 15px;
        padding: 15px 5%;
    }
    .logo-area {
        padding-left: 0;
        justify-content: center;
        width: 100%;
    }
    .main-nav {
        width: 100%;
    }
    .nav-links {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    .nav-links a {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    .dropdown-menu {
        position: fixed;
        top: auto;
        left: 5%;
        width: 90%;
        min-width: auto;
        z-index: 9999;
    }
    .slider-section {
        margin-top: 0;
        height: 65vh;
    }
    .slide-sharp-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 100%;
        max-height: 100%;
        top: 0;
        left: 0;
        transform: none !important;
        box-shadow: none;
        border: none;
    }
    .slide-blur-bg {
        display: none;
    }
    .slide {
        justify-content: center !important;
        align-items: flex-end !important;
        padding: 0 !important;
    }
    .slide-content {
        max-width: 100% !important;
        width: 100%;
        text-align: center !important;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.95) 50%);
        padding: 50px 20px 75px 20px !important;
        border-radius: 0;
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .slide-content h1, .slide-content h2 {
        font-size: 24px !important;
        margin-bottom: 8px;
    }
    .slide-content p {
        font-size: 13px !important;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    .btn-premium {
        padding: 10px 25px;
        font-size: 11px;
    }
    .slide-btn {
        display: none;
    }
    .slider-pagination {
        right: 50% !important;
        transform: translateX(50%) !important;
        bottom: 15px !important;
        gap: 8px;
    }
    .page-dot {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .inner-page-hero {
        height: 20vh;
        margin-top: 0;
    }
    .inner-page-hero h1 {
        font-size: 28px !important;
    }
    /* MOBİLDE RESİM VE FAALİYET BİLGİSİ SIRALAMASI KESİN ÇÖZÜMÜ */
    .work-row {
        display: flex !important;
        flex-direction: column !important; /* Grid yerine flex kullanarak kontrolü ele aldık */
        gap: 30px;
        margin-bottom: 60px;
    }
    .work-content {
        order: 1 !important;  /* Her koşulda faaliyet ismi ve bilgi ilk sırada görünecek */
        padding: 10px 0 0 0;
    }
    .work-image-wrapper {
        order: 2 !important;  /* Her koşulda ilgili faaliyetin resmi bilginin hemen altında görünecek */
        height: 260px;
        width: 100%;
    }
    .section-title {
        margin-bottom: 40px;
    }
    .section-title h2 {
        font-size: 30px;
    }
}
.main-footer {
    background-color: #111111;
    color: #ffffff;
    padding-top: 60px;
    border-top: 4px solid #1b4332;
}
.footer-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
}
.footer-left h3 {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.footer-contact-item {
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.6;
}
.footer-contact-item i {
    color: #d4af37;
    font-size: 16px;
}
.footer-contact-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}
.footer-contact-item a:hover {
    color: #2d6a4f;
}
.footer-right h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}
.footer-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    gap: 15px;
}
.footer-menu a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-menu a:hover {
    color: #d4af37;
}
.footer-bottom {
    background-color: #0a0a0a;
    text-align: center;
    padding: 25px;
    font-size: 13px;
    color: #666666;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.designer-link {
    color: #2d6a4f;
    text-decoration: none;
    font-weight: bold;
}
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-sticky:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: 300px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.9);
}
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.zoom-overlay.active {
    opacity: 1;
    visibility: visible;
}
.zoom-overlay img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border: 3px solid #ffffff;
    border-radius: 4px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.zoom-overlay.active img {
    transform: scale(1);
}
@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .gallery-item { height: 240px; }
}
@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; }
}
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-socials a:hover {
    background-color: #1b4332;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.4);
}
.gallery-more-box {
    text-align: center;
    width: 100%;
    margin-top: -20px;
    margin-bottom: 40px;
}
.btn-gallery-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.btn-gallery-more i {
    font-size: 16px;
    transition: transform 0.3s ease;
}
.btn-gallery-more:hover {
    background-color: #1b4332;
    border-color: #1b4332;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(27, 67, 50, 0.2);
}
.btn-gallery-more:hover i {
    transform: scale(1.15);
}
.slider-pagination {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 30;
}
.page-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.page-dot:hover, .page-dot.active {
    background-color: #1b4332;
    border-color: #1b4332;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(27, 67, 50, 0.3);
}