/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --color-dark-green: #2B4C3F;
    --color-brown-gold: #877569;
    --color-white: #FFFFFF;
    --color-light-beige: #F5F0EB;
    --color-text-dark: #333;
    --max-width: 1400px;
}

/* ========================================
   RESET & GENERAL
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 40px;
}

/* ========================================
   HEADER
   ======================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 40px;
    transition: all 0.4s ease;
    background: transparent;
}

#header.scrolled {
    background: var(--color-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
}

.header-logo {
    background: #FFFFFF;
    padding: 20px 30px;
    display: flex;
    align-items: center;
}

.header-logo a {
    display: block;
    transition: all 0.3s ease;
}

.header-logo a:hover {
    opacity: 0.8;
}

.header-logo img {
    height: 70px;
    transition: all 0.3s ease;
}

.header-nav {
    display: flex;
    gap: 40px;
    margin-left: auto;
    align-items: center;
    align-self: center;
}

.header-nav a {
    font-weight: 300;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.header-nav a:hover {
    color: var(--color-white);
    opacity: 1;
}

#header.scrolled .header-nav a {
    color: var(--color-text-dark);
}

.header-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    align-self: center;
}

.btn-brosur,
.btn-bilgi-formu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 0;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-brosur {
    background: var(--color-brown-gold);
    color: var(--color-white);
    border: 1px solid var(--color-brown-gold);
}

.btn-brosur:hover {
    background: #6f5f55;
    transform: scale(1.05);
}

#header.scrolled .btn-brosur {
    background: var(--color-brown-gold);
    color: var(--color-white);
}

.btn-bilgi-formu {
    background: #002E3D;
    color: #FFFFFF;
    border: 1px solid #002E3D;
}

.btn-bilgi-formu:hover {
    background: #004d66;
    transform: scale(1.05);
}

#header.scrolled .btn-bilgi-formu {
    background: #002E3D;
    color: #FFFFFF;
    border: 1px solid #002E3D;
}

/* Modal açıkken buton rengi tersine döner */
.btn-bilgi-formu.modal-open,
#header.scrolled .btn-bilgi-formu.modal-open {
    background: #FFFFFF;
    color: #002E3D;
    border: 1px solid #FFFFFF;
}

.btn-brosur img,
.btn-bilgi-formu img {
    width: 18px;
    height: 18px;
}

.btn-brosur img {
    filter: brightness(0) invert(1);
    width: 16px;
    height: 16px;
}

.btn-bilgi-formu img {
    filter: brightness(0) invert(1);
    width: 12px;
    height: 12px;
}

.btn-bilgi-formu.modal-open img {
    filter: brightness(0);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    align-self: center;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

#header.scrolled .hamburger span {
    background: var(--color-dark-green);
}

#header.scrolled .hamburger.active span {
    background: var(--color-white);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #002E3D;
    z-index: 1000;
    transition: right 0.4s ease;
    padding: 100px 40px 40px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.mobile-nav a:hover {
    opacity: 0.7;
}

.mobile-btn {
    width: 100%;
    justify-content: center;
}

.mobile-menu .btn-bilgi-formu {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.mobile-menu .btn-bilgi-formu img {
    filter: brightness(0) invert(1);
}

.mobile-social {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.mobile-social a:hover {
    opacity: 0.7;
}

.mobile-social img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.mobile-social-text {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    margin-left: 4px;
}

/* ========================================
   HERO SECTION
   ======================================== */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}

.hero-bg.active {
    opacity: 1;
}

.hero-bg-1 { background-image: url('img/slide/slider1.webp'); }
.hero-bg-2 { background-image: url('img/slide/slider2.webp'); }
.hero-bg-3 { background-image: url('img/slide/slider3.webp'); }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    margin-left: auto;
    margin-right: 320px;
    max-width: 600px;
}

/* Slide 1 — büyük masaüstünde biraz daha sola */
.hero-content-slide1 {
    margin-right: 510px;
}

/* Slide visibility */
.hero-content-slide1,
.hero-content-slide2,
.hero-content-slide3 {
    display: none;
}

#hero[data-slide="1"] .hero-content-slide1 {
    display: block;
}

#hero[data-slide="2"] .hero-content-slide2 {
    display: block;
}

#hero[data-slide="3"] .hero-content-slide3 {
    display: block;
}

/* Slides 2 & 3 */
.hero-content-slide2,
.hero-content-slide3 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 280px;
    text-align: left;
}

.hero-content-slide2 .hero-text h1,
.hero-content-slide3 .hero-text h1 {
    text-align: left;
    letter-spacing: 0.4em;
    color: #000000;
}

.hero-text h1 {
    font-weight: 300;
    font-size: 40px;
    color: #000000;
    letter-spacing: 3px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0s;
    text-align: left;
}

.hero-text h1:nth-child(2) {
    transition-delay: 0s;
}

.hero-text h1:nth-child(3) {
    transition-delay: 0s;
}

/* Staggered entrance when slide is visible */
.hero-content-visible .hero-text h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero-content-visible .hero-text h1:nth-child(1) {
    transition-delay: 0s;
}

.hero-content-visible .hero-text h1:nth-child(2) {
    transition-delay: 0.15s;
}

.hero-content-visible .hero-text h1:nth-child(3) {
    transition-delay: 0.3s;
}

/* Social Icons */
.social-icons {
    position: absolute;
    left: 40px;
    bottom: 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 3;
    align-items: center;
    background: rgba(255, 255, 255, 0.75);
    padding: 20px 10px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}

.social-text {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #000000;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.social-line {
    width: 1px;
    height: 60px;
    background: #000000;
    opacity: 0.6;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.social-icons img {
    width: 24px;
    height: 24px;
}

/* Slide Navigation */
.slide-navigation {
    position: absolute;
    right: 20px;
    bottom: 200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
    width: 65px; /* number(15) + gap(10) + line(40) */
}

.slide-nav-item {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: flex-end;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-number {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
    transition: all 0.3s ease;
    min-width: 15px;
    text-align: right;
    text-shadow: none;
}

.slide-line {
    width: 0;
    height: 1px;
    background: #ffffff;
    opacity: 0;
    margin-left: 0;
    overflow: hidden;
    transition: width 0.4s ease, margin-left 0.4s ease, opacity 0.3s ease;
}

.slide-nav-item.active {
    justify-content: flex-start;
}

.slide-nav-item.active .slide-number {
    opacity: 1;
    font-weight: 400;
}

.slide-nav-item.active .slide-line {
    width: 40px;
    margin-left: 10px;
    opacity: 0.8;
}

.slide-nav-item:hover .slide-number {
    opacity: 1;
}

/* ========================================
   MODAL - BİLGİ FORMU
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 380px;
    height: 100%;
    z-index: 2000;
    transition: right 0.4s ease;
    background: #002E3D;
    border-radius: 0;
    overflow-y: auto;
}

.modal.active {
    right: 0;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1999;
}

.modal.active ~ .modal-overlay,
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    z-index: 2001;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 35px;
    background: transparent;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2002;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.form-box {
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: center;
    width: 100%;
}

.form-logo {
    width: 130px;
    margin: 0 auto 30px;
}

.form-box h3 {
    font-weight: 200;
    font-size: 20px;
    color: #877569;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.form-box input,
.form-box select {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid #877569;
    border-radius: 0;
    background: transparent;
    color: var(--color-white);
    font-family: 'Lexend', sans-serif;
    font-weight: 200;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 200;
}

.form-box input:focus,
.form-box select:focus {
    outline: none;
    border-color: #a89185;
}

.form-box select {
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-weight: 200;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23877569' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.form-box select option {
    background: #002E3D;
    color: var(--color-white);
}

.kvkk-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.kvkk-checkbox input[type="checkbox"] {
    width: auto;
    margin: 4px 0 0 0;
    cursor: pointer;
}

.kvkk-checkbox label {
    font-family: 'Lexend', sans-serif;
    font-weight: 200;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--color-brown-gold);
    color: var(--color-white);
    border: none;
    border-radius: 0;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit img {
    width: 12px;
    height: 12px;
    filter: brightness(0) invert(1);
}

.btn-submit:hover {
    background: #6f5f55;
    transform: scale(1.02);
}

.form-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 0;
    border-top: none;
}

.form-partners img {
    height: 55px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.form-partners img:hover {
    opacity: 1;
}

/* ========================================
   HAKKINDA SECTION
   ======================================== */
#hakkinda {
    background: var(--color-white);
    position: relative;
}

#hakkinda .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 40px;
}

.hakkinda-header {
    display: grid;
    grid-template-columns: 215px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

.star-decoration {
    padding-top: 0;
}

.star-decoration img {
    width: 175px;
    height: 175px;
}

.hakkinda-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.section-title {
    font-weight: 300;
    font-size: 28px;
    color: var(--color-brown-gold);
    text-align: left;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
}

.section-text {
    font-weight: 300;
    font-size: 15px;
    color: var(--color-text-dark);
    text-align: left;
    margin: 0;
    line-height: 1.7;
}

.section-text strong {
    font-weight: 600;
}

.about-slider {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-img.active {
    opacity: 1;
}

.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
    padding-right: 0;
}

.slider-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow img {
    width: 25px;
    height: 25px;
}

.slider-arrow:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

/* ========================================
   AYRICALIKLARINIZ SECTION
   ======================================== */
#ayricaliklar {
    background: rgba(135, 117, 105, 0.1);
    position: relative;
}

#ayricaliklar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/yildizzemin.png') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

#ayricaliklar .container {
    position: relative;
    z-index: 1;
}

#ayricaliklar .section-title {
    text-align: left;
    margin-left: 0;
    margin-bottom: 10px;
}

.privileges-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.privileges-list ul {
    list-style: none;
}

.privileges-list li {
    font-weight: 300;
    font-size: 16px;
    color: var(--color-text-dark);
    line-height: 2;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.privileges-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--color-brown-gold);
    border-radius: 50%;
}

.privileges-images img {
    width: 100%;
    border-radius: 12px;
}

/* ========================================
   MANZARA SECTION
   ======================================== */
#manzara {
    position: relative;
    width: 100%;
    height: 600px;
    background: url('img/slide/slider1.webp') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.manzara-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
}

.manzara-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
}

.star-decoration-white {
    margin-bottom: 20px;
}

.star-decoration-white img {
    width: 80px;
    animation: pulse 3s ease-in-out infinite;
}

.manzara-content h2 {
    font-weight: 300;
    font-size: 36px;
    color: var(--color-white);
    letter-spacing: 3px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border-radius: 0;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-outline-white img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

/* ========================================
   DAİRE PLANLARI SECTION
   ======================================== */
#daire-planlari {
    background: var(--color-white);
}

.plans-content {
    display: grid;
    grid-template-columns: 200px 1fr 300px;
    gap: 60px;
    margin-top: 50px;
}

.plans-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-group {
    display: flex;
    flex-direction: column;
}

.tab-buttons {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.tab-group.open .tab-buttons {
    display: flex;
}

.tab-category {
    font-weight: 600;
    font-size: 16px;
    color: #877569;
    margin-top: 15px;
    margin-bottom: 5px;
}

.tab-category-toggle {
    cursor: pointer;
    user-select: none;
}

.tab-category-toggle:hover {
    opacity: 0.75;
}

.tab-category-direct {
    cursor: pointer;
    user-select: none;
}

.tab-category-direct:hover {
    opacity: 0.75;
}

.tab-category-direct.active {
    font-weight: 700;
}

.tab-category:first-child {
    margin-top: 0;
}

.tab-separator {
    height: 1px;
    background: var(--color-brown-gold);
    width: 60px;
    margin: 8px 0 12px 0;
}

.tab-btn {
    background: transparent;
    border: none;
    text-align: left;
    padding: 8px 15px 8px 20px;
    font-family: 'Lexend', sans-serif;
    font-weight: 300;  /* Light font for inactive tabs */
    font-size: 15px;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: var(--color-brown-gold);
}

.tab-btn.active {
    color: var(--color-brown-gold);
    font-weight: 400;  /* Regular font for active tab */
    padding-left: 35px;  /* Move active tab to the right */
}

.tab-btn.active::before {
    content: '';
    position: absolute;
    left: 20px;  /* Adjust dot position */
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-brown-gold);
    border-radius: 50%;
}

.plans-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.plans-image img {
    width: 100%;
    max-width: 600px;
}

.plans-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.plans-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.area-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #877569;
}

.area-label {
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text-dark);
}

.area-value {
    font-weight: 500;
    font-size: 24px;
    color: var(--color-brown-gold);
}

.room-table {
    width: 100%;
    border-collapse: collapse;
}

.room-table tr {
    border-bottom: none;
}

.room-table td {
    padding: 6px 0;
    font-weight: 300;
    font-size: 13px;
    color: var(--color-text-dark);
}

.room-table td:first-child {
    width: 70%;
}

.room-table td:last-child {
    text-align: right;
    font-weight: 400;
}

/* ========================================
   KONUM SECTION
   ======================================== */
#konum {
    width: 100%;
    height: 540px;
    position: relative;
}

.map-section {
    width: 100%;
    height: 100%;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--color-brown-gold);
    color: var(--color-white);
    padding: 30px 40px 20px;
    position: relative;
    font-family: 'Afacad', sans-serif;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 20px;
    align-items: center;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo-col img {
    width: 100px;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-address .footer-info {
    margin-left: -80px;
}

.footer-icon {
    width: 24px;
    height: 24px;
}

.footer-col p {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 5px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.15);
}

.footer-social img {
    width: 20px;
    height: 20px;
}

.footer-partner img {
    width: 120px;
    height: auto;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 1.5fr 1.5fr;
    gap: 40px;
    align-items: center;
    padding-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.footer-bottom-left {
    grid-column: 1 / 4;
    display: flex;
    gap: 20px;
    white-space: nowrap;
}

.footer-bottom-left a {
    font-family: 'Afacad', sans-serif;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-bottom-left a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
}

.footer-bottom-center p {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 12px;
    margin: 0;
}

.footer-bottom-right {
    grid-column: 6;
    text-align: right;
}

.footer-bottom-right img,
.footer-bottom-logo {
    width: 120px !important;
    height: 120px !important;
    max-width: none !important;
    object-fit: contain;
}

/* Policy Modals */
.policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    overflow: auto;
}

.policy-modal-content {
    position: relative;
    background: var(--color-white);
    margin: 50px auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    animation: modalFadeIn 0.3s ease;
}

.policy-modal-close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 35px;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.policy-modal-close:hover {
    color: var(--color-brown-gold);
    transform: rotate(90deg);
}

.policy-modal-content h2 {
    padding: 30px 40px 20px;
    margin: 0;
    color: var(--color-brown-gold);
    font-weight: 400;
    font-size: 28px;
    border-bottom: 1px solid #eee;
}

.policy-modal-body {
    padding: 30px 40px 40px;
    max-height: 70vh;
    overflow-y: auto;
}

.policy-modal-body h3 {
    color: var(--color-dark-green);
    font-weight: 400;
    font-size: 20px;
    margin: 25px 0 15px;
}

.policy-modal-body p {
    color: var(--color-text-dark);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-modal-body ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-modal-body ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--color-text-dark);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.6;
}

.policy-modal-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--color-brown-gold);
    border-radius: 50%;
}

.policy-modal-body strong {
    font-weight: 500;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.scroll-top img {
    width: 40px;
    height: 40px;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* (unused — kept for reference) */

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1500px) {
    .hero-content {
        margin-right: 60px;
        max-width: 480px;
    }
}

@media (max-width: 1400px) {
    .hero-content-slide2,
    .hero-content-slide3 {
        margin-bottom: 340px;
    }

    .hero-content-slide2 .hero-text h1,
    .hero-content-slide3 .hero-text h1 {
        font-size: 30px;
        letter-spacing: 0.28em;
    }
}

@media (max-width: 1200px) {
    .hero-content-slide2,
    .hero-content-slide3 {
        margin-bottom: 380px;
    }

    .hero-content-slide2 .hero-text h1,
    .hero-content-slide3 .hero-text h1 {
        font-size: 24px;
        letter-spacing: 0.22em;
    }
}

@media (max-width: 1100px) {
    .hero-content-slide2,
    .hero-content-slide3 {
        margin-bottom: 420px;
    }

    .hero-content-slide2 .hero-text h1,
    .hero-content-slide3 .hero-text h1 {
        font-size: 20px;
        letter-spacing: 0.18em;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 60px 30px;
    }

    .header-nav {
        display: none;
    }

    .header-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 36px;
    }

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

    .section-text {
        font-size: 16px;
    }

    .privileges-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .plans-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-address .footer-info {
        margin-left: 0;
    }

    .footer-bottom {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }

    .footer-bottom-left {
        grid-column: 1 / 3;
    }

    .footer-bottom-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-right {
        grid-column: 3;
    }

    .manzara-content {
        padding: 0 40px;
    }

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

@media (max-width: 768px) {
    .slide-navigation {
        flex-direction: row;
        gap: 10px;
        right: 50%;
        bottom: 30px;
        transform: translateX(50%);
    }

    .slide-nav-item {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.3);
    }

    .slide-nav-item.active {
        background: rgba(0, 0, 0, 0.75);
    }

    .slide-navigation {
        display: none;
    }

    #header {
        padding: 0 20px;
    }

    .header-logo {
        background: #FFFFFF;
        padding: 8px 16px;
        align-self: flex-start;
    }

    .header-logo img {
        height: 40px;
    }

    .container {
        padding: 50px 20px;
    }

    #hero {
        height: calc(100vw * 500 / 768);
    }

    .hero-bg-1 { background-image: url('img/slide/slider1.webp'); background-size: 100% 100%; }
    .hero-bg-2 { background-image: url('img/slide/slider2.webp'); background-size: 100% 100%; }
    .hero-bg-3 { background-image: url('img/slide/slider3.webp'); background-size: 100% 100%; }

    .hero-content-slide1 {
        margin-right: 20px;
        max-width: 200px;
    }

    .hero-content-slide2,
    .hero-content-slide3 {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 75px;
        max-width: 90%;
        text-align: left;
    }

    .hero-content-slide2 {
        margin-bottom: 95px;
        transform: translateX(35px);
    }

    .hero-text h1 {
        font-size: 12px;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .hero-content-slide2 .hero-text h1,
    .hero-content-slide3 .hero-text h1 {
        font-size: 15px;
        letter-spacing: 0.18em;
        white-space: normal;
        text-align: left;
    }

    .social-icons {
        display: none;
    }

    #hakkinda .container {
        padding: 30px 20px 50px;
    }

    .hakkinda-header {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 20px;
        white-space: normal;
    }

    .section-text {
        font-size: 14px;
    }

    .star-decoration img {
        width: 60px;
        height: 60px;
    }

    .about-slider {
        flex-direction: column;
        gap: 20px;
    }

    .slider-image {
        height: 260px;
    }

    .slider-arrow {
        font-size: 20px;
        bottom: 10px;
    }

    .slider-prev {
        right: 45px;
    }

    .slider-next {
        right: 15px;
    }

    .privileges-list li {
        font-size: 14px;
    }

    #manzara {
        height: 400px;
        background-attachment: scroll;
    }

    .manzara-content {
        padding: 0 20px;
    }

    .manzara-content h2 {
        font-size: 22px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-address .footer-info {
        margin-left: 0;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom-left {
        grid-column: auto;
        justify-content: center;
        flex-wrap: wrap;
        white-space: normal;
    }

    .footer-bottom-center {
        position: static;
        transform: none;
        text-align: center;
    }

    .footer-bottom-right {
        grid-column: auto;
        text-align: center;
    }

    footer {
        padding: 40px 20px 20px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
    }

    .scroll-top img {
        width: 30px;
        height: 30px;
    }

    .modal {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        transform: none !important;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease !important;
    }

    .modal.active {
        transform: none !important;
        opacity: 1;
        pointer-events: auto;
    }

    .modal-content {
        width: 100%;
        min-height: 100vh;
        padding: 80px 30px 40px;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 15px;
    }

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

    .section-text {
        font-size: 14px;
    }
}

/* ==========================================================
   ABOUT SECTION (MAY İnşaat Kurumsal)
   ========================================================== */
.about-section {
    padding: 80px 0;
    background: rgba(135, 117, 105, 0.1);
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(img/yildizzemin.png) center / cover no-repeat;
    opacity: .35;
    pointer-events: none;
}
.about-section > * { position: relative; z-index: 1; }

.about-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-section .about-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.about-section .about-label span {
    font-family: 'Afacad', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-brown-gold);
    letter-spacing: .5px;
    text-transform: uppercase;
}

.about-section .about-text h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.3;
    margin: 0 0 26px;
    color: var(--color-brown-gold);
    text-transform: uppercase;
}

.about-section .about-text p {
    font-family: 'Afacad', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin: 0 0 14px;
}

.about-section .about-text p strong {
    font-weight: 600;
    color: var(--color-brown-gold);
}

.about-section .about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.about-section .about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-section .stat-item {
    text-align: center;
}

.about-section .stat-number {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--color-brown-gold);
    display: block;
    margin-bottom: 6px;
}

.about-section .stat-label {
    font-family: 'Afacad', sans-serif;
    font-size: 15px;
    color: var(--color-text-dark);
}

.about-section .about-cta {
    margin-top: 34px;
}

.about-section .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 18px 45px 18px 25px;
    font-family: 'Afacad', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: transform .35s var(--ease-out-expo, cubic-bezier(.22,1,.36,1)), opacity .3s;
}

.about-section .btn-primary img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}

.about-section .btn-primary:hover {
    transform: translateY(-2px);
    opacity: .92;
}

@media (max-width: 900px) {
    .about-section { padding: 50px 0; }
    .about-section .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-section .about-image { order: -1; }
    .about-section .about-text h2 { font-size: 26px; }
    .about-section .about-stats { gap: 20px; justify-content: space-between; }
    .about-section .stat-number { font-size: 24px; }
    .about-section .stat-label { font-size: 13px; }
}

/* ==========================================================
   SECTION TAGLINE (slogan)
   ========================================================== */
.section-tagline {
    font-family: 'Afacad', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-dark);
    margin: 18px 0 30px;
    line-height: 1.5;
    opacity: .8;
    font-style: italic;
    letter-spacing: .3px;
}
#ayricaliklar .section-tagline {
    text-align: left;
    margin-bottom: 36px;
}
.manzara-tagline {
    font-family: 'Afacad', sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 8px 0 18px;
    font-style: italic;
    letter-spacing: .5px;
    opacity: .92;
}
.about-tagline {
    font-family: 'Afacad', sans-serif;
    font-size: 16px;
    font-style: italic;
    color: var(--color-brown-gold);
    margin: -14px 0 22px;
    letter-spacing: .4px;
    opacity: .9;
}
.hero-tagline {
    font-family: 'Afacad', sans-serif;
    font-size: 20px;
    color: #fff;
    margin-top: 18px;
    font-style: italic;
    letter-spacing: 1px;
    opacity: .9;
    text-transform: none;
}

/* ==========================================================
   AYRICALIKLAR — 3 kolon icon grid
   ========================================================== */
#ayricaliklar .privileges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.privilege-card {
    position: relative;
    padding: 36px 28px;
    background: #fff;
    border: 1px solid rgba(135,117,105,.15);
    border-radius: 4px;
    overflow: hidden;
    isolation: isolate;
    transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s, border-color .45s, background-color .45s;
}

/* Sol kenar şerit */
.privilege-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 4px; height: 100%;
    background: var(--color-brown-gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
    z-index: 2;
}

/* Hover görseli — kart boyutunda soluk arka plan */
.privilege-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg) center/cover no-repeat;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
    z-index: -1;
}

.privilege-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(135,117,105,.18);
    border-color: var(--color-brown-gold);
    background: rgba(255,255,255,.92);
}

.privilege-card:hover::before { transform: scaleY(1); }
.privilege-card:hover::after {
    opacity: .18;
    transform: scale(1);
}

/* Hover'da yazı vurgusu */
.privilege-card h3,
.privilege-card p {
    position: relative;
    z-index: 1;
    transition: color .35s;
}
.privilege-card:hover h3 {
    color: var(--color-brown-gold);
}
.privilege-card:hover p {
    color: #2c2520;
}

.privilege-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    color: var(--color-brown-gold);
    transition: transform .5s cubic-bezier(.22,1,.36,1), color .3s;
}

.privilege-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.privilege-card:hover .privilege-icon {
    transform: scale(1.1) rotate(-4deg);
}

.privilege-card h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--color-brown-gold);
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: letter-spacing .4s cubic-bezier(.22,1,.36,1);
}

.privilege-card:hover h3 { letter-spacing: 1px; }

.privilege-card p {
    font-family: 'Afacad', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin: 0;
}

@media (max-width: 900px) {
    #ayricaliklar .privileges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .privilege-card { padding: 26px 20px; }
    .privilege-icon { width: 52px; height: 52px; margin-bottom: 14px; }
    .privilege-card h3 { font-size: 15px; }
    .privilege-card p { font-size: 13px; }
}

@media (max-width: 560px) {
    #ayricaliklar .privileges-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   HERO / FLOATING FORM (sticky after hero)
   ========================================================== */
/* Form sürekli açık fixed kolon */
.hero-form {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    z-index: 1500;
    animation: heroFormIn .9s cubic-bezier(.22,1,.36,1) .3s both;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes heroFormIn {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Form için sayfa sağ tarafında boşluk aç */
@media (min-width: 901px) {
    body { padding-right: 320px; }
    #header { right: 320px; width: calc(100% - 320px); }
    /* Header padding'i azalt — alan dar kaldığı için */
    #header.scrolled, #header { padding: 0 30px; }
    /* Sağa fixed butonlar form altında kalmasın */
    .scroll-top { right: 360px !important; }
}
.hero-form {
    background: #002E3D;
}
.hero-form-inner {
    padding: 30px 26px 26px;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}
.hero-form-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}
.hero-form-logo img {
    max-width: 150px;
    max-height: 70px;
    filter: brightness(0) invert(1);
    display: block;
}
.hero-form-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.15);
    transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.hero-form-phone:hover { transform: translateY(-2px); }
.hero-form-phone-label {
    font-family: 'Afacad', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: 4px;
}
.hero-form-phone-num {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #c6a68b;
    letter-spacing: 1px;
}
.hero-form-inner h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 2px;
    margin: 0 0 6px;
    color: #fff;
    text-align: center;
}
.hero-form-sub {
    font-family: 'Afacad', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 18px;
    opacity: .85;
    text-align: center;
}
.hero-form #bilgiForm {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.hero-form #bilgiForm input[type="text"],
.hero-form #bilgiForm input[type="email"],
.hero-form #bilgiForm input[type="tel"],
.hero-form #bilgiForm select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-family: 'Afacad', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .3s, background-color .3s, transform .3s, box-shadow .3s;
}
.hero-form #bilgiForm input::placeholder {
    color: rgba(255,255,255,.55);
}
.hero-form #bilgiForm select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='1.5' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 11px;
    padding-right: 36px;
}
.hero-form #bilgiForm select option {
    background: #002E3D;
    color: #fff;
}
.hero-form #bilgiForm input:focus,
.hero-form #bilgiForm select:focus {
    border-color: #c6a68b;
    background: rgba(255,255,255,.12);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,.2);
}
.hero-form .kvkk-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 4px 0 4px;
    font-family: 'Afacad', sans-serif;
    font-size: 11px;
    line-height: 1.4;
    opacity: .85;
}
.hero-form .kvkk-checkbox input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #c6a68b;
    flex-shrink: 0;
}
.hero-form .btn-submit {
    margin-top: 6px;
    padding: 15px 20px;
    font-size: 14px;
    background: #c6a68b;
    color: #002E3D;
    border: none;
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .3s, transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.hero-form .btn-submit:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.3);
}
.hero-form .btn-submit img {
    width: 14px;
    filter: brightness(0);
}

@media (max-width: 1200px) and (min-width: 901px) {
    .hero-form { width: 280px; }
    body { padding-right: 280px; }
    #header { right: 280px; width: calc(100% - 280px); padding: 0 20px; }
    .scroll-top { right: 320px !important; }
}
/* === Mobile Menu Close Button === */
.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    color: var(--color-brown-gold, #877569);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: transform .3s, color .3s;
}
.mobile-menu-close:hover {
    transform: rotate(90deg);
    color: #002E3D;
}

/* === Mobile Floating Action Button (FAB) === */
.hero-form-fab { display: none; }
.hero-form-mobile-close { display: none; }

@media (max-width: 900px) {
    /* Form mobilde varsayılan gizli, FAB ile açılır */
    .hero-form {
        position: fixed;
        right: 0; left: 0;
        bottom: 0; top: auto;
        transform: translateY(100%);
        width: 100%;
        max-width: none;
        z-index: 4500;
        animation: none;
        transition: transform .45s cubic-bezier(.22,1,.36,1);
    }
    .hero-form.is-mobile-open {
        transform: translateY(0);
    }
    .hero-form-inner {
        padding: 22px 20px 24px;
        border-radius: 12px 12px 0 0;
        max-height: 85vh;
        overflow-y: auto;
        box-shadow: none;
    }
    .hero-form-sub { display: block; font-size: 13px; }

    .hero-form-mobile-close {
        display: block;
        position: absolute;
        top: 6px;
        right: 14px;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
        z-index: 2;
    }

    /* FAB — sağ altta, içeriklerin üstünde */
    .hero-form-fab {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        position: fixed;
        right: 16px;
        bottom: 16px;
        background: #002E3D;
        color: #fff;
        border: none;
        padding: 12px 18px;
        font-family: 'Lexend', sans-serif;
        font-size: 12px;
        letter-spacing: 1.5px;
        border-radius: 30px;
        box-shadow: 0 10px 26px rgba(0,46,61,.4);
        z-index: 1450;
        cursor: pointer;
        transition: transform .35s cubic-bezier(.22,1,.36,1), background .3s, box-shadow .3s;
    }
    .hero-form-fab img {
        width: 14px;
        filter: brightness(0) invert(1);
    }
    .hero-form-fab:hover,
    .hero-form-fab:active {
        background: #c6a68b;
        color: #002E3D;
        transform: translateY(-2px);
    }
    .hero-form-fab:hover img,
    .hero-form-fab:active img { filter: none; }

    /* Mobilde is-docked override — FAB modeline geç */
    .hero-form.is-docked {
        position: fixed;
        right: 0; left: 0;
        bottom: 0; top: auto;
        transform: translateY(100%);
        width: 100%;
        max-width: none;
    }
    .hero-form.is-docked.is-mobile-open {
        transform: translateY(0);
    }

    /* Mobil overlay form arkasında */
    .hero-form-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.55);
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s, visibility .35s;
        z-index: 4400;
    }
    .hero-form-overlay.active { opacity: 1; visibility: visible; }
}

/* ==========================================================
   VIDEO MODAL
   ========================================================== */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility .4s;
    z-index: 5000;
}
.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.video-modal {
    position: fixed;
    left: 50%; top: 50%;
    transform: translate(-50%, -48%) scale(.94);
    width: 92%;
    max-width: 960px;
    z-index: 5001;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s cubic-bezier(.22,1,.36,1), transform .45s cubic-bezier(.22,1,.36,1), visibility .45s;
}
.video-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.video-modal-frame {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}
.video-modal-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    transition: transform .3s, color .3s;
    z-index: 2;
}
.video-modal-close:hover {
    transform: rotate(90deg);
    color: #ffd27a;
}
@media (max-width: 700px) {
    .video-modal-close { top: -38px; font-size: 30px; }
}

/* ==========================================================
   NEARBY LOCATIONS
   ========================================================== */
.nearby-locations {
    padding: 60px 0 40px;
    background: #fff;
}
.nearby-locations .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.nearby-locations .section-title {
    margin-bottom: 28px;
}

/* Kategori renk değişkenleri */
.nearby-category {
    --cat-color: #877569;
    --cat-soft: rgba(135,117,105,.08);
    margin-bottom: 44px;
}
.nearby-category:nth-of-type(1) { --cat-color: #c6a68b; --cat-soft: rgba(198,166,139,.10); } /* Eğitim */
.nearby-category:nth-of-type(2) { --cat-color: #5a9d7d; --cat-soft: rgba(90,157,125,.10); }  /* Sağlık */
.nearby-category:nth-of-type(3) { --cat-color: #877569; --cat-soft: rgba(135,117,105,.10); } /* Yaşam */
.nearby-category:nth-of-type(4) { --cat-color: #2B4C3F; --cat-soft: rgba(43,76,63,.10); }    /* Doğa */
.nearby-category:last-child { margin-bottom: 0; }

.nearby-cat-title {
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--cat-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.nearby-cat-title::before {
    content: "";
    width: 28px; height: 1px;
    background: var(--cat-color);
}
.nearby-cat-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--cat-color), transparent);
    opacity: .4;
}
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Yeni kart tasarımı: kategori şeritli + büyük dakika + mesafe barı */
.nearby-item {
    position: relative;
    background: #fff;
    border: 1px solid rgba(135,117,105,.12);
    padding: 22px 22px 18px;
    overflow: hidden;
    isolation: isolate;
    cursor: default;
    transition: transform .45s cubic-bezier(.22,1,.36,1),
                border-color .4s,
                box-shadow .45s,
                background-color .4s;
}

/* Üstte kategori şeridi */
.nearby-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--cat-color, var(--color-brown-gold));
    transform: scaleX(.3);
    transform-origin: left;
    transition: transform .55s cubic-bezier(.22,1,.36,1);
}

/* Arka plan glow (hover'da büyür) */
.nearby-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--cat-soft, transparent), transparent 60%);
    opacity: 0;
    transition: opacity .5s;
    z-index: -1;
}

.nearby-item:hover {
    transform: translateY(-4px);
    border-color: var(--cat-color);
    box-shadow: 0 14px 30px rgba(0,0,0,.08);
}
.nearby-item:hover::before { transform: scaleX(1); }
.nearby-item:hover::after { opacity: 1; }

/* Üst satır: icon + isim */
.nearby-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}
.nearby-icon {
    width: 28px; height: 28px;
    color: var(--cat-color, var(--color-brown-gold));
    flex-shrink: 0;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.nearby-icon svg { width: 100%; height: 100%; display: block; }
.nearby-item:hover .nearby-icon {
    transform: rotate(-8deg) scale(1.1);
}

.nearby-name {
    font-family: 'Afacad', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1.3;
    flex: 1;
    min-width: 0;
    padding-top: 3px;
}

/* Büyük dakika rakamı */
.nearby-time {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Lexend', sans-serif;
    color: var(--cat-color, var(--color-brown-gold));
    line-height: 1;
    margin-bottom: 14px;
}
.nearby-time::before {
    content: attr(data-min);
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -1px;
}
.nearby-time::after {
    content: "DK";
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    opacity: .7;
}
/* Süreyi metin olarak gizle (CSS attribute kullanıyoruz) */
.nearby-time {
    font-size: 0;
    color: var(--cat-color);
}

/* Mesafe barı */
.nearby-bar {
    height: 2px;
    background: rgba(135,117,105,.12);
    position: relative;
    overflow: hidden;
}
.nearby-bar::after {
    content: "";
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: var(--pct, 30%);
    background: linear-gradient(90deg, var(--cat-color), var(--cat-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.nearby-item.is-visible .nearby-bar::after,
.is-visible .nearby-item .nearby-bar::after {
    transform: scaleX(1);
}
.nearby-item:hover .nearby-bar::after {
    filter: brightness(1.15);
}

@media (max-width: 1100px) {
    .nearby-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .nearby-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .nearby-locations .section-title { font-size: 20px; white-space: normal; }
    .nearby-item { padding: 16px 14px 14px; }
    .nearby-icon { width: 22px; height: 22px; }
    .nearby-name { font-size: 12px; line-height: 1.3; }
    .nearby-time::before { font-size: 32px; }
}

/* ==========================================================
   MODERN ANIMATION LAYER
   ========================================================== */
:root {
    --ease-out-expo: cubic-bezier(.22,1,.36,1);
    --ease-smooth: cubic-bezier(.65,0,.35,1);
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal * { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* Scroll reveal base */
.reveal {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
    will-change: opacity, transform;
}
.reveal.reveal-left  { transform: translate3d(-50px,0,0); }
.reveal.reveal-right { transform: translate3d(50px,0,0); }
.reveal.reveal-zoom  { transform: scale(.92); }
.reveal.reveal-clip  { clip-path: inset(0 100% 0 0); transform: none; opacity: 1; transition: clip-path 1.1s var(--ease-out-expo); }
.reveal.is-visible   { opacity: 1; transform: translate3d(0,0,0) scale(1); }
.reveal.reveal-clip.is-visible { clip-path: inset(0 0 0 0); }

/* Stagger children */
.stagger > * { opacity: 0; transform: translate3d(0,24px,0); transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo); }
.stagger.is-visible > * { opacity: 1; transform: none; }
.stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: .12s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: .19s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: .26s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: .33s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: .40s; }
.stagger.is-visible > *:nth-child(7) { transition-delay: .47s; }
.stagger.is-visible > *:nth-child(8) { transition-delay: .54s; }
.stagger.is-visible > *:nth-child(9) { transition-delay: .61s; }
.stagger.is-visible > *:nth-child(10){ transition-delay: .68s; }

/* HERO — satır satır mask reveal */
.hero-text h1 {
    overflow: hidden;
    display: block;
}
.hero-content.is-active .hero-text h1 {
    animation: heroLineReveal 1s var(--ease-out-expo) both;
}
.hero-content.is-active .hero-text h1:nth-child(2) { animation-delay: .15s; }
.hero-content.is-active .hero-text h1:nth-child(3) { animation-delay: .3s; }
@keyframes heroLineReveal {
    0%   { clip-path: inset(0 0 100% 0); transform: translateY(40%); opacity: 0; }
    60%  { opacity: 1; }
    100% { clip-path: inset(0 0 0 0); transform: translateY(0); opacity: 1; }
}

/* Hero bg Ken Burns */
.hero-bg.active {
    animation: kenBurns 12s ease-out both;
}
@keyframes kenBurns {
    0%   { transform: scale(1.08); }
    100% { transform: scale(1.18); }
}

/* Header nav underline */
.header-nav a {
    position: relative;
    transition: color .3s var(--ease-smooth);
}
.header-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 100%; height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .45s var(--ease-out-expo);
}
.header-nav a:hover::after { transform: scaleX(1); }

/* Butonlar — shimmer + icon kayması */
.btn-brosur, .btn-bilgi-formu, .btn-outline-white, .btn-submit {
    position: relative;
    overflow: hidden;
    transition: transform .4s var(--ease-out-expo), box-shadow .4s var(--ease-out-expo);
}
.btn-brosur::before, .btn-bilgi-formu::before, .btn-outline-white::before, .btn-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
    transform: translateX(-110%);
    transition: transform .75s var(--ease-out-expo);
    pointer-events: none;
}
.btn-brosur:hover, .btn-bilgi-formu:hover, .btn-outline-white:hover, .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.15);
}
.btn-brosur:hover::before, .btn-bilgi-formu:hover::before,
.btn-outline-white:hover::before, .btn-submit:hover::before {
    transform: translateX(110%);
}
.btn-brosur img, .btn-bilgi-formu img, .btn-outline-white img, .btn-submit img {
    transition: transform .4s var(--ease-out-expo);
}
.btn-brosur:hover img, .btn-bilgi-formu:hover img,
.btn-outline-white:hover img, .btn-submit:hover img {
    transform: translateX(5px);
}

/* Render görseli hover */
.about-slider .slider-image,
.privileges-images {
    overflow: hidden;
}
.about-slider .slide-img,
.privileges-images img {
    transition: transform 1.2s var(--ease-out-expo), filter .6s var(--ease-smooth);
}
.about-slider .slider-image:hover .slide-img.active,
.privileges-images:hover img {
    transform: scale(1.05);
    filter: brightness(1.06) saturate(1.1);
}

/* Slider arrows */
.slider-arrow {
    transition: transform .35s var(--ease-out-expo), background-color .35s, box-shadow .35s;
}
.slider-arrow:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.slider-prev:hover img { animation: nudgeLeft .6s var(--ease-smooth) infinite alternate; }
.slider-next:hover img { animation: nudgeRight .6s var(--ease-smooth) infinite alternate; }
@keyframes nudgeLeft  { to { transform: translateX(-4px); } }
@keyframes nudgeRight { to { transform: translateX(4px); } }

/* Ayrıcalıklar listesi */
.privileges-list ul li {
    position: relative;
    transition: transform .4s var(--ease-out-expo), color .3s, padding-left .4s var(--ease-out-expo);
}
.privileges-list ul li::before {
    position: absolute;
    left: 0; top: 50%;
    width: 0; height: 2px;
    background: currentColor;
    transform: translateY(-50%);
    transition: width .45s var(--ease-out-expo);
    opacity: .6;
}
.privileges-list ul li:hover {
    transform: translateX(6px);
    padding-left: 14px;
}
.privileges-list ul li:hover::before { width: 10px; }

/* Sosyal ikonlar */
.social-icons a img,
.mobile-social a img,
.footer-social a img {
    transition: transform .45s var(--ease-out-expo), filter .35s;
    display: block;
}
.social-icons a:hover img,
.mobile-social a:hover img,
.footer-social a:hover img {
    transform: rotate(-8deg) scale(1.18);
    filter: brightness(1.15);
}

/* Plan tab butonları — alttan dolan arka plan */
.tab-btn {
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color .35s var(--ease-smooth);
}
.tab-btn::before {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 0;
    background: #877569;
    transition: height .4s var(--ease-out-expo);
    z-index: -1;
}
.tab-btn:hover:not(.active) { color: #fff; }
.tab-btn:hover:not(.active)::before { height: 100%; }

.tab-category-direct {
    cursor: pointer;
    transition: transform .35s var(--ease-out-expo), letter-spacing .4s;
}
.tab-category-direct:hover {
    transform: translateX(4px);
    letter-spacing: 1px;
}

/* Plan image fade */
.plans-image img {
    transition: opacity .5s var(--ease-smooth), transform .8s var(--ease-out-expo);
}
.plans-image.switching img {
    opacity: 0;
    transform: scale(.97);
}

/* Yıldız dekorasyon — ışıldama (scale + opacity pulse) */
.star-decoration img,
.star-decoration-white img {
    transform-origin: center;
    animation: starTwinkle 3.6s var(--ease-smooth) infinite;
    filter: drop-shadow(0 0 0 rgba(255,255,255,0));
}
.star-decoration-white img {
    animation-duration: 4.2s;
    animation-delay: -1.3s;
}
/* Birden fazla yıldız varsa farklı zamanlarda */
.star-decoration img { animation-delay: -.4s; }
.hakkinda-header .star-decoration img { animation-duration: 3.2s; animation-delay: -2.1s; }

@keyframes starTwinkle {
    0%, 100% {
        transform: scale(.78) rotate(0deg);
        opacity: .75;
        filter: drop-shadow(0 0 0 rgba(255,255,255,0));
    }
    50% {
        transform: scale(1.15) rotate(12deg);
        opacity: 1;
        filter: drop-shadow(0 0 14px rgba(255,230,200,.55));
    }
}

/* Scroll-top — floating */
.scroll-top {
    transition: transform .4s var(--ease-out-expo), box-shadow .4s, opacity .4s;
}
.scroll-top.visible { animation: floatY 2.6s var(--ease-smooth) infinite alternate; }
.scroll-top:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 14px 30px rgba(0,0,0,.2);
    animation: none;
}
@keyframes floatY {
    from { transform: translateY(0); }
    to   { transform: translateY(-6px); }
}

/* Hamburger → X morph (aktif class: .active) */
.hamburger span {
    transition: transform .45s var(--ease-out-expo), opacity .3s, background-color .3s;
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Footer kolonları */
.footer-col {
    transition: transform .4s var(--ease-out-expo);
}
.footer-col:hover { transform: translateY(-4px); }
.footer-link {
    position: relative;
    transition: color .3s;
}
.footer-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: -3px;
    width: 100%; height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease-out-expo);
}
.footer-link:hover::after { transform: scaleX(1); }

/* Map hover — desature → renk */
.map-section iframe {
    transition: filter .8s var(--ease-smooth);
}
.map-section:hover iframe { filter: grayscale(0%); }

/* Modal giriş — sadece ortalı policy modal için */
.policy-modal.active .policy-modal-content {
    animation: modalPop .5s var(--ease-out-expo) both;
}
@keyframes modalPop {
    0%   { opacity: 0; transform: translate(-50%, -48%) scale(.94); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Yan drawer (bilgi formu) içeriği için yumuşak fade-up */
.modal.active .modal-content {
    animation: drawerFade .55s .1s var(--ease-out-expo) both;
}
@keyframes drawerFade {
    0%   { opacity: 0; transform: translateY(18px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Form inputs focus */
#bilgiForm input, #bilgiForm select {
    transition: border-color .35s var(--ease-smooth), box-shadow .35s, transform .35s;
}
#bilgiForm input:focus, #bilgiForm select:focus {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(135,117,105,.18);
}

/* ===== Scroll progress bar ===== */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #877569, #c6a68b);
    z-index: 9999;
    transition: width .1s linear;
    pointer-events: none;
}

/* ===== Custom cursor ===== */
.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    mix-blend-mode: difference;
    will-change: transform;
}
.cursor-dot {
    width: 6px; height: 6px;
    background: #fff;
    transform: translate(-50%, -50%);
    transition: transform .15s var(--ease-smooth), opacity .3s;
}
.cursor-ring {
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,.8);
    transform: translate(-50%, -50%);
    transition: transform .25s var(--ease-out-expo), width .3s, height .3s, opacity .3s, border-color .3s;
}
.cursor-ring.is-hover {
    width: 60px; height: 60px;
    border-color: #c6a68b;
}
.cursor-dot.is-hidden, .cursor-ring.is-hidden { opacity: 0; }
@media (hover: none), (max-width: 900px) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ===== Magnetic buttons hint ===== */
.magnetic { transition: transform .35s var(--ease-out-expo); }

/* ===== Hero slide progress line ===== */
.slide-nav-item .slide-line {
    position: relative;
    overflow: hidden;
}
.slide-nav-item .slide-line::after {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
}
.slide-nav-item.active .slide-line::after {
    animation: slideTimer 5s linear forwards;
}
@keyframes slideTimer {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* Count-up numaraları hafif vurgusu */
.count-up { display: inline-block; }

/* Ayrıcalıklar görseli — ekran dışından sağdan giriş */
.privileges-content { overflow: hidden; }
.privileges-images.reveal {
    transform: translate3d(110%, 0, 0);
    transition: opacity 1.1s var(--ease-out-expo), transform 1.1s var(--ease-out-expo);
}
.privileges-images.reveal.is-visible {
    transform: translate3d(0, 0, 0);
}

/* Plan tablosu alt madde girintisi */
.room-table tr.sub-row td:first-child {
    padding-left: 28px;
    font-size: .92em;
    opacity: .85;
}

/* Plan tablosu satır hover */
.room-table tr {
    transition: background-color .3s var(--ease-smooth), color .3s;
    cursor: default;
}
.room-table tr td {
    position: relative;
    transition: padding-left .35s var(--ease-out-expo);
}
.room-table tr td::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: #877569;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s var(--ease-out-expo);
}
.room-table tr:hover {
    background-color: rgba(135,117,105,.08);
    color: #5a4a40;
}
.room-table tr:hover td::after {
    transform: scaleX(1);
}
.room-table tr:hover td:first-child {
    padding-left: 10px;
}

/* Section title — alt çizgi dolma (is-visible ile) */
.section-title {
    position: relative;
    display: inline-block;
}
.section-title.reveal::after {
    content: "";
    position: absolute;
    left: 0; bottom: -10px;
    width: 60px; height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .9s .2s var(--ease-out-expo);
}
.section-title.reveal.is-visible::after { transform: scaleX(1); }

