@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary: #fbb900;
    --primary-dark: #d9a000;
    --secondary: #222831;
    --secondary-light: #393e46;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --text: #333333;
    --text-light: #666666;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.3
}

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

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

ul {
    list-style: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px)
}

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

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary)
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--secondary)
}

.section-title {
    text-align: center;
    margin-bottom: 50px
}

.section-title h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary)
}

.section-title p {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

/* TOPBAR */
.topbar {
    background: var(--secondary);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px
}

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

.topbar-left {
    display: flex;
    gap: 20px;
    align-items: center
}

.topbar-left a,
.topbar-left span {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px
}

.topbar-left a:hover {
    color: var(--primary)
}

.topbar-left i {
    color: var(--primary)
}

.topbar-right {
    display: flex;
    gap: 12px;
    align-items: center
}

.topbar-right a {
    color: var(--white);
    font-size: 14px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition)
}

.topbar-right a:hover {
    color: var(--primary)
}

/* HEADER */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition)
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px
}

.header.scrolled {
    padding: 4px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12)
}

.logo img {
    height: 70px;
    transition: var(--transition)
}

.header.scrolled .logo img {
    height: 50px
}

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

.nav-menu a {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary);
    position: relative;
    padding: 6px 0
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition)
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary)
}

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

.header-phone {
    display: flex;
    align-items: center;
    gap: 0;
    height: 38px;
    background: var(--secondary);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease
}

.header-phone::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--secondary-light)
}

.header-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 40, 49, 0.3)
}

.header-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    align-self: stretch;
    background: var(--primary);
    color: var(--secondary);
    font-size: 14px;
    flex-shrink: 0;
    transition: var(--transition)
}

.header-phone:hover .header-phone-icon {
    background: var(--primary-dark)
}

.header-phone-number {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.3px;
    padding: 8px 14px;
    position: relative;
    z-index: 1
}

.header-phone:hover .header-phone-number {
    color: var(--primary)
}

.lang-dropdown {
    position: relative;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    z-index: 100;
    user-select: none
}

.lang-selected {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 14px;
    border: 1px solid #ddd;
    transition: var(--transition)
}

.lang-selected:hover,
.lang-dropdown.open .lang-selected {
    border-color: var(--primary)
}

.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    display: inline-block
}

.lang-arrow {
    font-size: 10px;
    transition: transform 0.3s ease
}

.lang-dropdown.open .lang-arrow {
    transform: rotate(180deg)
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 150px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 101
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    cursor: pointer
}

.lang-option img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    display: inline-block
}

.lang-option:hover {
    background: var(--light-bg);
    color: var(--primary)
}

.lang-option.active {
    background: var(--light-bg);
    color: var(--primary);
    font-weight: 600
}

.lang-option.active::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    margin-left: auto;
    color: var(--primary)
}

/* Language Toast Notification */
.lang-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--secondary);
    color: var(--white);
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px
}

.lang-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1
}

.lang-toast i {
    color: var(--primary);
    font-size: 16px
}

.hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 38px;
    height: 34px;
    border: 1px solid #ddd;
    padding: 0;
    transition: var(--transition)
}

.hamburger:hover {
    border-color: var(--primary)
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition)
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 2000;
    transition: left 0.4s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

.mobile-menu.active {
    left: 0
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999
}

.mobile-overlay.active {
    display: block
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 8px
}

.mobile-menu-logo img {
    height: 45px;
    width: auto
}

.mobile-menu-close {
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    color: var(--secondary);
    transition: var(--transition)
}

.mobile-menu-close:hover {
    color: var(--primary)
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    margin-top: 0
}

.mobile-menu-nav a {
    padding: 14px 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary);
    border-bottom: 1px solid #eee
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    color: var(--primary)
}

/* MOBILE LANGUAGE DROPDOWN */
.mobile-lang-dropdown {
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    position: relative;
    flex-shrink: 0
}

.mobile-lang-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary);
    transition: var(--transition);
    user-select: none
}

.mobile-lang-trigger:hover,
.mobile-lang-dropdown.open .mobile-lang-trigger {
    border-color: var(--primary)
}

.mobile-lang-flag {
    width: 22px;
    height: 15px;
    object-fit: cover;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15)
}

.mobile-lang-trigger span {
    flex: 1
}

.mobile-lang-arrow {
    font-size: 11px;
    color: var(--text-light);
    transition: transform 0.3s ease
}

.mobile-lang-dropdown.open .mobile-lang-arrow {
    transform: rotate(180deg)
}

.mobile-lang-list {
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-top: none;
    transition: max-height 0.3s ease, border-color 0.3s ease
}

.mobile-lang-dropdown.open .mobile-lang-list {
    max-height: 300px;
    border-color: #eee
}

.mobile-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition)
}

.mobile-lang-item img {
    width: 22px;
    height: 15px;
    object-fit: cover;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15)
}

.mobile-lang-item:hover {
    background: var(--light-bg);
    color: var(--primary)
}

.mobile-lang-item.active {
    color: var(--primary);
    font-weight: 600;
    background: rgba(251, 185, 0, 0.06)
}

.mobile-lang-item.active::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    margin-left: auto;
    color: var(--primary)
}

/* PAGE BANNER */
.page-banner {
    background: var(--secondary);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    background-image: url('../images/general/page-banner-bg.jpg');
    background-size: cover;
    background-position: center
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(34, 40, 49, 0.92) 0%, rgba(34, 40, 49, 0.40) 100%)
}

.page-banner h1 {
    color: var(--white);
    font-size: 38px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    position: relative;
    z-index: 2
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6)
}

.breadcrumb a:hover {
    color: var(--primary)
}

.breadcrumb .separator {
    color: var(--primary)
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 70vh;
    min-height: 450px;
    max-height: 650px;
    cursor: grab
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center
}

.slide.active {
    opacity: 1
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease
}

.slide.active .slide-bg {
    transform: scale(1.05)
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(34, 40, 49, 0.85) 0%, rgba(34, 40, 49, 0.4) 100%)
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box
}

.slide-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 16px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
    max-width: 600px
}

.slide-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.5s;
    max-width: 600px
}

.slide-content .btn {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.7s
}

.slide.active .slide-content h2,
.slide.active .slide-content p,
.slide.active .slide-content .btn {
    transform: translateY(0);
    opacity: 1
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10
}

.slider-nav span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition)
}

.slider-nav span.active {
    background: var(--primary);
    width: 36px
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    transform: translateY(-50%);
    z-index: 10
}

.slider-arrows button {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    width: 44px;
    height: 44px;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px)
}

.slider-arrows button:hover {
    background: var(--primary);
    color: var(--secondary)
}

/* ABOUT SECTION */
.about-section {
    padding: 100px 0
}

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

.about-image {
    position: relative
}

.about-image img {
    width: 100%;
    box-shadow: var(--shadow)
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    z-index: -1
}

.about-text h2 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 16px
}

.about-text .accent {
    color: var(--primary)
}

.about-text p {
    margin-bottom: 16px;
    color: var(--text-light)
}

/* PRODUCTS GRID */
.products-section {
    padding: 100px 0;
    background: var(--light-bg)
}

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

.product-card {
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12)
}

.product-card-image {
    height: 250px;
    overflow: hidden
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.product-card:hover .product-card-image img {
    transform: scale(1.08)
}

.product-card-body {
    padding: 24px
}

.product-card-body h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 10px
}

.product-card-body p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px
}

.product-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.product-card-link:hover {
    gap: 10px
}

/* WHY US */
.why-section {
    padding: 100px 0
}

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

.why-card {
    text-align: center;
    padding: 40px 24px
}

.why-card i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px
}

.why-card h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px
}

.why-card p {
    color: var(--text-light);
    font-size: 14px
}

/* COUNTER */
.counter-section {
    background: var(--secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('') center/cover;
    opacity: 0.1
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2
}

.counter-item {
    text-align: center;
    color: var(--white)
}

.counter-item .number {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    display: block
}

.counter-item .label {
    font-size: 15px;
    margin-top: 8px;
    opacity: 0.8
}

/* BLOG SECTION */
.blog-section {
    padding: 100px 0;
    background: var(--light-bg)
}

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

.blog-card {
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition)
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12)
}

.blog-card-image {
    height: 220px;
    overflow: hidden
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08)
}

.blog-card-body {
    padding: 24px
}

.blog-card-cat {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

.blog-card-body h3 {
    font-size: 18px;
    color: var(--secondary);
    margin: 8px 0
}

.blog-card-body h3:hover {
    color: var(--primary)
}

.blog-card-date {
    color: var(--text-light);
    font-size: 13px
}

.blog-card-body p {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 10px
}

/* CTA */
.cta-section {
    padding: 100px 0;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
    text-align: center
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-size: cover;
    background-color: var(--secondary);
    opacity: 0.7;
}

.cta-section h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.cta-section .btn {
    position: relative;
    z-index: 2
}

/* DETAIL PAGE LAYOUT */
.detail-layout {
    display: flex;
    gap: 40px;
    padding: 80px 0
}

.detail-main {
    flex: 1;
    min-width: 0
}

.detail-sidebar {
    width: 320px;
    flex-shrink: 0
}

.detail-sidebar .sidebar-inner {
    position: sticky;
    top: 100px
}

.sidebar-widget {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 24px;
    margin-bottom: 24px
}

.sidebar-widget h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary)
}

.sidebar-widget ul li {
    margin-bottom: 8px
}

.sidebar-widget ul li a {
    display: block;
    padding: 10px 14px;
    color: var(--text);
    font-size: 14px;
    transition: var(--transition);
    border-left: 3px solid transparent
}

.sidebar-widget ul li a:hover,
.sidebar-widget ul li a.active {
    background: var(--light-bg);
    color: var(--primary);
    border-left-color: var(--primary)
}

.sidebar-cta {
    background: var(--secondary);
    color: var(--white);
    padding: 30px;
    text-align: center
}

.sidebar-cta h3 {
    color: var(--white);
    border: none;
    margin-bottom: 10px
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px
}

.sidebar-widget .footer-contact-item span {
    color: var(--text)
}

.sidebar-widget .footer-contact-item span a {
    color: var(--text);
    transition: var(--transition)
}

.sidebar-widget .footer-contact-item span a:hover {
    color: var(--primary)
}

.sidebar-widget .footer-contact-item i {
    color: var(--primary)
}

/* FAQ */
.faq-section {
    padding: 80px 0
}

.faq-item {
    border: 1px solid #eee;
    margin-bottom: 10px;
    box-shadow: var(--shadow)
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary);
    transition: var(--transition)
}

.faq-question:hover {
    color: var(--primary)
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary)
}

.faq-item.active .faq-question i {
    transform: rotate(180deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px
}

.faq-answer-inner {
    padding: 0 0 18px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8
}

.faq-item.active .faq-answer {
    max-height: 500px
}

/* GALLERY */
.gallery-section {
    padding: 80px 0
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow)
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.08)
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 40, 49, 0.6);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1
}

.gallery-item-overlay i {
    color: var(--white);
    font-size: 28px
}

.gallery-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 36px;
    z-index: 2;
    pointer-events: none
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.lightbox.active {
    display: flex
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    z-index: 3001
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%)
}

.lightbox-nav button {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition)
}

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

/* CONTACT */
.contact-section {
    padding: 80px 0
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px
}

.contact-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    box-shadow: var(--shadow)
}

.contact-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px
}

.contact-card h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 8px
}

.contact-card p {
    color: var(--text-light);
    font-size: 14px
}

.contact-card a {
    color: var(--text-light)
}

.contact-card a:hover {
    color: var(--primary)
}

.contact-map {
    width: 100%;
    height: 400px;
    margin-bottom: 50px;
    box-shadow: var(--shadow)
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none
}

.contact-map-fullwidth {
    width: 100%;
    height: 550px;
}

.contact-map-fullwidth iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block
}

.contact-form {
    margin: 0 auto;
    background: var(--secondary);
    padding: 48px 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    position: relative
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary)
}

.form-group {
    margin-bottom: 24px
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--white);
    transition: var(--transition);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.06)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35)
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(251, 185, 0, 0.15);
    background: rgba(255, 255, 255, 0.1)
}

.form-group textarea {
    min-height: 140px;
    resize: vertical
}

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

.contact-form .btn-primary {
    margin-top: 8px;
    padding: 16px 32px;
    font-size: 15px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(251, 185, 0, 0.4)
}

/* FOOTER */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary)
}

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

.footer-col ul li {
    margin-bottom: 10px
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition)
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary)
}

/* WHATSAPP & SCROLL TOP */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-wp 2s infinite
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #20bd5a
}

@keyframes pulse-wp {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4)
    }

    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6)
    }
}

.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition)
}

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

.scroll-top:hover {
    background: var(--primary);
    color: var(--secondary)
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

/* RESPONSIVE */
@media(max-width:1024px) {

    .products-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .why-grid,
    .counter-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .detail-sidebar {
        width: 280px
    }
}

@media(max-width:768px) {
    .topbar {
        display: none
    }

    .logo img {
        height: 65px
    }

    .nav-menu {
        display: none
    }

    .hamburger {
        display: flex
    }

    .header-phone {
        display: none
    }

    .lang-selected {
        height: 34px;
        padding: 0 10px;
        font-size: 12px
    }

    .lang-flag {
        width: 18px;
        height: 13px
    }

    .lang-arrow {
        font-size: 9px
    }

    .lang-menu {
        min-width: 130px;
        right: 0
    }

    .slide-content h2 {
        font-size: 30px
    }

    .slide-content p {
        font-size: 15px
    }

    .hero-slider {
        height: 60vh;
        min-height: 400px
    }

    .products-grid,
    .blog-grid,
    .contact-cards {
        grid-template-columns: 1fr
    }

    .why-grid,
    .counter-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .detail-layout {
        flex-direction: column
    }

    .detail-sidebar {
        width: 100%
    }

    .detail-sidebar .sidebar-inner {
        position: static
    }

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

    .page-banner h1 {
        font-size: 28px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .counter-item .number {
        font-size: 36px
    }

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

    .slider-arrows {
        top: auto;
        bottom: 20px;
        right: 16px;
        left: auto;
        width: auto;
        transform: none;
        gap: 8px;
        padding: 0
    }

    .slider-arrows button {
        width: 36px;
        height: 36px;
        font-size: 14px
    }

    .slider-nav {
        bottom: 26px;
        left: 20px;
        transform: none
    }
}

/* PRELOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease
}

.preloader.hide {
    opacity: 0;
    visibility: hidden
}

.preloader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(251, 185, 0, 0.2);
    border-top-color: var(--primary);
    animation: spin 0.8s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* KVKK / COOKIE NOTICE */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--secondary);
    color: var(--white);
    padding: 18px 0;
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2)
}

.cookie-notice.show {
    transform: translateY(0)
}

.cookie-notice .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.cookie-notice p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
    min-width: 200px;
    line-height: 1.6
}

.cookie-notice p a {
    color: var(--primary);
    text-decoration: underline
}

.cookie-notice-btn {
    padding: 10px 24px;
    background: var(--primary);
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap
}

.cookie-notice-btn:hover {
    background: var(--primary-dark)
}

/* CTA PARALLAX */
.cta-section.has-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center
}

@media(max-width:768px) {
    .cta-section.has-parallax {
        background-attachment: scroll
    }
}

/* MISSION VISION GRID */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px
}

@media(max-width:768px) {
    .mv-grid {
        grid-template-columns: 1fr
    }
}

/* FORM SUCCESS */
.form-success {
    background: var(--secondary);
    color: var(--white);
    padding: 40px;
    text-align: center;
    display: none
}

.form-success.show {
    display: block
}

.form-success i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px
}

.form-success h3 {
    font-size: 22px;
    margin-bottom: 10px
}

.form-success p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px
}