/* ===== ROOT VARIABLES ===== */
:root {
    /* PDF'deki renk paleti - Koyu yeşil-gri tonları */
    --primary: #5A6B5E;
    /* Ana koyu yeşil-gri */
    --primary-light: #6B7C6F;
    /* Açık yeşil-gri */
    --primary-dark: #4A5B4E;
    /* Koyu yeşil-gri */
    --secondary: #8A9A8E;
    /* Açık gri-yeşil (vurgu) */
    --accent: #7A8A7E;
    /* Orta ton yeşil-gri */
    --gold: #C4B59A;
    /* Sıcak bej-gold */
    --dark: #3A4A3E;
    /* Çok koyu yeşil */
    --dark-light: #4A5A4E;
    /* Koyu yeşil */
    --text: #2A3A2E;
    /* Metin koyu yeşil */
    --text-light: #5A6A5E;
    /* Metin açık */
    --text-muted: #8A9A8E;
    /* Soluk metin */
    --white: #fff;
    --off-white: #F5F7F5;
    /* Hafif yeşilimsi beyaz */
    --gray: #E8EBE8;
    /* Açık gri-yeşil */
    --gradient-green: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    --shadow-sm: 0 2px 10px rgba(90, 107, 94, 0.1);
    --shadow-md: 0 10px 30px rgba(90, 107, 94, 0.15);
    --shadow-lg: 0 20px 50px rgba(90, 107, 94, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* PDF'deki fontlara uygun font ailesi */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    --font-script: 'Dancing Script', cursive;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input,
textarea {
    font-family: inherit;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--gradient-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: var(--white);
}

.loader .leaf-icon {
    font-size: 4rem;
    animation: bounce 1s infinite;
}

.loader span {
    display: block;
    font-size: 1.5rem;
    margin-top: 1rem;
    font-family: var(--font-heading);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Logo ikon-metin aralığı arttı */
    transform: translateX(-150px);
    /* 4cm sola kaydırıldı */
}

/* Yeni SVG Logo Stilleri */
.custom-logo {
    width: 80px;
    height: 80px;
    color: var(--secondary);
    transition: var(--transition);
}

.navbar.scrolled .custom-logo {
    color: var(--primary);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    /* METAF kalın */
    color: var(--white);
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-transform: uppercase;
    line-height: 1;
}

.navbar.scrolled .logo-text {
    color: var(--dark);
}

.logo-text .accent {
    color: inherit;
    /* Rengi üst elementten al (Beyaz) */
    font-weight: 300;
    /* Vadi Konakları ince */
    margin-left: 5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('organized_images/01_kapak_hero/sayfa1_img1_7016x2480.jpeg') center center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(58, 74, 62, 0.85) 0%, rgba(90, 107, 94, 0.75) 50%, rgba(58, 74, 62, 0.85) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
}

.floating-leaves {
    position: absolute;
    inset: 0;
}

.leaf {
    position: absolute;
    font-size: 2rem;
    animation: float 15s infinite ease-in-out;
    opacity: 0.3;
}

.leaf:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.leaf:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.leaf:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    z-index: 3;
    position: relative;
    transform: translateX(-300px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--secondary);
}

.hero h1,
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
}

.title-main {
    display: block;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.25em;
    /* Harf aralığı artırıldı */
    text-transform: uppercase;
}

.title-sub {
    display: block;
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    /* Font boyutu biraz küçültüldü */
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.6em;
    /* Harf aralığı çok daha geniş yapıldı */
    text-transform: uppercase;
    margin-left: 120px;
    margin-top: 10px;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* ===== SECTION COMMON ===== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 15px;
}

.accent {
    color: var(--primary);
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT ===== */
.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-green);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.about-card p {
    color: var(--text-light);
}

/* ===== FEATURES ===== */
.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.features-content>p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-green);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--white);
    font-size: 0.9rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.image-frame {
    position: relative;
}

.image-placeholder {
    background: var(--gray);
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.image-placeholder span {
    font-size: 1.2rem;
    opacity: 0.7;
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:active {
    transform: scale(0.98);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    pointer-events: none;
}

.gallery-placeholder {
    height: 200px;
    background: var(--gradient-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.gallery-item.large .gallery-placeholder,
.gallery-item.tall .gallery-placeholder {
    height: 100%;
    min-height: 420px;
}

.gallery-item.large img,
.gallery-item.tall img {
    min-height: 420px;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.gallery-placeholder span {
    font-size: 1rem;
    opacity: 0.9;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

.gallery-item .gallery-placeholder {
    transition: var(--transition);
}

/* ===== FULL WIDTH BANNER ===== */
.full-width-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.full-width-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.full-width-banner:hover img {
    transform: scale(1.01);
}

/* ===== FLOOR PLANS ===== */
.floor-plans {
    background: var(--white);
}

.floor-plans-intro {
    margin-bottom: 50px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.floor-plans-intro img {
    width: 100%;
    height: auto;
    display: block;
}

/* Block Tabs */
.block-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 20;
}

.block-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--gray);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    z-index: 10;
}

.block-tab:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.block-tab.active {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.tab-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.block-tab:not(.active) .tab-icon {
    background: var(--white);
    color: var(--primary);
}

.tab-text {
    font-size: 1rem;
}

/* Block Content */
.block-content {
    margin-bottom: 60px;
}

.block-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.block-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.block-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--off-white);
    border-radius: var(--radius-md);
}

.block-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.block-header h3 i {
    color: var(--primary);
}

.block-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Plan Gallery */
.plan-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.plan-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    background: var(--white);
}

.plan-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.plan-item:hover img {
    transform: scale(1.03);
}

.plan-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 95, 60, 0.95), rgba(26, 95, 60, 0.7), transparent);
    padding: 40px 20px 20px;
}

.plan-label {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    text-align: center;
}

/* Vaziyet Plan */
.vaziyet-plan {
    background: var(--off-white);
    padding: 50px;
    border-radius: var(--radius-lg);
}

.vaziyet-plan h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.vaziyet-plan h3 i {
    color: var(--primary);
}

.vaziyet-plan>p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.vaziyet-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.vaziyet-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.vaziyet-item:hover {
    transform: scale(1.02);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.05);
}

.vaziyet-item:active {
    transform: scale(0.98);
}

.vaziyet-item img {
    width: 100%;
    height: auto;
    display: block;
}

.vaziyet-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-green);
    color: var(--white);
    padding: 15px;
    text-align: center;
    font-weight: 600;
}


/* ===== VISION ===== */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.vision-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.vision-card.highlight {
    background: var(--gradient-green);
    color: var(--white);
}

.vision-icon {
    width: 70px;
    height: 70px;
    background: var(--gray);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vision-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.vision-card.highlight .vision-icon {
    background: rgba(255, 255, 255, 0.2);
}

.vision-card.highlight .vision-icon i {
    color: var(--white);
}

.vision-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.vision-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: var(--radius-sm);
}

.value-item i {
    font-size: 1.2rem;
}

.value-item span {
    font-size: 0.9rem;
}

/* ===== COMPANY ===== */
.company {
    background: var(--off-white);
}

.company-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.company-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.company-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.company-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group textarea {
    resize: none;
}

.btn-full {
    width: 100%;
    justify-content: center;
    background: var(--gradient-green);
    color: var(--white);
}

.btn-full:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-col>p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-address,
.footer-phone {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-address i,
.footer-phone i {
    color: var(--secondary);
    margin-top: 5px;
}

.footer-address p,
.footer-phone p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== CHATBOT ===== */
.chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #ff4444;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: none;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

.chat-window.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: var(--gradient-green);
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.chat-title h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.chat-status {
    font-size: 0.8rem;
    opacity: 0.9;
}

.chat-close {
    margin-left: auto;
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.8;
    transition: var(--transition);
}

.chat-close:hover {
    opacity: 1;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    max-width: 85%;
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
}

.message-content {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.bot .message-content {
    background: var(--gray);
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.chat-message.user .message-content {
    background: var(--gradient-green);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 5px;
    display: block;
}

.chat-quick-replies {
    padding: 0 20px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-reply {
    background: var(--gray);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.quick-reply:hover {
    background: var(--primary);
    color: var(--white);
}

.chat-input-area {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid var(--gray);
}

.chat-input-area input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--gray);
    border-radius: 25px;
    font-size: 0.9rem;
}

.chat-input-area input:focus {
    outline: none;
    border-color: var(--primary);
}

.chat-input-area button {
    width: 45px;
    height: 45px;
    background: var(--gradient-green);
    border-radius: var(--radius-full);
    color: var(--white);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: var(--radius-full);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

    .features-wrapper,
    .company-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .features-image {
        order: -1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item.large .gallery-placeholder {
        min-height: 250px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--gradient-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    /* Mobilde logoyu kaydırmayı iptal et */
    .logo {
        transform: translateX(0);
    }

    .nav-menu .nav-link {
        color: var(--white);
        font-size: 1.3rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-content {
        transform: translateX(0);
    }

    .hero-title {
        text-align: center;
    }

    .title-main {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    .title-sub {
        margin-left: 0;
        font-size: 1.5rem;
        letter-spacing: 0.3em;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item.large .gallery-placeholder,
    .gallery-item.tall .gallery-placeholder {
        min-height: 200px;
    }

    /* Floor Plans Responsive */
    .block-tabs {
        gap: 10px;
    }

    .block-tab {
        padding: 12px 20px;
    }

    .tab-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .plan-gallery {
        grid-template-columns: 1fr;
    }

    .vaziyet-images {
        grid-template-columns: 1fr;
    }

    .vaziyet-plan {
        padding: 30px 20px;
    }

    .floor-plans-intro {
        margin-bottom: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-address,
    .footer-phone {
        justify-content: center;
    }

    .footer-bottom .container {
        justify-content: center;
        text-align: center;
    }

    .chat-window {
        width: 300px;
        right: -10px;
    }
}

/* Full Width Slider Styles */
.full-slider-section {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: #000;
}

.full-slider-container {
    position: relative;
    width: 100%;
    height: 450px;
    /* Daha estetik, kompakt yükseklik */
}

@media (max-width: 768px) {
    .full-slider-container {
        height: 300px;
    }
}

.full-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.full-slide.active {
    opacity: 1;
    z-index: 2;
}

.full-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Hafif zoom efekti olabilir */
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ===== LIGHTBOX ===== */
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}

.lightbox-content {
    position: relative;
    cursor: grab;
    pointer-events: auto;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content:active {
    cursor: grabbing;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: #fff;
    z-index: 10002;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close:hover {
    background: #e74c3c;
    transform: rotate(90deg);
    border-color: #e74c3c;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    padding: 0 20px;
    z-index: 10001;
    pointer-events: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.lightbox-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10001;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    pointer-events: none;
}