/* ==========================================================================
   TEBER Park Peyzaj - Style System
   ========================================================================== */

/* Brand & Design Tokens */
:root {
    --primary-color: #1b352b;       /* Dark Green matching Logo */
    --primary-light: #2c4d40;
    --primary-dark: #0f211a;
    --accent-color: #c3a675;        /* Bej/Altın tone matching Logo */
    --accent-hover: #b2935f;
    --accent-light: #f4efdf;
    --text-dark: #202c27;           /* Deep elegant charcoal-green */
    --text-muted: #5e6d66;
    --text-light: #f7f9f8;
    --bg-light: #faf9f6;            /* Premium alabaster/cream */
    --bg-white: #ffffff;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 8px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 20px 40px rgba(27, 53, 43, 0.1);
    --radius-lg: 16px;
    --radius-md: 8px;
    --radius-sm: 4px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--primary-color);
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Common */
.id-section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.section-subtitle::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    content: "\f06c";
    font-size: 0.55em;
}

.section-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(195, 166, 117, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* İletişim formu paneli açık renkli olduğundan, buradaki ikincil buton için kontrast düzeltmesi */
.contact-form-panel .btn-secondary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-form-panel .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid rgba(27, 53, 43, 0.06);
    transition: var(--transition-smooth);
}

.main-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 4px 0;
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 40px rgba(15, 33, 26, 0.08);
}

.main-header.scrolled::after {
    opacity: 1;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 70px;
}

/* --- Logo --- */
.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-area .logo-ring {
    position: relative;
    height: 56px;
    width: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--accent-color), var(--primary-light));
    padding: 2.5px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(27, 53, 43, 0.18);
}

.logo-area:hover .logo-ring {
    transform: rotate(6deg) scale(1.04);
    box-shadow: 0 8px 20px rgba(195, 166, 117, 0.35);
}

.nav-logo {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--bg-white);
    background-color: var(--bg-white);
}

.main-header.scrolled .logo-ring {
    height: 46px;
    width: 46px;
}

.logo-divider {
    width: 1px;
    height: 34px;
    background: linear-gradient(180deg, transparent, rgba(27, 53, 43, 0.15), transparent);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2.5px;
    line-height: 1;
}

.brand-sub {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    color: var(--accent-hover);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 6px;
    padding-left: 14px;
}

.brand-sub::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background-color: var(--accent-color);
}

/* --- Navigation --- */
.navbar {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    background-color: rgba(27, 53, 43, 0.035);
    border: 1px solid rgba(27, 53, 43, 0.06);
    border-radius: 50px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 14.5px;
    color: var(--text-dark);
    position: relative;
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.nav-link-toggle,
.mobile-nav-link-toggle {
    cursor: pointer;
    user-select: none;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(27, 53, 43, 0.08);
}

.nav-link.active {
    color: var(--bg-white);
    background-color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(27, 53, 43, 0.22);
}

.nav-link.active:hover {
    color: var(--bg-white);
}

.nav-link-caret {
    font-size: 10px;
    margin-left: 7px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown:hover .nav-link-caret,
.nav-item-dropdown.open .nav-link-caret {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 640px;
    max-width: 80vw;
    padding-top: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s;
    z-index: 120;
}

.nav-dropdown-inner {
    position: relative;
    background-color: var(--bg-white);
    border: 1px solid rgba(27, 53, 43, 0.07);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(15, 33, 26, 0.18);
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 12px;
}

.nav-dropdown-inner::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background-color: var(--bg-white);
    border-left: 1px solid rgba(27, 53, 43, 0.07);
    border-top: 1px solid rgba(27, 53, 43, 0.07);
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 12px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.nav-dropdown-link i {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--accent-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition-fast);
}

.nav-dropdown-link:hover {
    background-color: var(--accent-light);
    color: var(--primary-color);
    padding-left: 16px;
}

.nav-dropdown-link:hover i {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 14px;
}

.header-actions::before {
    content: '';
    height: 30px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(27, 53, 43, 0.14), transparent);
    margin-right: 4px;
}

/* --- Language Switcher (dropdown) --- */
.lang-switcher-dropdown {
    position: relative;
}

.lang-current-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--primary-color);
    background-color: rgba(27, 53, 43, 0.05);
    border: 1px solid rgba(27, 53, 43, 0.08);
    border-radius: 50px;
    padding: 8px 14px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-current-btn:hover {
    background-color: rgba(27, 53, 43, 0.09);
}

.lang-current-btn .lang-caret {
    font-size: 9px;
    transition: transform 0.25s ease;
}

.lang-switcher-dropdown.open .lang-current-btn .lang-caret {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 150px;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 45px rgba(0,0,0,0.14);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 150;
}

.lang-switcher-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-menu .lang-switcher-btn {
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
    background: none;
    border: none;
    padding: 9px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-dropdown-menu .lang-switcher-btn:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.lang-dropdown-menu .lang-switcher-btn.active {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.mobile-lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-lang-switcher .lang-switcher-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: rgba(247, 249, 248, 0.7);
    background-color: rgba(255, 255, 255, 0.06);
    border: none;
    padding: 7px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-lang-switcher .lang-switcher-btn.active {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .lang-switcher-dropdown {
        display: none;
    }
}

body.lang-rtl .lang-dropdown-menu {
    right: auto;
    left: 0;
}

body.lang-rtl .lang-dropdown-menu .lang-switcher-btn {
    text-align: right;
}

/* --- RTL (Arabic) support --- */
body.lang-rtl {
    direction: rtl;
}

body.lang-rtl .header-container,
body.lang-rtl .footer-grid,
body.lang-rtl .about-grid,
body.lang-rtl .contact-grid,
body.lang-rtl .service-hero-grid,
body.lang-rtl .hero-actions-btns,
body.lang-rtl .nav-links,
body.lang-rtl .header-actions,
body.lang-rtl .logo-area,
body.lang-rtl .breadcrumb,
body.lang-rtl .service-breadcrumb,
body.lang-rtl .project-info-row,
body.lang-rtl .contact-detail-item,
body.lang-rtl .step-item,
body.lang-rtl .feature-item {
    direction: rtl;
}

body.lang-rtl .nav-link-caret,
body.lang-rtl .service-link i,
body.lang-rtl .related-service-card i {
    transform: scaleX(-1);
}

body.lang-rtl .mobile-nav {
    text-align: right;
}

body.lang-rtl .service-breadcrumb i.fa-chevron-right,
body.lang-rtl .breadcrumb i.fa-chevron-right {
    transform: scaleX(-1);
}

body.lang-rtl .cart-drawer {
    right: auto;
    left: -420px;
}

body.lang-rtl .cart-drawer.open {
    left: 0;
    right: auto;
}

@media (max-width: 768px) {
    body.lang-rtl .cart-drawer {
        left: -100%;
    }
    body.lang-rtl .cart-drawer.open {
        left: 0;
    }
}


.cart-toggle {
    position: relative;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    height: 46px;
    width: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 16px rgba(27, 53, 43, 0.15);
}

.cart-toggle:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 22px rgba(195, 166, 117, 0.35);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    height: 19px;
    width: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-white);
}

.mobile-menu-btn {
    display: none;
    background-color: rgba(27, 53, 43, 0.05);
    border: 1px solid rgba(27, 53, 43, 0.08);
    height: 46px;
    width: 46px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* ==========================================================================
   Mobile Nav Menu
   ========================================================================== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 0;
    background: linear-gradient(165deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    z-index: 99;
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    transition: max-height 0.55s cubic-bezier(0.65, 0, 0.35, 1),
                opacity 0.4s ease,
                visibility 0.55s;
}

.mobile-nav.open {
    max-height: min(700px, calc(100dvh - 12px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    opacity: 1;
    visibility: visible;
    padding: 20px 28px 32px;
    padding-top: calc(84px + 20px);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-brand img {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    object-fit: cover;
}

.mobile-nav-brand span {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
}

.mobile-nav-close {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    height: 38px;
    width: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-nav-close:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

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

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-light);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-fast);
}

.mobile-nav-link::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 13px;
    color: var(--accent-color);
    opacity: 0.6;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 22px;
}

.mobile-nav-link:hover::after {
    opacity: 1;
    transform: translateX(4px);
}

.mobile-nav-footer {
    margin-top: 4px;
    padding-top: 20px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.mobile-nav-footer a {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.mobile-nav-footer a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.mobile-nav-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-nav-row .mobile-nav-link {
    flex: 1;
}

.mobile-submenu-toggle {
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-submenu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-nav-item.open .mobile-submenu-toggle {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.mobile-nav-item.open .mobile-submenu-toggle i {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-left: 16px;
    padding-left: 14px;
    border-left: 2px solid rgba(195, 166, 117, 0.3);
    transition: max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.mobile-nav-item.open .mobile-submenu {
    max-height: 900px;
}

.mobile-submenu-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(247, 249, 248, 0.8);
    padding: 10px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-submenu-link:hover {
    color: var(--accent-color);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(11, 23, 19, 0.55);
    backdrop-filter: blur(2px);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    padding-top: 80px;
}

.hero-photo-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.15);
    will-change: transform;
    animation: heroKenBurns 24s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
    0% {
        transform: scale(1.12) translate(0, 0);
    }
    100% {
        transform: scale(1.24) translate(-1.5%, -1.5%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-photo-img {
        animation: none;
        transform: scale(1.15);
    }
}

.hero-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(8, 17, 14, 0.88) 0%, rgba(8, 17, 14, 0.68) 32%, rgba(8, 17, 14, 0.25) 62%, rgba(8, 17, 14, 0.45) 100%),
        linear-gradient(to top, rgba(8, 17, 14, 0.55), transparent 40%);
    pointer-events: none;
}

.hero-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 8;
    line-height: 0;
    pointer-events: none;
}

.hero-wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 640px) {
    .hero-wave-divider {
        height: 30px;
    }
}

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-color), #e8d5ae);
    z-index: 100000;
    transition: width 0.1s ease-out;
}

.section-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 44px;
    z-index: 5;
    line-height: 0;
    pointer-events: none;
}

.section-wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 640px) {
    .section-wave-divider {
        height: 26px;
    }
}

.text-gradient-accent {
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 900;
    background: linear-gradient(120deg, var(--accent-color), #e8d5ae 60%, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-container-single {
    display: block;
}

.hero-content-panel {
    max-width: 620px;
    background: rgba(8, 17, 14, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 48px 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        justify-items: center;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .hero-content-panel {
        max-width: 100%;
        margin: 0 auto;
        padding: 40px 30px;
    }
    .hero-actions-btns {
        justify-content: center;
    }
}

.hero-badge {
    font-family: 'Outfit', sans-serif;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 26px;
    padding: 9px 18px 9px 14px;
    border: 1px solid rgba(195, 166, 117, 0.4);
    border-radius: 50px;
    background-color: rgba(195, 166, 117, 0.1);
}

.hero-badge i {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    max-width: 800px;
    line-height: 1.16;
    margin-bottom: 24px;
    color: var(--text-light);
    letter-spacing: -1.2px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: 17px;
    max-width: 600px;
    margin-bottom: 36px;
    color: rgba(247, 249, 248, 0.88);
    font-weight: 300;
    line-height: 1.6;
}

.hero-actions-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-actions-btns .about-cta-btn {
    margin-top: 0;
}

.hero-scroll-cue {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(247, 249, 248, 0.6);
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
}

.hero-scroll-cue:hover {
    color: var(--accent-color);
}

.hero-scroll-cue i {
    animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    position: relative;
    background-color: var(--bg-white);
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%231b352b' stroke-width='1'%3E%3Cpath d='M50 210 C28 155 28 90 72 35 C84 100 84 155 50 210 Z'/%3E%3Cpath d='M50 210 C50 155 56 100 72 35'/%3E%3Cpath d='M190 60 C214 105 214 160 168 215 C162 160 162 105 190 60 Z'/%3E%3Cpath d='M190 60 C187 105 184 160 168 215'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 240px 240px;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 16px;
}

.features-list {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

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

.about-image-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.about-cta-actions .about-cta-btn {
    margin-top: 0;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
}

.about-photo-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: repeat(2, 150px);
    gap: 16px;
    width: 100%;
    max-width: 460px;
}

.collage-tile {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.collage-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.collage-tile:hover img {
    transform: scale(1.06);
}

.tile-main {
    grid-column: 1;
    grid-row: 1 / 3;
}

.tile-side-1 {
    grid-column: 2;
    grid-row: 1;
}

.tile-side-2 {
    grid-column: 2;
    grid-row: 2;
}

.collage-tag {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    padding: 11px 22px;
    border-radius: 50px;
    box-shadow: 0 12px 26px rgba(15, 33, 26, 0.3);
    border: 1px solid rgba(195, 166, 117, 0.35);
    white-space: nowrap;
}

.collage-tag i {
    color: var(--accent-color);
}

@media (max-width: 991px) {
    .about-photo-collage {
        max-width: 480px;
        margin: 0 auto;
    }
    .collage-tag {
        white-space: normal;
        text-align: center;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .about-photo-collage {
        grid-template-rows: repeat(2, 110px);
    }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
}

@media (max-width: 1300px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(27, 53, 43, 0.02);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover), 0 0 0 1.5px var(--accent-color);
}

.service-img {
    height: 150px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--primary-color), var(--primary-dark));
    overflow: hidden;
}

.service-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(195, 166, 117, 0.08) 0px, rgba(195, 166, 117, 0.08) 1px, transparent 1px, transparent 22px);
}

.service-visual-icon {
    position: relative;
    font-size: 46px;
    color: var(--accent-color);
    transition: var(--transition-smooth);
}

.service-card:hover .service-visual-icon {
    transform: scale(1.12) rotate(-4deg);
    color: #e3c68f;
}

.service-info {
    padding: 26px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    font-size: 16.5px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-info p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 18px;
    height: 52px;
    overflow: hidden;
    line-height: 1.5;
}

.service-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    position: relative;
    width: fit-content;
}

.service-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1.5px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.service-card:hover .service-link::after {
    width: 100%;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
    color: var(--accent-color);
}

.service-card:hover .service-link {
    color: var(--accent-hover);
}

/* ==========================================================================
   Shop Section
   ========================================================================== */
.shop-section {
    background-color: var(--bg-white);
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(27, 53, 43, 0.1);
    background: transparent;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

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

.products-grid:empty {
    display: none;
}

.shop-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 480px;
    margin: 20px auto 0;
    padding: 60px 40px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(27, 53, 43, 0.15);
}

.shop-empty-state i {
    font-size: 46px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.shop-empty-state h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.shop-empty-state p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 26px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(27, 53, 43, 0.05);
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(195, 166, 117, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 5;
}

.product-img-box {
    height: 280px;
    background-color: #f3f5f4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-details {
    padding: 24px;
}

.product-cat {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-desc {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
    height: 40px;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(27, 53, 43, 0.05);
    padding-top: 16px;
}

.product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-add-cart {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.btn-add-cart:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* ==========================================================================
   Cart Drawer Section
   ========================================================================== */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 200;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid rgba(27, 53, 43, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.empty-cart-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    text-align: center;
    gap: 16px;
}

.empty-cart-msg i {
    font-size: 48px;
    color: rgba(27, 53, 43, 0.15);
}

.btn-shop-now {
    margin-top: 10px;
}

/* Cart Item Style */
.cart-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(27, 53, 43, 0.05);
    align-items: center;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background-color: #f3f5f4;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.cart-item-price {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
}

.cart-item-qty-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-btn {
    background: #eef1ef;
    border: none;
    height: 24px;
    width: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

.qty-val {
    font-size: 13px;
    font-weight: 600;
    width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #cb2424;
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
}

.cart-drawer-footer {
    padding: 24px;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(27, 53, 43, 0.05);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.cart-total-price {
    font-family: 'Outfit', sans-serif;
    color: var(--accent-color);
}

.cart-whatsapp-info {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(27, 53, 43, 0.4);
    backdrop-filter: blur(4px);
    z-index: 190;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.cart-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-section {
    position: relative;
    background-color: var(--bg-light);
}

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

.portfolio-item {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    transition: box-shadow 0.4s ease;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--accent-color);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.portfolio-item:hover::after {
    opacity: 1;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(17, 42, 32, 0.95), rgba(17, 42, 32, 0.2));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

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

.portfolio-info {
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info span {
    font-family: 'Outfit', sans-serif;
    color: var(--accent-color);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.portfolio-info h3 {
    color: var(--text-light);
    font-size: 22px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    position: relative;
    background-color: var(--bg-white);
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%231b352b' stroke-width='1'%3E%3Cpath d='M50 210 C28 155 28 90 72 35 C84 100 84 155 50 210 Z'/%3E%3Cpath d='M50 210 C50 155 56 100 72 35'/%3E%3Cpath d='M190 60 C214 105 214 160 168 215 C162 160 162 105 190 60 Z'/%3E%3Cpath d='M190 60 C187 105 184 160 168 215'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 240px 240px;
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 53, 43, 0.06) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-desc-text {
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.cd-icon {
    background-color: var(--bg-light);
    color: var(--accent-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid rgba(27, 53, 43, 0.05);
}

.contact-detail-item h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

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

.contact-map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-premium);
    background-color: var(--bg-white);
    border: 1px solid rgba(27, 53, 43, 0.06);
    transition: var(--transition-smooth);
}

.contact-map-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.map-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(27, 53, 43, 0.06);
}

.map-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--accent-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.map-card-text {
    flex: 1;
    min-width: 0;
}

.map-card-text h5 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2px;
}

.map-card-text p {
    font-size: 12.5px;
    color: var(--text-muted);
    margin: 0;
}

.map-directions-btn {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.map-directions-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    transform: scale(1.08);
}

.map-frame-wrapper {
    line-height: 0;
    position: relative;
}

.map-frame-wrapper iframe {
    display: block;
    filter: grayscale(25%);
    transition: var(--transition-smooth);
}

.contact-map-card:hover .map-frame-wrapper iframe {
    filter: grayscale(0%);
}

.social-links-circle {
    display: flex;
    gap: 12px;
}

.social-links-circle a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(27, 53, 43, 0.05);
}

.social-links-circle a:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
    transform: scale(1.05);
}

/* Form Panel Styling */
.contact-form-panel {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(27, 53, 43, 0.03);
}

.form-panel-title {
    font-size: 24px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(27, 53, 43, 0.1);
    background-color: var(--bg-white);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(195, 166, 117, 0.15);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.main-footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding-top: 80px;
    border-top: 1px solid rgba(195, 166, 117, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(247, 249, 248, 0.05);
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

.font-light {
    color: var(--text-light) !important;
}

.footer-brand-desc {
    color: rgba(247, 249, 248, 0.7);
    font-size: 14px;
}

.footer-links-column h4,
.footer-hours-column h4 {
    color: var(--accent-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

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

.footer-links-column a {
    color: rgba(247, 249, 248, 0.7);
    font-size: 14px;
}

.footer-links-column a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(247, 249, 248, 0.7);
}

.footer-bottom {
    padding: 30px 0;
    font-size: 13px;
    color: rgba(247, 249, 248, 0.4);
}

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

.fb-links {
    display: flex;
    gap: 24px;
}

.fb-links a:hover {
    color: var(--accent-color);
}

/* ==========================================================================
   Toast Notification Styling
   ========================================================================== */
/* ==========================================================================
   Sabit (Floating) WhatsApp Butonu
   ========================================================================== */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 150;
    transition: var(--transition-smooth);
    animation: teberWaPulse 2.4s ease-out infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

@keyframes teberWaPulse {
    0%   { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 640px) {
    .whatsapp-float-btn {
        width: 52px;
        height: 52px;
        font-size: 26px;
        bottom: 20px;
        right: 16px;
    }
}

.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    color: var(--accent-color);
    font-size: 18px;
}

.toast-message {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 50px;
    }
    .section-title {
        font-size: 44px;
    }
    .about-grid {
        gap: 40px;
    }
    .services-grid,
    .products-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .id-section {
        padding: 70px 0;
    }
    .navbar {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .hero-title {
        font-size: 40px;
    }
    .section-title {
        font-size: 38px;
    }
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-image-wrapper {
        order: -1;
    }
    .about-photo-collage {
        max-width: 100%;
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .fb-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .products-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-panel {
        padding: 30px 20px;
    }
    .hero-actions-btns {
        flex-direction: column;
    }
    .shop-filters {
        gap: 8px;
        margin-bottom: 34px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .filter-btn {
        flex-shrink: 0;
        font-size: 12.5px;
        padding: 7px 14px;
    }
    /* Arama butonu eklenince header'da 4 aksiyon butonu (dil, arama, sepet, menü)
       yan yana sığması için kompakt mod — hiçbir öğe gizlenmiyor, sadece küçültülüyor */
    .main-header .container {
        padding: 0 14px;
    }
    .header-actions {
        gap: 6px;
        padding-left: 8px;
    }
    .header-actions::before {
        margin-right: 2px;
    }
    .search-toggle,
    .cart-toggle,
    .mobile-menu-btn {
        height: 38px;
        width: 38px;
        font-size: 13px;
    }
    .lang-current-btn {
        padding: 6px 8px;
        font-size: 11px;
        gap: 4px;
    }
    .logo-area {
        gap: 8px;
    }
    .logo-area .logo-ring {
        height: 38px;
        width: 38px;
    }
    .logo-divider {
        height: 26px;
    }
    .brand-name {
        font-size: 15px;
        letter-spacing: 1px;
    }
    .brand-sub {
        font-size: 8px;
        letter-spacing: 1px;
        margin-top: 3px;
        padding-left: 10px;
    }
    .brand-sub::before {
        width: 6px;
    }
}

@media (max-width: 360px) {
    .main-header .container {
        padding: 0 10px;
    }
    .header-actions {
        gap: 4px;
        padding-left: 6px;
    }
    .search-toggle,
    .cart-toggle,
    .mobile-menu-btn {
        height: 34px;
        width: 34px;
        font-size: 12px;
    }
    .lang-current-btn {
        padding: 5px 6px;
        font-size: 10px;
        gap: 3px;
    }
    .logo-area {
        gap: 6px;
    }
    .logo-area .logo-ring {
        height: 34px;
        width: 34px;
    }
    .brand-name {
        font-size: 13px;
        letter-spacing: 0.5px;
    }
    .brand-sub {
        font-size: 7px;
        letter-spacing: 0.5px;
        padding-left: 8px;
    }
}

.video-galeri {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.video-kutu {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--bg-white);
    border: 1px solid rgba(27, 53, 43, 0.06);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

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

.video-kutu video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background-color: var(--primary-dark);
}

.video-bilgi {
    padding: 28px 30px 32px;
}

.video-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-hover);
    background-color: var(--accent-light);
    padding: 7px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.video-bilgi h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
}

.video-bilgi p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 900px) {
    .video-galeri {
        grid-template-columns: 1fr;
    }
}

.iframe-tasarim { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.iframe-tasarim iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ==========================================================================
   Preloader / Intro Animation
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0b1713; /* Elegant deep corporate dark green */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-logo svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLeaf 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.preloader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.preloader-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 8px;
    line-height: 1;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.preloader-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--accent-color);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.preloader-loader-bar {
    width: 180px;
    height: 2px;
    background-color: rgba(195, 166, 117, 0.15);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.preloader-progress {
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    position: absolute;
    top: 0;
    left: -100%;
    animation: progressFill 1.8s cubic-bezier(0.1, 0.8, 0.1, 1) 0.3s forwards;
}

/* Animations */
@keyframes drawLeaf {
    0% {
        stroke-dashoffset: 400;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressFill {
    to {
        left: 0;
    }
}

/* Preloader loaded state */
body.loaded #preloader {
    transform: translateY(-100%);
    pointer-events: none;
}

/* Page element entry animations */
.animate-on-load {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.loaded .animate-on-load {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

body.loaded .delay-1 {
    transition-delay: 0.15s !important;
}

body.loaded .delay-2 {
    transition-delay: 0.3s !important;
}

body.loaded .delay-3 {
    transition-delay: 0.45s !important;
}

body.loaded .delay-4 {
    transition-delay: 0.6s !important;
}

/* Corporate sweeping reveal effect */
.corporate-reveal {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.corporate-reveal > * {
    opacity: 0;
    transition: opacity 0.1s ease 0.6s;
}

body.loaded .corporate-reveal > * {
    opacity: 1;
}

.corporate-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    z-index: 2;
}

body.loaded .corporate-reveal::after {
    animation: revealSweep 1.2s cubic-bezier(0.85, 0, 0.15, 1) 0.2s forwards;
}

@keyframes revealSweep {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }
    50% {
        transform: scaleX(1);
        transform-origin: left;
    }
    50.1% {
        transform-origin: right;
    }
    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

/* ==========================================================================
   Service Detail Pages (Hizmet Sayfaları)
   ========================================================================== */
.service-hero {
    position: relative;
    padding: 170px 0 90px;
    background: radial-gradient(circle at 20% 20%, #24463a 0%, #0b1713 75%);
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(135deg, rgba(195,166,117,0.05) 0px, rgba(195,166,117,0.05) 1px, transparent 1px, transparent 34px);
    pointer-events: none;
}

.service-breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(247, 249, 248, 0.55);
    margin-bottom: 24px;
}

.service-breadcrumb a {
    color: rgba(247, 249, 248, 0.75);
}

.service-breadcrumb a:hover {
    color: var(--accent-color);
}

.service-hero-grid {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-icon-medal {
    flex-shrink: 0;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.service-icon-medal i {
    font-size: 46px;
    color: var(--primary-dark);
}

.service-hero-text {
    flex: 1;
    min-width: 280px;
}

.service-hero-text .section-subtitle {
    color: var(--accent-color);
}

.service-hero-title {
    font-size: 42px;
    color: var(--text-light);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.service-hero-desc {
    color: rgba(247, 249, 248, 0.75);
    font-size: 16px;
    max-width: 620px;
}

.service-content-section {
    padding: 90px 0;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.service-block-title {
    font-size: 28px;
    margin-bottom: 18px;
}

.service-block-title i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 22px;
}

.service-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 15.5px;
}

.service-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(160deg, var(--primary-color), var(--primary-dark));
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover);
}

.service-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(195,166,117,0.08) 0px, rgba(195,166,117,0.08) 1px, transparent 1px, transparent 28px);
}

.service-visual i {
    position: relative;
    font-size: 130px;
    color: rgba(195, 166, 117, 0.9);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
}

.service-visual.has-photo {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
}

.service-visual.has-photo::before {
    display: none;
}

.service-photo {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.service-photo-tag {
    position: absolute;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(11, 23, 19, 0.75);
    backdrop-filter: blur(6px);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 16px;
    border-radius: 50px;
    border: 1px solid rgba(195, 166, 117, 0.3);
}

.service-photo-tag i {
    font-size: 12px;
    color: var(--accent-color);
    filter: none;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
}

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

.step-number {
    flex-shrink: 0;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
}

.step-item h4 {
    font-size: 16.5px;
    margin-bottom: 4px;
}

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

.service-cta-banner {
    background: linear-gradient(120deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}

.service-cta-banner h3 {
    color: var(--text-light);
    font-size: 24px;
    margin-bottom: 6px;
}

.service-cta-banner p {
    color: rgba(247, 249, 248, 0.7);
    font-size: 14.5px;
}

.related-services {
    padding: 70px 0 100px;
    background-color: var(--bg-light);
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.related-service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 22px 16px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.related-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.related-service-card i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    width: 46px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--accent-hover);
    font-size: 17px;
}

.related-service-card span {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .related-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .service-content-grid {
        grid-template-columns: 1fr;
    }
    .service-visual {
        min-height: 220px;
    }
}

@media (max-width: 576px) {
    .service-hero {
        padding: 140px 0 60px;
    }
    .service-hero-title {
        font-size: 30px;
    }
    .service-icon-medal {
        height: 90px;
        width: 90px;
    }
    .service-icon-medal i {
        font-size: 34px;
    }
    .service-cta-banner {
        flex-direction: column;
        text-align: center;
    }
    .related-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Project Detail Pages (Proje Sayfaları)
   ========================================================================== */
.project-cover-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 30px 60px rgba(15, 33, 26, 0.25);
    max-height: 520px;
}

.project-cover-photo img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.project-cover-photo:hover img {
    transform: scale(1.04);
}

.project-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 23, 19, 0.7), transparent 45%);
    display: flex;
    align-items: flex-end;
    padding: 26px;
}

.project-cover-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(11, 23, 19, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(195, 166, 117, 0.35);
    color: var(--text-light);
    padding: 11px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.project-cover-photo:hover .project-cover-chip {
    background-color: var(--primary-color);
    border-color: var(--accent-color);
}

.project-cover-chip i {
    color: var(--accent-color);
}

@media (max-width: 700px) {
    .project-cover-photo {
        max-height: 320px;
    }
    .project-cover-photo img {
        max-height: 320px;
    }
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(11, 23, 19, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
    padding: 50px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox-overlay.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 100%;
}

.lightbox-content img {
    max-width: 82vw;
    max-height: 78vh;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    cursor: default;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox-content img.fading {
    opacity: 0;
    transform: scale(0.97);
}

.lightbox-counter {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: rgba(247, 249, 248, 0.6);
}

.lightbox-close {
    position: absolute;
    top: 26px;
    right: 26px;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 310;
}

.lightbox-close:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 54px;
    width: 54px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 310;
}

.lightbox-nav:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.lightbox-prev {
    left: 26px;
}

.lightbox-next {
    right: 26px;
}

@media (max-width: 700px) {
    .lightbox-overlay {
        padding: 20px;
    }
    .lightbox-nav {
        height: 42px;
        width: 42px;
        font-size: 15px;
    }
    .lightbox-prev {
        left: 8px;
    }
    .lightbox-next {
        right: 8px;
    }
    .lightbox-close {
        top: 14px;
        right: 14px;
    }
}

.project-photo-section {
    padding: 60px 0 20px;
    position: relative;
    z-index: 20;
}

.project-info-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(27, 53, 43, 0.06);
}

.project-info-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-info-card h3 i {
    color: var(--accent-color);
    font-size: 16px;
}

.project-info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(27, 53, 43, 0.08);
}

.project-info-row:last-child {
    border-bottom: none;
}

.project-info-label {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-color);
    flex-shrink: 0;
}

.project-info-value {
    font-size: 14px;
    color: var(--text-muted);
    text-align: right;
}

.project-info-value.placeholder {
    color: rgba(74, 93, 84, 0.5);
    font-style: italic;
}

.project-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--primary-color);
    margin-top: 30px;
}

.project-back-link:hover {
    color: var(--accent-hover);
}

@media (max-width: 900px) {
    .project-photo-section {
        padding-top: 40px;
    }
}

/* ==========================================================================
   Scroll Reveal System
   ========================================================================== */
.reveal-init {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.reveal-init.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}




/* ==========================================================================
   Site Geneli Arama (Search Overlay)
   ========================================================================== */

.search-toggle {
    position: relative;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    height: 46px;
    width: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 16px rgba(27, 53, 43, 0.15);
}

.search-toggle:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 22px rgba(195, 166, 117, 0.35);
}

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 33, 26, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 100000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 20px 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

body.search-lock-scroll {
    overflow: hidden;
}

.search-panel {
    width: 100%;
    max-width: 640px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transform: translateY(-16px);
    transition: transform 0.25s ease;
    max-height: calc(100vh - 130px);
    display: flex;
    flex-direction: column;
}

.search-overlay.open .search-panel {
    transform: translateY(0);
}

.search-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(27, 53, 43, 0.08);
    flex-shrink: 0;
}

.search-input-icon {
    color: var(--text-muted);
    font-size: 16px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    background: transparent;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-close {
    background: var(--bg-light);
    border: none;
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

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

.search-results {
    overflow-y: auto;
    padding: 8px;
}

.search-hint {
    padding: 30px 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.search-result-item:hover {
    background: var(--accent-light);
}

.search-result-thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    background: var(--bg-light);
}

.search-result-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.search-result-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.search-result-title {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.search-result-arrow {
    color: var(--text-muted);
    font-size: 12px;
    flex-shrink: 0;
}

/* Arama sonucundan gelindiğinde ürün kartını geçici olarak vurgula */
.product-card.search-highlight {
    animation: teberSearchHighlight 2.2s ease;
    border-radius: var(--radius-lg);
}

@keyframes teberSearchHighlight {
    0%   { box-shadow: 0 0 0 4px var(--accent-color); }
    70%  { box-shadow: 0 0 0 4px var(--accent-color); }
    100% { box-shadow: 0 0 0 0 rgba(195, 166, 117, 0); }
}

@media (max-width: 640px) {
    .search-overlay {
        padding: 70px 12px 12px;
        align-items: flex-start;
    }
    .search-panel {
        max-height: calc(100vh - 90px);
    }
}
