* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    max-width: 100%;
    overflow-x: clip;
}

.hero-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.hero-container > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: -1;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    z-index: 9999;
    background-color: #00000055;
    transition: all 0.4s ease;
    box-sizing: border-box;
}

.logo img {
    color: #000000;
    height: 45px;
    width: auto;
    display: block;
    transition: all 0.4s ease;
}

.nav-links {
    color: #000000;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a, 
.lang-select, 
.search-icon {
    color: #ffffff; 
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.lang-select:hover,
.search-icon:hover {
    color: #cc8c72;
}

.lang-select {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px;
}

.search-icon {
    font-size: 16px;
    margin-left: 10px;
}

.social-sidebar {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 10;
}

.social-sidebar a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
}

.social-sidebar a:hover {
    transform: scale(1.2);
    color: #cbb281;
}

.hero-content {
    position: absolute;
    left: 15%;
    top: 35%;
    z-index: 10;
}

.sub-title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.main-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.btn-discover {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.btn-discover .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #cc8c72;
    border-radius: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 22px;
    height: 38px;
    border: 2px solid #fff;
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 6px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.badges {
    position: absolute;
    right: 50px;
    bottom: 120px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.badge {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, #cc8c72 0%, #8c533c 100%);
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.3s;
}

.badge:hover {
    transform: scale(1.05);
}

.badge .big-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.chat-bubble {
    position: absolute;
    right: 25px;
    top: 48%;
    width: 45px;
    height: 45px;
    background-color: #a3a168;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10;
}

.bottom-bar {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: stretch;
    z-index: 10;
}

.slider-controls {
    display: flex;
    background-color: rgba(20, 30, 45, 0.6);
}

.slider-controls button {
    background: transparent;
    border: none;
    color: #fff;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.slider-controls button:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.project-strip {
    display: flex;
    background-color: #cc8c72;
}

.project-item {
    padding: 15px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    cursor: pointer;
    border-right: 1px solid rgba(249, 245, 245, 0.1);
    transition: opacity 0.3s;
}

.project-item.active, .project-item:hover {
    opacity: 1;
}

.p-small {
    font-size: 10px;
    letter-spacing: 2px;
}

.p-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.accessibility-icon {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 35px;
    height: 35px;
    background: #fff;
    color: #101c27;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

.projects-section {
    padding: 60px;
    background-color: #ffffff;
    width: 100%;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.header-left .header-subtitle {
    display: block;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 5px;
}

.header-left .header-title {
    font-size: 42px;
    font-weight: 800;
    color: #101c27;
    line-height: 1;
}

.header-right .all-projects-link {
    text-decoration: none;
    color: #101c27;
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 4px;
    border-bottom: 2px solid #cc8c72;
    transition: opacity 0.3s;
}

.header-right .all-projects-link:hover {
    opacity: 0.7;
}

.projects-accordion {
    display: flex;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.project-card {
    position: relative;
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    will-change: flex, transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.project-card:last-child {
    border-right: none;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    transition: background 0.6s;
}

.card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: #fff;
    z-index: 2;
}

.card-subtitle {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 8px;
    display: block;
    color: #e2e8f0;
}

.card-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.0;
    margin-bottom: 0;
    transition: margin-bottom 0.4s;
}

.card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #f1f5f9;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
}

.project-card:hover {
    flex: 1.5; 
}

.project-card:hover .card-desc {
    max-height: 150px;
    opacity: 1;
    margin-top: 15px;
}

.project-card:hover .card-title {
    margin-bottom: 15px;
}

.project-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
}

.story-section {
    padding: 100px 5%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.story-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.story-carousel-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-container.slide {
    display: none;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.story-container.slide.active {
    display: flex;
    position: relative;
}

.story-image {
    flex: 1;
    position: relative;
    z-index: 2;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.story-image img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
}

.story-content {
    flex: 1;
    background-color: #cc8c729c;
    padding: 80px 60px 80px 140px;
    position: relative;
    margin-left: -100px;
    z-index: 1;
    overflow: hidden; 
}

.watermark {
    position: absolute;
    top: 60%;
    left: 10%;
    transform: translateY(-50%);
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-size: 140px;
    color: rgba(255, 253, 253, 0.759);
    z-index: -1;
    white-space: nowrap;
    user-select: none;
}

.story-subtitle { 
    font-size: 22px; 
    font-weight: 400; 
    color: #4a5568; 
    margin-bottom: 5px; 
}

.story-title { 
    font-size: 46px; 
    font-weight: 800; 
    color: #101c27; 
    margin-bottom: 20px; 
    letter-spacing: 1px; 
}

.story-desc { 
    font-size: 15px; 
    line-height: 1.6; 
    color: #4a5568; 
    margin-bottom: 40px; 
    max-width: 95%; 
}

.story-link {
    display: inline-block;
    text-decoration: none;
    color: #101c27;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 50px;
    border-bottom: 2px solid #cc8c72;
    padding-bottom: 5px;
    transition: opacity 0.3s ease;
}

.story-link:hover { 
    opacity: 0.7; 
}

.story-controls {
    display: flex;
    gap: 15px;
}

.control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #101c27;
    background: transparent;
    color: #101c27;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #101c27;
    color: #ffffff;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutLeft {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-50px); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutRight {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(50px); }
}

@media (max-width: 992px) {
    .navbar {
        padding: 20px 30px;
    }
    .navbar.scrolled {
        padding: 15px 30px !important;
    }
    .nav-links {
        display: none;
    }
    .story-container.slide, .story-container.slide.active { 
        flex-direction: column; 
    }
    .story-content { 
        margin-left: 0; 
        margin-top: -50px; 
        padding: 70px 40px; 
    }
}

.lotus-section {
    padding: 40px 0;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.lotus-container {
    padding: 40px 20px 50px 0;
    border-radius: 6px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

.lotus-title h2 {
    color: #000000;
    font-size: 52px;
    font-weight: 800;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    letter-spacing: 3px;
    margin-bottom: 35px;
    text-transform: uppercase;
    padding-left: 10px;
}

.marquee-wrapper {
    margin-top: -50px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    margin-top: -50px;
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollLotus 22s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.lotus-card {
    position: relative;
    width: 300px;
    height: 400px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transform: translateZ(0);
}

.lotus-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.lotus-card:hover img {
    transform: scale(1.05) translateZ(0);
}

.card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-sizing: border-box;
}

@keyframes scrollLotus {
    0% {
        transform: translateX(0) translateZ(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px)) translateZ(0); 
    }
}

@media (max-width: 768px) {
    .lotus-title {
        font-size: 32px;
    }
    
    .lotus-card {
        width: 220px;
        height: 300px;
    }
    .ticker-item {
        font-size: 14px;
        padding: 0 15px;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.footer-quick-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-quick-menu li {
    margin-bottom: 12px;
}

.footer-quick-menu a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-quick-menu a:hover {
    opacity: 0.7;
    color: #cc8c72;
}

.lotus-ticker-wrapper {
    width: 100%;
    border-top: 2px solid #020202; 
    border-bottom: 2px solid #000000;
    padding: 15px 15px;
    overflow: hidden; 
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
}

.lotus-ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.ticker-item {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 20px;
}

.ticker-dot {
    font-size: 20px;
    color: #cc8c72;
    padding: 0 10px;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0) translateZ(0);
    }
    100% {
        transform: translateX(-50%) translateZ(0);
    }
}

.lotus-footer {
    background-color: #000000f1;
    color: #f4f1ea;
    padding: 70px 5% 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(244, 241, 234, 0.1);
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-logo span {
    color: #cc8c72;
    font-weight: 300;
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    color: #c4d0cd;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #cc8c72;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: #cc8c72;
    color: #0f2b23;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #cc8c72;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li i {
    color: #cc8c72;
    font-size: 14px;
}

.footer-col ul li a, .footer-col ul li span {
    color: #c4d0cd;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.links-col ul li a:hover, .contact-col ul li a:hover {
    color: #cc8c72;
    padding-left: 5px; 
}

.newsletter-col p {
    font-size: 14px;
    color: #c4d0cd;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(244, 241, 234, 0.5);
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    background-color: #cc8c72;
    color: #0f2b23;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #cc8c72;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #8c9c98;
}

.bottom-right a {
    color: #8c9c98;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-right a:hover {
    color: #ffffff;
}

.divider {
    margin: 0 10px;
    opacity: 0.5;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .sub-title,
.hero-content .main-title,
.hero-content .btn-discover {
    opacity: 0; 
    animation: fadeInUp 1s ease-out forwards; 
}

.hero-content .sub-title {
    animation-delay: 0.3s;
}

.hero-content .main-title {
    animation-delay: 0.6s;
}

.hero-content .btn-discover {
    animation-delay: 0.9s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.accordion-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.accordion-container {
    display: flex;
    gap: 15px;
    height: 550px;
    width: 100%;
}

.accordion-card {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-card:hover,
.accordion-card.active {
    flex: 3; 
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.accordion-card:hover .card-bg {
    transform: scale(1.05); 
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    transition: opacity 0.4s ease;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: #ffffff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 8px;
    white-space: nowrap;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    white-space: nowrap;
}

.card-description {
    font-size: 14px;
    line-height: 1.5;
    color: #e0e0e0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.3s ease;
}

.accordion-card:hover .card-description,
.accordion-card.active .card-description {
    max-height: 100px;
    opacity: 1;
    margin-top: 5px;
}

.lotus-sanal-tur {
    width: 100%;
    max-width: 1400px;
    margin: 60px auto; 
    padding: 0 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.sanal-tur-baslik {
    text-align: center;
    margin-bottom: 30px;
}

.sanal-tur-baslik h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.sanal-tur-baslik p {
    font-size: 16px;
    color: #666;
}

.iframe-container {
    width: 100%;
    height: 75vh;
    min-height: 500px; 
    border-radius: 16px; 
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); 
    position: relative;
    background-color: #000; 
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .iframe-container {
        height: 60vh;
        min-height: 400px;
        border-radius: 8px;
    }
    .sanal-tur-baslik h2 {
        font-size: 24px;
    }
    .lotus-projects-section .header-left {
    font-size: 28px;
    margin-left: 10px;
    font-weight: 700;
    color: #222;
}
.lotus-projects-section .menu-item {
    font-size: 12px;
    color: #888;
    cursor: pointer;
    font-weight: 600;
    margin-right: 12px;
    position: relative;
    padding-bottom: 15px;
    transition: color 0.5s ease;
}
}

.sticky-form-wrapper {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 340px;
    background-color: #171717b1; 
    margin-top: 5%;
    margin-left: 10px;
    padding: 30px 25px;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    box-sizing: border-box;
}

.form-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.8;
}

.form-close-btn:hover {
    opacity: 1;
}

.form-header h2 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.form-header p {
    font-size: 15px;
    margin: 0 0 20px 0;
    line-height: 1.4;
    color: #e0e0e0;
}

.input-box {
    margin-bottom: 12px;
}

.input-box input[type="text"],
.input-box input[type="email"],
.input-box input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    color: #333;
}

.phone-input-container {
    display: flex;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.country-code {
    display: flex;
    align-items: center;
    padding: 0 10px;
    background-color: #ffffff;
    border-right: 1px solid #ddd;
}

.country-code img {
    width: 22px;
    margin-right: 6px;
}

.dropdown-arrow {
    color: #666;
    font-size: 12px;
}

.phone-input-container input[type="tel"] {
    border-radius: 0;
    flex: 1;
}

.opt-in-section {
    margin-top: 20px;
    margin-bottom: 15px;
}

.opt-in-title {
    color: #ffffff;
    text-decoration: underline;
    font-size: 15px;
    display: block;
    margin-bottom: 12px;
}

.checkbox-group-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 15px; 
}

.checkbox-group-inline label {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.legal-checkbox-group {
    margin-bottom: 20px;
}

.legal-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.legal-label input[type="checkbox"] {
    margin-top: 3px; 
}

.legal-text {
    font-size: 13px;
    line-height: 1.5;
    color: #ffffff;
}

.legal-text a {
    color: #ffffff;
    text-decoration: underline;
}

.form-submit-btn {
    width: 100%;
    background-color: #cc8c72; 
    color: #ffffff;
    border: 1px solid #ffffff; 
    padding: 14px;
    font-size: 16px;
    font-weight: normal; 
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit-btn:hover {
    background-color: #008dcf;
}

@media (max-width: 768px) {
    .sticky-form-wrapper {
        width: 300px;
        padding: 20px 15px;
    }
}

.projects-section {
    max-width: 1100px;
    margin: 40px auto;
    font-family: 'Arial', sans-serif;
    padding: 0 20px;
}

.projects-tabs-container {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    color: #999999;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
}

.tab-btn:hover {
    color: #666666;
}

.tab-btn.active {
    color: #000000;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px; 
    width: 100%;
    height: 3px;
    background-color: #000000;
}

.tab-content {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.project-card {
    position: relative;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.card-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    z-index: 2;
}

@media (max-width: 768px) {
    .tab-content {
        grid-template-columns: 1fr; 
    }
    .projects-tabs-container {
        gap: 15px;
    }
    .tab-btn {
        font-size: 16px;
    }
}

.projects-section {
    width: 100%;
    max-width: 1400px; 
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    box-sizing: border-box;
}

.projects-tabs-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
    padding-bottom: 5px;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 700;
    color: #999999;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
}

.tab-btn:hover {
    color: #555555;
}

.tab-btn.active {
    color: #000000;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px; 
    width: 100%;
    height: 3px;
    background-color: #000000;
}

.tab-content {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.project-card {
    position: relative;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.project-card:hover .card-bg {
    transform: scale(1.04);
}

.card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.card-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    z-index: 2;
}

@media (max-width: 768px) {
    .tab-content {
        grid-template-columns: 1fr;
    }
    .tab-btn {
        font-size: 16px;
    }
    .project-card {
        height: 380px;
    }
}

.lotus-hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh; 
    display: flex;
    align-items: center;
    background-image: url('../../images/lotusakyuz-legend-4 - Kopya.webp');
    background-size: cover;
    background-position: center;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    overflow: hidden;
}

.lotus-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.642) 0%, rgba(7, 16, 43, 0.3) 100%);
    z-index: 1;
}

.lotus-top-right {
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 2;
}

.lotus-logo {
    height: 40px; 
    width: auto;
}

.lotus-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 40px;
}

.lotus-text-content {
    max-width: 500px;
}

.lotus-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.lotus-title {
    color: #000;
    font-size: 28px;
    text-align:center;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 65px;
    line-height: 1.1;
}

.lotus-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e0e4eb;
}

.lotus-action-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 8px;
    border-bottom: 4px solid #cc8c72; 
    display: inline-block;
    transition: all s ease;
}

.lotus-action-link:hover {
    color: #000000;
}

.lotus-floating-btn {
    position: absolute;
    right: 50px;
    bottom: 50px; 
    z-index: 2;
    width: 55px;
    height: 55px;
    background-color: #cc8c72;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 1.5s ease;
}

.lotus-floating-btn svg {
    width: 24px;
    height: 24px;
}

.lotus-floating-btn:hover {
    transform: scale(1.5);
}

@media (max-width: 768px) {
    .lotus-title {
        font-size: 40px;
    }
    .lotus-content-container {
        padding: 0 20px;
    }
    .lotus-top-right, .lotus-floating-btn {
        right: 20px;
    }
}

.lotus-projects-section {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.lotus-projects-section .project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}

/* ---- Lenis smooth scroll (ağırlık efekti) ---- */
html.lenis, html.lenis body { height: auto; }
html.lenis { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-smooth iframe { pointer-events: none; }
/* 360 sanal tur tıklanabilir kalsın */
.lenis.lenis-smooth .iframe-container iframe { pointer-events: auto; }

.lotus-projects-section .header-left {
    font-size: 50px;
    font-weight: 700;
    color: #222;
}

.lotus-projects-section .menu-item {
    font-size: 13px !important;}

.lotus-projects-section .header-right {
    display: flex;
    gap: 25px;
    margin-left:25px;
}

.lotus-projects-section .menu-item {
    font-size: 20px;
    color: #888;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    transition: color 0.5s ease;
}

.lotus-projects-section .menu-item:hover {
    color: #333;
}

.lotus-projects-section .menu-item.active {
    color: #000;
}

.lotus-projects-section .menu-item.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}

.lotus-projects-section .accordion-gallery {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 550px;
    max-height: 550px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.lotus-projects-section .accordion-item {
    flex: 1 1 0%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.3, 1);
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    will-change: flex;
}

.lotus-projects-section .accordion-item:last-child {
    border-right: none;
}

.lotus-projects-section .accordion-item:hover {
    flex: 1.3 1 0%;
}

.lotus-projects-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
    opacity: 1;
    transition: opacity 0.6s ease;
}

.lotus-projects-section .item-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: #fff;
    white-space: nowrap;
}

.lotus-projects-section .subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
    color: #ddd;
}

.lotus-projects-section .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lotus-projects-section .description {
    font-size: 14px;
    opacity: 0;
    transform: translateY(15px);
    white-space: normal;
    max-width: 350px;
    color: #ccc;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lotus-projects-section .accordion-item:hover .description {
    opacity: 1;
    transform: translateY(0);
}
/* ==================== SCROLL-REVEAL ANİMASYONU ==================== */
/* Sadece JS aktifken gizle; JS yoksa içerik normal görünür (güvenli). */
.js-reveal .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.js-reveal .reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Hareket hassasiyeti olan kullanıcılar için efekti kapat */
@media (prefers-reduced-motion: reduce) {
    .js-reveal .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
