/* ============================================
   FOLIXIA GLOBAL STYLES
   ============================================ */

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* HEADER / LOGO */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.header-center {
    display: flex;
    align-items: center;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-wrapper img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #6b7a5f;
}

/* Search Bar */
.search-wrapper {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    width: 250px;
}

.search-bar:focus-within {
    background-color: #ffffff;
    border-color: #6b7a5f;
    box-shadow: 0 2px 8px rgba(107, 122, 95, 0.1);
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #2c2c2c;
    width: 100%;
    padding: 0 10px 0 0;
}

.search-bar input::placeholder {
    color: #999999;
}

.search-bar button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    color: #6b7a5f;
    transition: color 0.3s ease;
}

.search-bar button:hover {
    color: #1a1a1a;
}

.search-icon {
    width: 18px;
    height: 18px;
}

/* FOOTER STYLES */
.footer {
    background-color: #ffffff;
    color: #2c2c2c;
    padding: 30px 40px 20px;
    margin-top: 60px;
    border-top: 1px solid #f0f0f0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 140px;
    width: auto;
    margin-bottom: 15px;
    filter: none;
}

.footer-tagline {
    font-size: 13px;
    color: #666666;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #444444;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #444444;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6b7a5f;
}

.footer-contact p {
    color: #444444;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-social a {
    color: #444444;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.footer-social a:hover {
    color: #6b7a5f;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid #f0f0f0;
    padding: 20px 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666666;
}

.footer-quote {
    font-style: italic;
    color: #888888;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .header-container {
        gap: 30px;
    }
}

@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px 0;
    }

    .header-container {
        gap: 20px;
    }

    .header-center {
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .search-wrapper {
        display: none;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 15px 20px;
    }

    .header-container {
        gap: 15px;
        flex-wrap: wrap;
    }

    .header-center {
        gap: 15px;
        position: static;
        transform: none;
        left: auto;
    }

    .logo-wrapper img {
        height: 90px;
    }

    .nav-menu {
        gap: 15px;
        font-size: 13px;
    }

    .footer {
        padding: 60px 20px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* UTILITIES & ANIMATIONS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid #6b7a5f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #6b7a5f;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: #5a6950;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.loaded {
    opacity: 1;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroLabelFade {
    from {
        opacity: 0;
        letter-spacing: 5px;
    }

    to {
        opacity: 1;
        letter-spacing: 1px;
    }
}

.hero-animate {
    animation: heroFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.hero-delay-1 {
    animation-delay: 0.2s;
}

.hero-delay-2 {
    animation-delay: 0.4s;
}

.hero-delay-3 {
    animation-delay: 0.6s;
}

::selection {
    background-color: #6b7a5f;
    color: #ffffff;
}

::-moz-selection {
    background-color: #6b7a5f;
    color: #ffffff;
}

/* HERO SECTION */
.hero-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f1e8 0%, #e8f0e8 50%, #fafafa 100%);
    padding: 120px 40px 80px;
    position: relative;
    margin-top: 0;
    padding-top: 140px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-image-column {
    position: relative;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-label {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #A28540 !important;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: heroLabelFade 1.2s ease-out forwards;
}

.hero-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background-color: #d1d1d1;
}

.hero-headline {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    font-family: 'Playfair Display', serif;
}

.hero-headline span {
    display: block;
    color: #6b7a5f;
    font-style: italic;
    font-size: 0.9em;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 40px;
}

.hero-bullets li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.hero-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-size: 20px;
    line-height: 1;
}

.hero-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    align-self: flex-start;
}

.hero-button:hover {
    background-color: #6b7a5f;
    box-shadow: 0 15px 30px rgba(107, 122, 95, 0.2);
    transform: translateY(-5px);
    color: #ffffff;
}

/* PRODUCT SHOWCASE */
.products-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-header {
    margin-bottom: 60px;
}

.products-label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #888888;
    margin-bottom: 20px;
}

.products-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -1px;
    font-family: 'Playfair Display', serif;
}

.products-subtitle {
    font-size: 18px;
    color: #2c2c2c;
    font-weight: 400;
}

.products-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image-box {
    width: 100%;
    max-width: 200px;
    height: 300px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    border-radius: 8px;
}

.product-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
}

.product-name {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 10px;
}

/* INFORMATIONAL BLOCKS */
.info-section {
    padding: 100px 40px;
    background-color: #fafafa;
}

.info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.info-block-left,
.info-block-right {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block-left:hover,
.info-block-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-block-title {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', serif;
}

.info-block-image,
.usage-image {
    width: 100%;
    height: 350px;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

.info-block-image img,
.usage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.info-block-text {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
    flex-grow: 1;
}

.usage-steps {
    list-style: none;
    margin-top: 10px;
    flex-grow: 1;
}

.usage-steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
    color: #2c2c2c;
}

.step-number {
    min-width: 32px;
    height: 32px;
    background-color: #f5a623;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.recommendation-box {
    background-color: #f5f1e8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid #e8e0d0;
}

.recommendation-box p {
    font-size: 15px;
    color: #2c2c2c;
    margin: 0;
    font-weight: 500;
}

/* KEYFRAME ANIMATIONS */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* PAGE SPECIFIC RESPONSIVE */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-image-wrapper {
        height: 400px;
        order: -1;
    }

    .hero-headline {
        font-size: 36px;
    }

    .info-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 100px 20px 60px;
    }

    .products-section,
    .info-section {
        padding: 60px 20px;
    }

    .hero-headline {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .products-title {
        font-size: 32px;
    }

    .info-block-left,
    .info-block-right {
        padding: 30px 20px;
    }

    .info-block-title {
        font-size: 24px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   SUBPAGE: PRODUCTS LISTING (urunler.html)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #f5f1e8 0%, #e8f0e8 50%, #fafafa 100%);
    padding: 140px 40px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.page-hero p {
    font-size: 18px;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
    width: 100%;
    height: 400px;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-wrapper img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-info {
    padding: 30px;
}

.product-subtitle {
    font-size: 16px;
    color: #6b6b6b;
    font-style: italic;
    margin-bottom: 15px;
}

.product-description {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.product-link {
    display: inline-block;
    color: #6b7a5f;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: #1a1a1a;
}

/* ============================================
   SUBPAGE: ABOUT US (hakkimizda.html)
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7a5f;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 400;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

.story-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.quote-box {
    border-left: 3px solid #6b7a5f;
    padding-left: 20px;
    margin-top: 30px;
    font-style: italic;
    font-size: 18px;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
}

.image-placeholder {
    background-color: #f9f9f9;
    height: 450px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}

.values-section {
    padding: 80px 0;
    background-color: #fcfcfc;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: inline-block;
    background: #f5f1e8;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.vision-mission-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    padding: 50px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #6b7a5f;
}

.vm-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.vm-card p {
    color: #555;
    line-height: 1.8;
}

@media (max-width: 968px) {

    .story-grid,
    .values-grid,
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .image-placeholder {
        height: 300px;
    }
}

/* ============================================
   SUBPAGE: CONTACT US (iletisim.html)
   ============================================ */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.contact-item a {
    color: #6b7a5f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1a1a1a;
}

.contact-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b7a5f;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 120px;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 100px 20px 40px;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

/* ============================================
   SUBPAGE: PRODUCT DETAIL (urun-detay.html)
   ============================================ */
.product-detail-section {
    padding: 140px 40px 60px;
}

.product-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.product-images {
    position: sticky;
    top: 120px;
}

.product-main-image {
    width: 100%;
    height: 600px;
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.product-main-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.product-thumbnail {
    width: 100%;
    height: 120px;
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: #6b7a5f;
}

.product-thumbnail img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.product-info {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
}

.product-category {
    font-size: 14px;
    color: #6b7a5f;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.product-title {
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.product-usage {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.product-usage h3 {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.product-usage ol {
    margin-left: 20px;
}

.product-usage li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.related-products {
    padding: 80px 40px;
    background-color: #ffffff;
}

.related-products h2 {
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.related-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.related-product {
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.related-product-image {
    width: 100%;
    height: 300px;
    background-color: #fafafa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.related-product:hover .related-product-image {
    transform: translateY(-10px);
}

.related-product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

@media (max-width: 968px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-images {
        position: static;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .product-detail-section {
        padding: 120px 20px 60px;
    }

    .product-info {
        padding: 20px 0;
    }

    .product-title {
        font-size: 28px;
    }

    .product-main-image {
        height: 350px;
    }
}

/* ============================================
   SUBPAGE: BLOG LISTING (blog.html)
   ============================================ */
.blog-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 250px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6b7a5f;
    margin-bottom: 15px;
    padding: 5px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.blog-title {
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #6b6b6b;
    margin-bottom: 20px;
}

.blog-link {
    color: #6b7a5f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .blog-section {
        padding: 60px 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   SUBPAGE: BLOG ARTICLE (blog-yazi.html)
   ============================================ */
.blog-hero {
    background: linear-gradient(135deg, #f5f1e8 0%, #e8f0e8 50%, #fafafa 100%);
    padding: 140px 40px 60px;
    text-align: center;
    border-bottom: 1px solid rgba(107, 122, 95, 0.1);
}

.blog-hero h1 {
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.blog-content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #6b7a5f;
    font-weight: 500;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

.blog-text {
    font-size: 18px;
    color: #4a5a4b;
    line-height: 1.8;
}

.blog-text p {
    margin-bottom: 25px;
}

.blog-text h2 {
    color: #2c3e2d;
    margin: 40px 0 20px;
}

/* ============================================
   GLOBAL: WHATSAPP WIDGET
   ============================================ */
/* ============================================
   GLOBAL: WHATSAPP WIDGET
   ============================================ */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    /* Highest possible z-index */
    display: flex;
    align-items: center;
    gap: 15px;
    filter: drop-shadow(0 10px 25px rgba(37, 211, 102, 0.3));
}

.whatsapp-widget a {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    animation: wa-pulse 2s infinite;
}

.whatsapp-widget a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    z-index: -1;
    animation: wa-ripple 2s infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes wa-ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-widget a:hover {
    transform: scale(1.1) translateY(-5px);
    background: linear-gradient(135deg, #2ae06d 0%, #149c8d 100%);
}

.whatsapp-widget svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    background-color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #ffffff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0) scale(1);
}

@media (max-width: 640px) {
    .whatsapp-widget {
        bottom: 25px;
        right: 25px;
        gap: 10px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .whatsapp-widget a {
        width: 55px;
        height: 55px;
    }
}