/* ==========================================================================
   LIORA WEDDING - PREMIUM STİL SİSTEMİ (LİYA ALL ESİNTİLİ)
   ========================================================================== */

/* 1. CSS Değişkenleri & Temel Ayarlar */
:root {
    --primary: #4a5d4e;        /* Adaçayı / Zeytin Yeşili (Sage Green) */
    --primary-dark: #2c3a2f;   /* Koyu Orman Yeşili */
    --primary-light: #f0f2ee;  /* Çok Hafif Adaçayı Tonu */
    --accent: #c3a37a;         /* Keten / Sıcak Altın-Bej (Linen/Beige) */
    --accent-dark: #a4855c;    /* Koyu Bej-Ahşap Tonu */
    --bg-light: #f7f5f0;       /* Yumuşak Krem Arka Plan */
    --text-dark: #2c2c2c;      /* Koyu Gri Metin */
    --text-muted: #737373;     /* Orta Gri Metin */
    --white: #ffffff;
    --card-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    --hover-shadow: 0 20px 50px rgba(74, 93, 78, 0.12);
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    background-color: var(--primary-dark);
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

ul {
    list-style: none;
}

/* 2. Ortak Düzenleyiciler (Utility Classes) */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-center-mobile { text-align: left; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

section {
    padding: 120px 0;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-dark);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.gold-subtitle {
    color: var(--accent-dark);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: -30px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
}

.paragraph-highlight {
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary-dark);
    margin-bottom: 25px;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
}

/* Butonlar */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 36px;
    border-radius: 30px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(74, 93, 78, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(195, 163, 122, 0.3);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-instagram {
    background-color: #e1306c;
    color: var(--white);
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

.btn-instagram:hover {
    background-color: #c13584;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
}

/* ==========================================================================
   BÖLÜM STİLLERİ
   ========================================================================== */

/* 1. ÜST SOSYAL ŞERİDİ (TOP BAR) */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 25px;
}

.top-bar-left span i {
    color: var(--accent);
    margin-right: 6px;
}

.top-bar-right a {
    margin-left: 15px;
    font-size: 14px;
}

.top-bar-right a:hover {
    color: var(--accent);
}

.top-bar-right .whatsapp-btn {
    background-color: #25d366;
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.top-bar-right .whatsapp-btn:hover {
    background-color: #128c7e;
}

/* 2. NAVİGASYON MENÜSÜ (HEADER) */
.main-header {
    background-color: rgba(247, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid rgba(74, 93, 78, 0.05);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 70px;
    background-color: rgba(247, 245, 240, 0.98);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo img {
    align-self: flex-start;
    display: block;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 4px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    position: relative;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Teklif İste Butonu */
.nav-btn {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 25px;
    transition: var(--transition-smooth);
}

.nav-btn::after { display: none !important; }

.nav-btn:hover {
    background-color: var(--accent);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* 3. YÜZEN AKSİYONLAR VE ARAMA PANELİ */
.floating-actions {
    position: fixed;
    right: 25px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.search-trigger {
    background-color: var(--primary);
}

.instagram-float {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.whatsapp-float {
    background-color: #25d366;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 58, 47, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 60px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-close:hover {
    color: var(--accent);
}

.search-box {
    display: flex;
    border-bottom: 2px solid var(--accent);
    padding: 10px;
    width: 500px;
    max-width: 90%;
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 22px;
    width: 100%;
    font-family: var(--font-body);
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.4);
}

.search-box button {
    background: transparent;
    border: none;
    color: var(--accent);
    font-size: 22px;
    cursor: pointer;
}

/* 4. VİDEO HEADER (HERO SECTION) */
.hero-section {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 58, 47, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 800px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out;
}

.hero-desc {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: var(--white);
    font-size: 24px;
}

/* 5. HAKKIMIZDA BÖLÜMÜ */
.about-section {
    background-color: var(--white);
}

.about-text-content {
    padding-right: 20px;
}

.about-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 480px;
}

.about-side-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 6. HİZMETLERİMİZ (OVER VİDEO EFEKTLİ KARTLAR) */
.services-section {
    background-color: var(--bg-light);
}

.hover-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hover-video-card {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hover-video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.card-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.card-hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.hover-video-card:hover .card-hover-video {
    opacity: 1;
}

.hover-video-card:hover .card-video-bg img {
    transform: scale(1.1);
}

.hover-video-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 58, 47, 0.9) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px;
    z-index: 3;
    color: var(--white);
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-discover {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-discover:hover {
    color: var(--white);
}

/* 7. ALL'N ONE KONSEPTİ */
.all-in-one-section {
    background-color: var(--white);
}

.concept-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 480px;
}

.concept-side-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concept-text-content {
    padding-left: 20px;
}

.paragraph-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.concept-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.concept-list-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.concept-list-card:hover {
    background-color: var(--white);
    box-shadow: var(--card-shadow);
    transform: translateY(-5px);
}

.concept-list-card .card-icon {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.concept-list-card .card-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.concept-list-card .card-info p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Diğer Hizmetler Geniş Kart */
.full-width-card {
    grid-column: span 3;
    background-color: var(--primary-light);
}

.full-width-card:hover {
    background-color: var(--primary-light);
    transform: none;
}

.full-width-card .card-icon {
    background-color: var(--primary);
    color: var(--white);
}

.full-width-card .card-info h4 {
    color: var(--primary-dark);
}

/* 8. AMBİYANS & İŞLEVSELLİK (SAYFALANABİLİR FOTOĞRAF GALERİSİ) */
.ambiance-section {
    background-color: var(--bg-light);
}

.ambiance-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.ambiance-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%; /* Sürükleme kutusu genişliği */
}

.slider-page {
    flex: 0 0 100%; /* Her sayfa tam genişlik kaplar */
    width: 100%;
    flex-shrink: 0;
}

.gallery-grid-2x4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
}

.gallery-grid-2x4 .grid-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.gallery-grid-2x4 .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-grid-2x4 .grid-item:hover img {
    transform: scale(1.08);
}

/* Sayfa Göstergeleri */
.ambiance-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.pagination-bar {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 10px 25px;
    background-color: var(--white);
    border-radius: 30px;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.pagination-bar.active {
    background-color: var(--primary);
    color: var(--white);
}

/* 9. HEP HATIRLANACAK HATIRALAR (4:5 PORTRE GRİD) */
.memories-section {
    background-color: var(--white);
}

.grid-2x4-portrait {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 450px); /* 1080x1350 portre oranına yakın yükseklik */
    gap: 20px;
}

.portrait-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    cursor: pointer;
}

.portrait-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portrait-item .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 93, 78, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    color: var(--white);
    font-size: 32px;
    transition: var(--transition-smooth);
}

.portrait-item:hover img {
    transform: scale(1.06);
}

.portrait-item:hover .hover-overlay {
    opacity: 1;
}

/* 10. ÖDÜLLERİMİZ BÖLÜMÜ */
.awards-section {
    background-color: var(--bg-light);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.award-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(74, 93, 78, 0.05);
    transition: var(--transition-smooth);
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--accent);
}

.award-card i {
    font-size: 44px;
    color: var(--accent-dark);
    margin-bottom: 25px;
}

.award-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.award-year {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.award-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* 11. YORUMLAR (VİDEOLU KARTLAR) */
.video-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-review-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    border: 1px solid rgba(74, 93, 78, 0.05);
    transition: var(--transition-smooth);
}

.video-review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--accent);
}

.review-thumbnail {
    position: relative;
    height: 220px;
}

.review-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.play-overlay i {
    font-size: 50px;
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.video-review-card:hover .play-overlay {
    background-color: rgba(74, 93, 78, 0.4);
}

.video-review-card:hover .play-overlay i {
    transform: scale(1.1);
    color: var(--accent);
}

.review-card-info {
    padding: 25px;
}

.review-card-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.wedding-date {
    display: block;
    font-size: 12px;
    color: var(--accent-dark);
    font-weight: 500;
    margin-bottom: 12px;
}

.review-preview {
    font-size: 13.5px;
    color: var(--text-muted);
    font-style: italic;
}

/* 12. VİDEO MODAL (LIGHTBOX) */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content-wrapper {
    position: relative;
    width: 800px;
    max-width: 90%;
    height: 450px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.modal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--accent);
}

/* 13. TEKLİF ALIN ALANI (ARKA PLAN VİDEOLU + WIZARD) */
.quote-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.quote-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 58, 47, 0.85);
    z-index: 2;
}

.quote-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.quote-container {
    position: relative;
    z-index: 3;
}

.light-title {
    color: var(--white);
}

.light-badge {
    color: var(--accent);
}

.wizard-selector {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.wizard-select-btn {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 20px 30px;
    text-align: left;
    color: var(--white);
    cursor: pointer;
    width: 380px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: var(--transition-smooth);
}

.wizard-select-btn strong {
    font-size: 16px;
    font-weight: 600;
}

.wizard-select-btn span {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.wizard-select-btn.active, .wizard-select-btn:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-dark);
}

.wizard-select-btn.active span, .wizard-select-btn:hover span {
    color: var(--text-muted);
}

.quote-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    max-width: 800px;
    margin: 0 auto;
}

.wizard-dynamic-fields {
    transition: var(--transition-smooth);
}

.hidden-fields {
    display: none;
    opacity: 0;
}

.quote-form-wrapper label {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
}

.quote-form-wrapper input,
.quote-form-wrapper select,
.quote-form-wrapper textarea {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.quote-form-wrapper input:focus,
.quote-form-wrapper select:focus,
.quote-form-wrapper textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(74, 93, 78, 0.1);
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

/* 14. İLETİŞİM */
.contact-section {
    background-color: var(--white);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-item i {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    flex-shrink: 0;
}

.detail-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.detail-item p {
    font-size: 14px;
    color: var(--text-muted);
}

.detail-item p a {
    color: var(--primary);
    font-weight: 600;
}

.contact-map {
    height: 450px;
    box-shadow: var(--card-shadow);
    border-radius: 8px;
    overflow: hidden;
}

/* 15. FOOTER */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 90px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    display: block;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 1px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-col p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.footer-socials a:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

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

.footer-col ul li a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.transport-list li {
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 8px;
}

.transport-list li strong {
    color: var(--accent);
    font-weight: 600;
}

.transport-note {
    font-size: 12px;
    color: var(--accent);
    line-height: 1.6;
}

.contact-footer-info i {
    color: var(--accent);
    margin-right: 6px;
}

.credit-link {
    color: var(--accent);
    font-weight: 600;
}

.credit-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 40px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom p {
    margin: 0;
}

/* ==========================================================================
   ANİMASYONLAR
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

/* Form Bildirim Mesajları */
.form-message {
    display: none;
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.form-message.success {
    background-color: rgba(74, 93, 78, 0.1);
    color: var(--primary);
    border: 1px solid rgba(74, 93, 78, 0.2);
}

.form-message.error {
    background-color: rgba(217, 83, 79, 0.1);
    color: #d9534f;
    border: 1px solid rgba(217, 83, 79, 0.2);
}

/* ==========================================================================
   MOBİL VE TABLET UYUMLULUK (RESPONSIVE)
   ========================================================================== */

@media (max-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text-content {
        padding-right: 0;
    }
    
    .about-video-wrapper, .concept-video-wrapper {
        height: 380px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .concept-text-content {
        padding-left: 0;
    }
    
    .hover-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .concept-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .full-width-card {
        grid-column: span 2;
    }
    
    .gallery-grid-2x4 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
    }
    
    .grid-2x4-portrait {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 400px);
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 46px;
    }
    
    .text-center-mobile {
        text-align: center;
    }
    
    .paragraph-highlight {
        border-left: none;
        border-bottom: 2px solid var(--accent);
        padding-left: 0;
        padding-bottom: 15px;
    }
    
    /* Mobil Hamburger Menü */
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-light);
        transition: var(--transition-smooth);
        overflow-y: auto;
        padding: 40px 20px;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .nav-btn {
        width: 200px;
        text-align: center;
    }
    
    .wizard-selector {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .wizard-select-btn {
        width: 100%;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .top-bar {
        display: none; /* Mobilde alan tasarrufu */
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .hover-video-grid,
    .concept-list-grid,
    .gallery-grid-2x4,
    .grid-2x4-portrait,
    .awards-grid,
    .video-reviews-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .full-width-card {
        grid-column: span 1;
    }
    
    .gallery-grid-2x4 {
        grid-template-rows: repeat(8, 180px);
    }
    
    .grid-2x4-portrait {
        grid-template-rows: repeat(8, 380px);
    }
    
    .quote-form-wrapper {
        padding: 25px 20px;
    }
    
    .search-box {
        width: 90%;
    }
}

/* ==========================================================================
   ALL'N ONE HOVER VIDEO CARDS (DYNAMIC STYLE UPDATES)
   ========================================================================== */
.liya-services-container {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Masaüstünde yan yana 4 adet kutu */
  gap: 20px;
}

.service-item {
  position: relative;
  height: 380px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  background-color: #000;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.service-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

/* Karartma katmanı - yazıların rahat okunması için */
.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
  transition: background 0.3s ease;
}

.service-item:hover .service-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 20%, rgba(0,0,0,0.9) 100%);
}

/* Kart İçindeki Yazı Alanı */
.service-preview {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 20px;
  color: #ffffff;
  z-index: 3;
  transition: transform 0.3s ease;
}

.service-preview h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.service-preview h4 i {
  color: #dfb76c; /* Şık bir gold/altın tonu */
  font-size: 1.1rem;
}

.service-preview p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
  opacity: 0.85;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Detay metni */
.service-content {
  display: none;
}

/* MOBİL VE TABLET UYUMLULUĞU (RESPONSIVE) */
@media (max-width: 1024px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr); /* Tabletlerde yan yana 2 kutu */
  }
}

@media (max-width: 600px) {
  .services-list {
    grid-template-columns: 1fr; /* Mobil telefonlarda tekli liste */
  }
  .service-item {
    height: 320px; /* Mobilde biraz daha kibar durması için boyutu küçülttük */
  }
}

/* Yorumlar Bölümü Krem Tema Ayarları */
.reviews-section {
    background-color: var(--bg-light);
}

.reviews-section .section-badge {
    font-size: 15px; /* "Yorumlar" yazısı 12px'den 15px'e büyütüldü */
    letter-spacing: 4px;
    color: var(--accent-dark); /* Koyu altın/bej rengi */
}

.reviews-section .section-title {
    color: var(--primary); /* Orijinal koyu adaçayı yeşili başlık */
}

.reviews-section .section-subtitle {
    color: var(--text-muted); /* Orijinal gri açıklama yazısı */
}
