/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --dark-gray: #2a2a2a;
    --accent-gold: #e5b82e;
    --accent-gold-light: #f0cf5a;
    --accent-gold-rgb: 229, 184, 46;
    --text-light: #e0e0e0;
    --text-white: #ffffff;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
    --logo-height: 125px;
    --navbar-padding-y: 0.35rem;
    --navbar-offset: calc(var(--logo-height) + (var(--navbar-padding-y) * 2));
    --page-header-overlay: rgba(10, 10, 10, 0.35);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-top: var(--navbar-offset);
}

img,
video,
iframe,
embed,
object,
svg {
    max-width: 100%;
    height: auto;
}

.container,
section,
.hero,
.hero-slider,
.navbar,
.slide,
.slider-container,
.page-header,
.footer {
    max-width: 100%;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--navbar-padding-y) 0;
    border-bottom: 1px solid rgba(var(--accent-gold-rgb), 0.2);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    flex-shrink: 0;
    overflow: visible;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    line-height: 0;
}

.logo-image {
    height: var(--logo-height);
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0 1rem;
    flex-wrap: nowrap;
    max-width: 800px;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-gold);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.language-selector {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.3);
    color: var(--text-light);
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lang-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.language-selector.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--secondary-black);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.3);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(var(--accent-gold-rgb), 0.1);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(var(--accent-gold-rgb), 0.1);
    color: var(--accent-gold);
}

.lang-option.active {
    background: rgba(var(--accent-gold-rgb), 0.2);
    color: var(--accent-gold);
}

.lang-option span:first-child {
    font-size: 1.2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    margin-top: calc(-1 * var(--navbar-offset));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--navbar-offset) + 2rem) 1.5rem 3rem;
    box-sizing: border-box;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(var(--accent-gold-rgb), 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(var(--accent-gold-rgb), 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem;
    margin: 0 auto;
    width: 100%;
    max-width: 920px;
    box-sizing: border-box;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(var(--accent-gold-rgb), 0.5);
    letter-spacing: 0.04em;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(var(--accent-gold-rgb), 0.3);
    font-size: 0.95rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(var(--accent-gold-rgb), 0.5);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

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

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--accent-gold);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(45deg);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Hizmet Bölgelerimiz — Ana Sayfa */
.service-areas {
    background: var(--primary-black);
    padding: 4rem 0 5rem;
    border-top: 1px solid rgba(var(--accent-gold-rgb), 0.15);
    border-bottom: 1px solid rgba(var(--accent-gold-rgb), 0.1);
}

.service-areas .section-header {
    margin-bottom: 2.5rem;
}

.service-areas-tab-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-areas-tab-btn {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.35);
    border-radius: 30px;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-areas-tab-btn:hover,
.service-areas-tab-btn.active {
    background: rgba(var(--accent-gold-rgb), 0.15);
    border-color: var(--accent-gold);
    color: var(--accent-gold-light);
}

.service-areas-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-areas-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.4);
    background: rgba(var(--accent-gold-rgb), 0.1);
    color: var(--accent-gold);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.service-areas-arrow:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
}

.service-areas-panels {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.service-areas-panel {
    display: none;
    animation: serviceFadeIn 0.4s ease;
}

.service-areas-panel.active {
    display: block;
}

@keyframes serviceFadeIn {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

.service-areas-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.service-area-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--secondary-black);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--accent-gold-rgb), 0.35);
}

.service-area-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.service-area-card-image {
    position: relative;
    height: 140px;
    background-size: cover;
    background-position: center;
}

.service-area-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(10, 10, 10, 0.85);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.4);
}

.service-area-card-body {
    padding: 1.1rem 1.15rem 1.25rem;
}

.service-area-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-area-card-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.service-area-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.service-areas-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
}

.service-areas-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(var(--accent-gold-rgb), 0.25);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-areas-dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

.service-areas-footer {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 1100px) {
    .service-areas-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-areas-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .service-areas-tab-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .service-areas-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .service-areas-track::-webkit-scrollbar {
        display: none;
    }

    .service-area-card {
        flex: 0 0 82%;
        max-width: 82%;
        scroll-snap-align: start;
    }
}

/* Features Section */
.features {
    background: var(--secondary-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-gray);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(var(--accent-gold-rgb), 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    font-weight: 300;
}

/* Products Preview */
.products-preview {
    background: var(--primary-black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--secondary-black);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(var(--accent-gold-rgb), 0.3);
}

.product-image {
    height: 300px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--secondary-black) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at center, rgba(var(--accent-gold-rgb), 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--accent-gold);
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
    color: var(--text-light);
    font-weight: 300;
}

/* About Preview */
.about-preview {
    background: var(--secondary-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.about-image {
    height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--secondary-black) 100%);
    border-radius: 15px;
    border: 2px solid rgba(var(--accent-gold-rgb), 0.2);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    text-align: center;
    padding: 6rem 0;
}

.contact-cta h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 900;
}

.contact-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(var(--accent-gold-rgb), 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(var(--accent-gold-rgb), 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 1.2rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    :root {
        --logo-height: 160px;
    }

    .navbar .container {
        gap: 0.5rem;
        padding: 0 12px;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        order: 1;
        margin: 0;
        padding: 0;
        flex-shrink: 1;
        min-width: 0;
        max-width: calc(100% - 130px);
        overflow: visible;
    }
    
    .logo a {
        gap: 0.3rem;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    .logo-image {
        max-width: 100%;
        width: auto;
        object-fit: contain;
        flex-shrink: 0;
    }
    
    .nav-actions {
        order: 2;
        gap: 0.4rem;
        flex-shrink: 0;
        margin-left: 0.5rem;
        display: flex;
        align-items: center;
    }
    
    .language-selector {
        order: 1;
    }
    
    .hamburger {
        display: flex !important;
        order: 2;
        visibility: visible;
        opacity: 1;
        margin: 0;
        padding: 0.25rem;
    }
    
    .lang-btn {
        padding: 0.35rem 0.5rem;
        font-size: 0.75rem;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: var(--navbar-offset);
        flex-direction: column;
        background: var(--primary-black);
        width: 100%;
        max-width: 100%;
        text-align: center;
        transition: transform 0.3s ease;
        transform: translateX(-100%);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid rgba(var(--accent-gold-rgb), 0.2);
        flex: none;
        justify-content: flex-start;
        gap: 0;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: calc(100vh - var(--navbar-offset));
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(var(--accent-gold-rgb), 0.1);
    }

    /* Mobilde ::after kayması olmasın — çizgiler doğrudan aktif öğede */
    .nav-menu a::after {
        display: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1rem;
        position: relative;
        z-index: 1;
    }

    .nav-menu a.active {
        background: rgba(var(--accent-gold-rgb), 0.12);
        box-shadow:
            inset 0 2px 0 var(--accent-gold),
            inset 0 -2px 0 var(--accent-gold);
    }

    .nav-menu li:has(> a.active) {
        border-bottom-color: transparent;
    }

    .nav-menu li:has(> a.active) + li {
        border-top: none;
    }

    .nav-menu.active {
        left: 0;
        transform: translateX(0);
    }

    .lang-dropdown {
        right: auto;
        left: 0;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: 0.02em;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 4.5vw, 1.5rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section-header h2 {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

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

    .contact-cta h2 {
        font-size: 2rem;
    }

    .slider-controls {
        padding: 0 0.75rem;
        width: 100%;
        left: 0;
        box-sizing: border-box;
    }

    .slider-prev,
    .slider-next {
        font-size: 1.5rem;
        padding: 0.65rem 0.9rem;
    }

    .hero-content {
        padding: 1.25rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-slider {
        height: calc(70vh + var(--navbar-offset));
        min-height: calc(480px + var(--navbar-offset));
        max-height: none;
    }

    .slide {
        padding: calc(var(--navbar-offset) + 1rem) 1rem 4rem;
    }

    .features-grid,
    .products-grid,
    .products-grid-large,
    .values-grid,
    .related-grid {
        width: 100%;
        max-width: 100%;
    }

    .service-areas-carousel-wrap {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .service-areas-arrow {
        flex-shrink: 0;
    }

    .blog-post-content,
    .content-text,
    .founder-profile {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .blog-post-content img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    :root {
        --logo-height: 145px;
    }

    .logo {
        max-width: calc(100% - 120px);
    }

    .hero-title {
        font-size: clamp(1.85rem, 9vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4.5vw, 1.2rem);
    }

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--page-header-overlay);
    z-index: 1;
    pointer-events: none;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(var(--accent-gold-rgb), 0.1) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

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

.blog-hero,
.blog-post-header {
    position: relative;
    overflow: hidden;
}

.blog-hero::after,
.blog-post-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--page-header-overlay);
    z-index: 1;
    pointer-events: none;
}

.blog-hero .container,
.blog-post-header .container {
    position: relative;
    z-index: 3;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(var(--accent-gold-rgb), 0.3);
}

.page-header p {
    font-size: 1.3rem;
    color: var(--accent-gold-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        0 2px 6px rgba(0, 0, 0, 0.85);
}

/* Content Section */
.content-section {
    background: var(--secondary-black);
    padding: 5rem 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.content-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-text h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.content-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.founder-profile {
    margin-bottom: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.25);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--accent-gold-rgb), 0.08) 0%, rgba(10, 10, 10, 0.6) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.founder-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(var(--accent-gold-rgb), 0.35);
}

.founder-birth {
    display: inline-block;
    color: var(--accent-gold-light);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2rem !important;
    padding: 0.4rem 1rem;
    border-left: 3px solid var(--accent-gold);
    background: rgba(var(--accent-gold-rgb), 0.1);
}

.founder-media {
    margin: 0 0 1.75rem;
    border-radius: 12px;
    overflow: hidden;
    max-width: 420px;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.25);
}

.founder-media img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
}

.founder-profile p a {
    color: var(--accent-gold-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.founder-profile p a:hover {
    color: var(--accent-gold);
}

.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 300;
}

.benefits-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

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

/* Products Section */
.products-section {
    background: var(--primary-black);
    padding: 5rem 0;
}

.products-grid-large {
    display: grid;
    gap: 3rem;
}

.product-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: var(--dark-gray);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.1);
    transition: all 0.3s ease;
}

.product-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(var(--accent-gold-rgb), 0.2);
    transform: translateY(-5px);
}

.product-item-image {
    height: 100%;
    min-height: 250px;
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--dark-gray) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-item-content {
    padding: 2rem;
}

.product-item-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-item-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
}

.product-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-more {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.product-gallery-section {
    background: var(--secondary-black);
    padding: 4rem 0;
}

.product-gallery-section .section-header {
    margin-bottom: 2rem;
}

.product-gallery-section .section-header h2 {
    font-size: 2rem;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.product-gallery-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-gallery-item:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-gold-rgb), 0.45);
}

.product-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

@media (max-width: 640px) {
    .product-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-features {
    list-style: none;
}

.product-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

/* Product Types & Specs */
.product-types,
.product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.type-item,
.spec-item {
    background: var(--dark-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.1);
    transition: all 0.3s ease;
}

.type-item:hover,
.spec-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.type-item h4,
.spec-item h4 {
    font-family: var(--font-display);
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.type-item p,
.spec-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 300;
}

/* Usage Steps */
.usage-steps {
    list-style: none;
    counter-reset: step-counter;
    margin: 1.5rem 0;
}

.usage-steps li {
    counter-increment: step-counter;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 3rem;
    position: relative;
    font-weight: 300;
}

.usage-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--accent-gold);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--accent-gold-rgb), 0.2);
}

.value-item h4 {
    font-family: var(--font-display);
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-item p {
    color: var(--text-light);
    margin: 0;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 900;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    background: var(--secondary-black);
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.contact-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(var(--accent-gold-rgb), 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 0.3rem;
}

.contact-item-phone {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(var(--accent-gold-rgb), 0.16), rgba(var(--accent-gold-rgb), 0.05));
    border: 1px solid rgba(var(--accent-gold-rgb), 0.45);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2.5rem;
    border-bottom: none;
    box-shadow:
        0 8px 32px rgba(var(--accent-gold-rgb), 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-item-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    animation: mobile-btn-shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

.contact-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--accent-gold-light);
    text-decoration: none;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow:
        0 0 24px rgba(var(--accent-gold-rgb), 0.55),
        0 2px 8px rgba(0, 0, 0, 0.35);
    transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
}

.contact-phone-link:hover,
.contact-phone-link:focus {
    color: #fff4c2;
    text-shadow:
        0 0 32px rgba(var(--accent-gold-rgb), 0.75),
        0 0 12px rgba(var(--accent-gold-rgb), 0.5);
    transform: scale(1.03);
}

.contact-phone-icon {
    font-size: 1.35em;
    line-height: 1;
}

.contact-phone-hint {
    margin-top: 0.75rem !important;
    font-size: 0.95rem;
    color: var(--accent-gold) !important;
    opacity: 0.85;
}

.mobile-contact-bar {
    display: none;
}

/* Contact Form */
.contact-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    font-weight: 900;
}

.contact-form {
    background: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-black);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(var(--accent-gold-rgb), 0.1);
}

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

.contact-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Updates */
@media (max-width: 968px) {
    .product-item {
        grid-template-columns: 1fr;
    }

    .product-item-image {
        min-height: 200px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@keyframes mobile-btn-shimmer {
    0% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
    15% { opacity: 1; }
    100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}

@keyframes mobile-btn-glow-pulse {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.06); }
}

@keyframes mobile-btn-ring-pulse {
    0% { transform: scale(0.85); opacity: 0.7; }
    70% { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
}

@keyframes mobile-bar-slide-up {
    from { transform: translateY(110%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes mobile-btn-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@media (max-width: 768px) {
    .contact-section {
        padding-bottom: 7.5rem;
    }

    .mobile-contact-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        z-index: 9999;
        gap: 0.85rem;
        padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
        background: linear-gradient(180deg, rgba(18, 18, 18, 0.72) 0%, rgba(8, 8, 8, 0.96) 100%);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-top: 1px solid rgba(var(--accent-gold-rgb), 0.35);
        box-shadow:
            0 -12px 40px rgba(0, 0, 0, 0.65),
            0 -2px 24px rgba(var(--accent-gold-rgb), 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
        animation: mobile-bar-slide-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .mobile-contact-btn {
        position: relative;
        flex: 1;
        overflow: hidden;
        isolation: isolate;
        border-radius: 16px;
        text-decoration: none;
        min-height: 3.75rem;
        border: 1px solid transparent;
        transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
        animation: mobile-btn-float 3.2s ease-in-out infinite;
    }

    .mobile-contact-btn:nth-child(2) {
        animation-delay: 0.4s;
    }

    .mobile-contact-btn:active {
        transform: scale(0.96) translateY(1px);
        animation: none;
    }

    .mobile-contact-btn-inner {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.65rem;
        padding: 1.05rem 0.85rem;
        height: 100%;
    }

    .mobile-contact-btn-text {
        font-family: var(--font-display);
        font-size: 1.02rem;
        font-weight: 800;
        letter-spacing: 0.3px;
        line-height: 1.15;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    }

    .mobile-contact-btn-icon-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.1rem;
        height: 2.1rem;
        flex-shrink: 0;
    }

    .mobile-contact-btn-icon {
        position: relative;
        z-index: 2;
        font-size: 1.35rem;
        line-height: 1;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
    }

    .mobile-contact-btn-pulse {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 2px solid currentColor;
        opacity: 0.55;
        animation: mobile-btn-ring-pulse 2.2s ease-out infinite;
    }

    .mobile-contact-btn-shine {
        position: absolute;
        top: 0;
        left: 0;
        width: 45%;
        height: 100%;
        z-index: 3;
        background: linear-gradient(
            105deg,
            transparent 0%,
            rgba(255, 255, 255, 0.08) 35%,
            rgba(255, 255, 255, 0.55) 50%,
            rgba(255, 255, 255, 0.08) 65%,
            transparent 100%
        );
        pointer-events: none;
        animation: mobile-btn-shimmer 2.8s ease-in-out infinite;
    }

    .mobile-contact-btn-glow {
        position: absolute;
        inset: -2px;
        z-index: 0;
        border-radius: inherit;
        filter: blur(10px);
        opacity: 0.55;
        animation: mobile-btn-glow-pulse 2.4s ease-in-out infinite;
        pointer-events: none;
    }

    .mobile-contact-call {
        color: #1a1408;
        background: linear-gradient(145deg, var(--accent-gold-light) 0%, var(--accent-gold) 42%, #c99a18 100%);
        border-color: rgba(255, 236, 160, 0.55);
        box-shadow:
            0 8px 28px rgba(var(--accent-gold-rgb), 0.45),
            0 2px 0 rgba(255, 255, 255, 0.35) inset,
            0 -3px 12px rgba(0, 0, 0, 0.2) inset;
    }

    .mobile-contact-call .mobile-contact-btn-glow {
        background: radial-gradient(circle at 50% 50%, rgba(var(--accent-gold-rgb), 0.95), rgba(var(--accent-gold-rgb), 0.2) 70%);
    }

    .mobile-contact-call .mobile-contact-btn-pulse {
        border-color: rgba(26, 20, 8, 0.35);
    }

    .mobile-contact-whatsapp {
        color: #fff;
        background: linear-gradient(145deg, #3fe07a 0%, #25d366 45%, #128c7e 100%);
        border-color: rgba(180, 255, 210, 0.45);
        box-shadow:
            0 8px 28px rgba(37, 211, 102, 0.42),
            0 2px 0 rgba(255, 255, 255, 0.28) inset,
            0 -3px 12px rgba(0, 0, 0, 0.22) inset;
    }

    .mobile-contact-whatsapp .mobile-contact-btn-glow {
        background: radial-gradient(circle at 50% 50%, rgba(63, 224, 122, 0.9), rgba(18, 140, 126, 0.15) 70%);
    }

    .mobile-contact-whatsapp .mobile-contact-btn-pulse {
        border-color: rgba(255, 255, 255, 0.55);
    }

    .mobile-contact-whatsapp .mobile-contact-btn-text {
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .mobile-contact-bar,
    .mobile-contact-btn,
    .mobile-contact-btn-shine,
    .mobile-contact-btn-glow,
    .mobile-contact-btn-pulse {
        animation: none !important;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .content-text h2 {
        font-size: 2rem;
    }

    .content-text h3 {
        font-size: 1.5rem;
    }

    .product-types,
    .product-specs {
        grid-template-columns: 1fr;
    }
}

/* RTL Support for Arabic */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .navbar .container {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

html[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

html[dir="rtl"] .about-content {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-wrapper {
    flex-direction: row-reverse;
}

html[dir="rtl"] .footer-content {
    flex-direction: row-reverse;
}

/* Product Detail Styles */
.product-detail-section {
    padding: 4rem 0;
}

.breadcrumb {
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: var(--secondary-black);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: rgba(var(--accent-gold-rgb), 0.1);
}

.product-gallery {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    border-color: var(--accent-gold);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details h1 {
    font-family: var(--font-display);
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-category {
    margin-bottom: 1.5rem;
}

.product-category a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.product-category a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.product-price-large {
    font-size: 2rem;
    margin: 1.5rem 0;
}

.product-price-large .price-old {
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.product-price-large .price-new {
    color: var(--accent-gold);
    font-weight: bold;
}

.product-short-desc {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.product-meta {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
}

.meta-item {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-item strong {
    color: var(--accent-gold);
    min-width: 120px;
}

.stock-in {
    color: #4caf50;
}

.stock-out {
    color: #ff6b6b;
}

.stock-order {
    color: #ffa500;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.product-description {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(var(--accent-gold-rgb), 0.2);
}

.product-description h3 {
    font-family: var(--font-display);
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.description-content {
    line-height: 1.8;
}

.description-content p {
    margin-bottom: 1rem;
}

.description-content ul,
.description-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

/* Product Card Updates */
.product-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(var(--accent-gold-rgb), 0.2);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--secondary-black);
}

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

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: rgba(var(--accent-gold-rgb), 0.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    z-index: 2;
}

.product-badge.sale {
    background: #ff6b6b;
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: var(--font-display);
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-price {
    margin: 1rem 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.product-price .price-old {
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.product-price .price-new {
    color: var(--accent-gold);
}

.product-stock {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Related Products */
.related-products {
    padding: 4rem 0;
    background: rgba(26, 26, 26, 0.5);
}

/* Responsive Product Detail */
@media (max-width: 968px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(72vh + var(--navbar-offset));
    min-height: calc(560px + var(--navbar-offset));
    max-height: calc(820px + var(--navbar-offset));
    margin-top: calc(-1 * var(--navbar-offset));
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--navbar-offset) + 1.5rem) 1.5rem 4.5rem;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.45) 0%,
        rgba(10, 10, 10, 0.35) 45%,
        rgba(10, 10, 10, 0.55) 100%
    );
    opacity: 1;
}

.slide .hero-content {
    position: relative;
    z-index: 2;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    box-sizing: border-box;
}

.slider-prev,
.slider-next {
    background: rgba(var(--accent-gold-rgb), 0.8);
    border: none;
    color: var(--primary-black);
    font-size: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* Upload Areas */
.image-upload-area,
.gallery-upload-area {
    margin-top: 1rem;
}

.upload-preview,
.gallery-preview {
    margin-bottom: 1rem;
    min-height: 150px;
    border: 2px dashed rgba(var(--accent-gold-rgb), 0.3);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-placeholder {
    text-align: center;
    color: var(--text-light);
    opacity: 0.6;
}

.upload-placeholder span {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

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

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(var(--accent-gold-rgb), 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Yatay kaydırma engeli — tüm cihazlar */
@media (max-width: 1200px) {
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }

    body > * {
        max-width: 100%;
    }

    .hero-title,
    .hero-subtitle,
    .hero-description,
    .page-header h1,
    .page-header p,
    .section-header h2,
    .section-header p {
        overflow-wrap: anywhere;
        word-break: break-word;
        max-width: 100%;
    }
}

