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

body {
    font-family: 'Playfair Display', 'Bodoni Moda', serif;
    font-weight: 700;
    overflow-x: hidden;
    background-color: #f8f3e1;
}

html {
    overflow-x: hidden;
}

/* Colors */
:root {
    --green: #5a7766;
    --dark-green: #475e51;
    --red: #ff6b6b;
    --light-gray: #f8f3e1;
    --white: #ffffff;
    --cream: #f8f3e1;
    --text-dark: #475e51;
}

/* Navigation */
.navbar {
    background-color: var(--green);
    padding: 1rem 0;
    z-index: 9999;
    position: fixed !important;
    width: 100%;
    top: 0;
}

.navbar .container {
    max-width: 1480px;
    padding: 0 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cream);
}

.logo-icon {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-align: right;
    align-items: flex-end;
}

.logo-text span:first-child {
    font-weight: 700;
    font-size: 1.54rem;
    letter-spacing: 1px;
}

.logo-text span:last-child {
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-top: 2px;
}

.navbar-nav .nav-link {
    font-family: 'futura-pt', 'Futura', sans-serif;
    color: var(--cream) !important;
    font-weight: 700;
    margin: 0 1rem;
    transition: opacity 0.3s;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    opacity: 0.8;
}

/* Navbar Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: none;
    background: transparent;
    color: inherit;
    padding: 0;
    font: inherit;
    letter-spacing: inherit;
    cursor: pointer;
}

.nav-dropdown-toggle:focus {
    outline: none;
    box-shadow: none;
}

.nav-dropdown-toggle .caret {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.2s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    background: #ff6b6b;
    border-radius: 14px;
    box-shadow: 0 16px 30px rgba(71, 94, 81, 0.25);
    display: none;
    z-index: 1000;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-link {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--cream);
    font-family: 'futura-pt', 'Futura', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.nav-dropdown-link:hover {
    background: rgba(248,243,225,0.18);
}

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

@media (max-width: 991.98px) {
    .navbar-nav {
        width: 100%;
        align-items: stretch !important;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: 0.75rem 0;
        display: block;
        text-align: left;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }

    .nav-dropdown-toggle .caret {
        position: static;
        margin-left: auto;
        transform: none;
    }

    .nav-dropdown-menu {
        position: static;
        top: auto;
        left: auto;
        min-width: 100%;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-link {
        padding: 0.65rem 1rem;
    }
}


/* Hamburger Menu Styles */
.navbar-toggler {
    background-color: rgba(248,243,225,0.1);
    border: 1px solid var(--cream);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28248, 243, 225, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.1rem rgba(248,243,225,0.3);
}

/* Hero Section */
.hero {
    background-color: var(--green);
    min-height: 100vh;
    padding-top: 76px;
    position: relative;
}

.hero-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 1200px) {
    .hero-container {
        padding: 0 15px;
    }
}

.hero-row {
    min-height: calc(100vh - 76px);
}

.hero-left {
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1200px) {
    .hero-left {
        padding-left: 0;
        padding-right: 2rem;
    }
}

.hero-title {
    font-family: 'futura-pt', 'Futura', sans-serif;
    color: var(--cream);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

.hero-title div {
    white-space: nowrap;
}

.hero-line {
    width: 286px;
    height: auto;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.hero-line-img {
    width: 100%;
    height: auto;
    max-width: 286px;
    opacity: 0.95;
}

.hero-subtitle {
    font-family: 'Kalam', 'Caveat', 'Architects Daughter', cursive;
    color: var(--cream);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.recycle-icon {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.recycle-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    vertical-align: middle;
}

.scroll-down {
    margin-top: 3rem;
    animation: bounce 2s infinite;
}

.scroll-down svg {
    width: 45px;
    height: 60px;
}

.scroll-down-mobile {
    margin: 2rem 0;
    animation: bounce 2s infinite;
}

.scroll-down-mobile svg {
    width: 60px;
    height: 80px;
}

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

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 450px;
    object-fit: contain;
}

@media (max-width: 1400px) {
    .hero-image-wrapper {
        max-width: 450px;
    }

    .hero-image {
        max-width: 400px;
    }
}

@media (max-width: 1200px) {
    .hero-image-wrapper {
        max-width: 380px;
    }

    .hero-image {
        max-width: 340px;
    }

    .hero-title {
        font-size: clamp(2rem, 4.5vw, 3.5rem);
        letter-spacing: -1px;
    }

    .hero-left {
        padding-right: 1rem !important;
    }
}

/* About Section */
.about-section {
    background-color: var(--green);
    padding: 80px 0;
}

.about-section .container {
    max-width: 1480px;
    padding: 0 15px;
}

.fade-section {
    overflow: hidden;
}

.about-title {
    font-family: 'futura-pt', 'Futura', sans-serif;
    color: var(--cream);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.about-text {
    color: var(--cream);
    line-height: 1.7;
    text-align: justify;
    font-size: 1.14rem;
}
.about-text p {
    margin-bottom: 1.2rem;
}

.experience-years {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: sticky;
    top: 100px;
}

.year-number {
    font-family: 'futura-pt', 'Futura', sans-serif;
    font-size: 8rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--cream);
    text-stroke: 3px var(--cream);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.year-line {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.year-line-img {
    width: 120px;
    height: auto;
    opacity: 0.85;
    filter: brightness(1.6);
}

.year-text {
    color: var(--cream);
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'futura-pt', 'Futura', sans-serif;
    letter-spacing: 1px;
}

/* Fade-in Animations */
.fade-in-left,
.fade-in-right,
.fade-in-up {
    opacity: 0;
    transition: all 1s ease;
}

.fade-in-left {
    transform: translateX(-50px);
}

.fade-in-right {
    transform: translateX(50px);
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-left.show,
.fade-in-right.show,
.fade-in-up.show {
    opacity: 1;
    transform: translate(0);
}

/* Products Section */
.products-section {
    background-color: var(--light-gray);
    padding: 120px 0;
    position: relative;
}

.products-section .container {
    max-width: 1480px;
    padding: 0 15px;
}

.wave-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--green);
    clip-path: ellipse(100% 100% at 50% 0%);
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

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

.wave-bottom svg path {
    fill: var(--green);
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'futura-pt', 'Futura', sans-serif;
    color: var(--dark-green);
    font-size: 3.5rem;
    font-weight: 800;
}

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

.product-photo {
    width: 100%;
    border-radius: 18px;
    border: 4px solid rgba(71, 94, 81, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-photo:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 30px rgba(71, 94, 81, 0.12);
}

.product-caption {
    color: var(--dark-green);
    text-align: center;
    font-weight: 600;
    font-size: 1.3rem;
    font-family: 'futura-pt', 'Futura', sans-serif;
    letter-spacing: 0.4px;
}

/* Contact Section */
/* Footer */
.footer {
    background: var(--green);
    color: var(--cream);
    padding: 2rem 0;
}

.footer .container {
    max-width: 1480px;
    padding: 0 15px;
}


.footer-copy {
    margin-top: 0.5rem;
    opacity: 0.7;
    font-family: 'futura-pt', 'Futura', sans-serif;
    letter-spacing: 0.4px;
}

.footer-contact {
    margin-top: 0.6rem;
    font-size: 1.05rem;
    opacity: 0.9;
    font-family: 'futura-pt', 'Futura', sans-serif;
    letter-spacing: 0.4px;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-left {
        padding: 0 1.5rem !important;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
        margin-bottom: 1rem;
    }

    .hero-title div {
        white-space: nowrap;
    }

    .hero-line {
        margin: 1.5rem auto;
    }

    .hero-subtitle {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-image {
        max-width: 300px;
    }

    .experience-years {
        position: static;
        margin-top: 2rem;
    }

    .year-number {
        font-size: 6rem;
        -webkit-text-stroke: 2px var(--dark-green);
        text-stroke: 2px var(--dark-green);
    }

    .year-line-img {
        width: 100px;
    }
}

/* Mobile Dropdown Fix */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        width: 100%;
        margin-top: 0.5rem;
        transform: none !important;
    }

    .navbar-collapse {
        margin-top: 1rem;
        background: rgba(90, 119, 102, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 35, 0.37);
        border: 1px solid rgba(248, 243, 225, 0.1);
    }

    .btn-products {
        width: 100%;
        margin: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .recycle-img {
        width: 32px;
        height: 32px;
    }

    .hero {
        min-height: auto;
        padding-bottom: 0.5rem;
        padding-top: 110px;
    }

    .hero-row {
        min-height: auto;
        margin: 0;
    }

    .hero-content {
        margin-top: 0.5rem;
        padding: 0;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.1;
        font-weight: 800;
        letter-spacing: -0.5px;
    }

    .hero-title div {
        white-space: nowrap;
    }

    .hero-container {
        padding: 0 10px;
    }

    .hero-line {
        margin: 0.8rem auto;
        width: 234px;
    }

    .hero-line-img {
        max-width: 234px;
    }

    .hero-subtitle {
        margin-bottom: 0;
        font-size: 1.5rem;
    }

    .hero-left {
        padding: 0 10px;
        padding-top: 1rem;
    }

    .hero-image-wrapper {
        max-width: calc(100vw - 30px);
        padding: 0 15px;
        margin: 0 auto;
    }

    .hero-image {
        max-width: 100%;
        width: 100%;
    }

    .scroll-down-mobile {
        margin: 0.3rem 0 0.5rem 0;
        font-size: 1.2rem;
    }

    .section-header {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .year-number {
        font-size: 5rem;
            -webkit-text-stroke: 1px var(--cream);
        text-stroke: 2px var(--dark-green);
    }

    .year-line-img {
        width: 80px;
    }

    .year-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .recycle-img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 105px;
        padding-bottom: 0;
    }

    .hero-left {
        padding: 0 10px;
        padding-top: 0.5rem;
    }

    .hero-container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 0;
        margin-bottom: 0.4rem;
        line-height: 1.15;
        font-weight: 800;
    }

    .hero-title div {
        white-space: nowrap;
    }

    .hero-line {
        width: 208px;
        margin: 0.6rem auto;
    }

    .hero-line-img {
        max-width: 208px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 0;
    }

    .hero-content {
        margin-top: 0.4rem;
    }

    .hero-image-wrapper {
        max-width: calc(100vw - 30px);
        padding: 0 15px;
        margin: 0 auto;
    }

    .hero-image {
        max-width: 100%;
        width: 100%;
    }

    .scroll-down-mobile {
        margin: 0.2rem 0 0.3rem 0;
        font-size: 1rem;
    }

    .scroll-down {
        margin-top: 0.8rem;
        font-size: 1.5rem;
    }

    .recycle-icon {
        font-size: 1rem;
    }
}

/* ===== Product List Pages (Dux Plast, Go-Bin) ===== */
.product-list-hero {
    padding: 0;
    margin: 0;
    position: relative;
    overflow: visible;
    padding-top: 60px;
}

.hero-content-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 440px;
    position: relative;
    clip-path: url(#wave-clip);
}

.hero-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: -1;
}

.hero-left-image {
    width: 50%;
    background-image: url('resimler/hero3.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    margin-top: -100px;
    padding-top: 100px;
}

.hero-right-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    background: #dc2626;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%);
    padding: 80px 80px 80px 120px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    z-index: 2;
}

.hero-right-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0;
}

.no-wrap {
    white-space: nowrap;
}

.hero-right-content h1 em {
    font-style: italic;
    font-weight: 800;
    display: block;
    font-size: 1.2em;
}

.product-list-section {
    padding: 8px 0;
    background-color: #f8f3e1;
}

.section-title-main {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #5a6c57;
    margin-bottom: 3rem;
    text-align: left;
}

.feature-item {
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.feature-image {
    flex: 0 0 185px;
    width: 185px;
    height: auto;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.feature-content {
    flex: 1;
    padding: 0;
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #5a6c57;
    margin-bottom: 0.5rem;
}

.feature-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #5a6c57;
    margin-bottom: 1.5rem;
}

.feature-specs {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.8;
    color: #5a6c57;
}

.feature-specs p {
    margin: 0.3rem 0;
}

.feature-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #587565;
}

.badge-sustainability {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.cta-section {
    background: #f8f3e1;
    color: #5a6c57;
    padding: 60px 0;
    text-align: right;
}

.cta-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.cta-arrow {
    font-size: 2.5rem;
    font-weight: normal;
    margin-left: 1rem;
}

.home-icon {
    color: #5a6c57;
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Go-Bin Hero Specific */
.hero-content-inner {
    max-width: 1140px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    gap: 40px;
}

.hero-left-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-gobin-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.hero-badge {
    background: #4a90e2;
    color: white;
    padding: 10px 20px;
    transform: rotate(-5deg);
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.hero-badge span:first-child {
    margin-bottom: -5px;
}

.hero-right-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-right-side img {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===== Detail Pages (Ultra Güçlü, Tıbbi Atık, Özel Ebat) ===== */
.detail-hero {
    background: #5a6c57;
    padding: 120px 0 60px 0;
    margin: 0;
    position: relative;
    clip-path: url(#wave-clip-detail);
}

.detail-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #f8f3e1;
    margin: 0;
    text-align: center;
}

.detail-content {
    background: #f8f3e1;
    padding: 60px 0;
}

.detail-section {
    margin-bottom: 60px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

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

.detail-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    margin-top: 5px;
}

.detail-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #5a6c57;
    margin-bottom: 5px;
}

.detail-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #5a6c57;
    line-height: 1.6;
}

.detail-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #5a6c57;
    line-height: 1.8;
    margin-bottom: 40px;
}

.detail-text h3 {
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 30px;
}

.detail-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.detail-footer-item {
    text-align: center;
}

.detail-footer-item img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.detail-footer-item h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #5a6c57;
}

/* ===== About Page (Hakkımızda) ===== */
.about-hero {
    background: #5a6c57;
    padding: 120px 0 60px 0;
    margin: 0;
    position: relative;
    clip-path: url(#wave-clip-detail);
}

.about-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #f8f3e1;
    margin: 0;
    text-align: center;
}

.about-content {
    background: #f8f3e1;
    padding: 80px 0;
}

.about-content .about-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2;
    color: #5a6c57;
    margin-bottom: 1.5rem;
}

.about-content .experience-years {
    padding: 40px;
}

/* ===== Contact Page (İletişim) ===== */
.contact-hero {
    background: #5a6c57;
    padding: 120px 0 60px 0;
    margin: 0;
    position: relative;
    clip-path: url(#wave-clip-detail);
}

.contact-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #f8f3e1;
    margin: 0;
    text-align: center;
}

.contact-content {
    background: #f8f3e1;
    padding: 60px 0;
}

.contact-info {
    background: linear-gradient(135deg, rgba(90, 119, 102, 0.08) 0%, rgba(90, 119, 102, 0.04) 100%);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(90, 119, 102, 0.1);
    border: 1px solid rgba(90, 119, 102, 0.12);
}

.contact-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #475e51;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: #5a7766;
    flex-shrink: 0;
}

.contact-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #475e51;
    line-height: 1.6;
}

.contact-text a {
    color: #5a7766;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #475e51;
    text-decoration: underline;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.hours-table {
    width: 100%;
    margin-top: 20px;
}

.hours-table td {
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #475e51;
    border-bottom: 1px solid rgba(90, 119, 102, 0.15);
}

.hours-table td:first-child {
    font-weight: 600;
    width: 40%;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

/* Dux Plast specific feature image width */
.duxplast-page .feature-image {
    flex: 0 0 264px;
    width: 264px;
}

.duxplast-page .feature-title {
    font-size: 1.5rem;
    color: #587565;
}

/* ===== Responsive Styles for Detail/Product Pages ===== */
@media (max-width: 992px) {
    .hero-content-wrapper {
        min-height: 280px;
        clip-path: url(#wave-clip-mobile);
    }

    .hero-content-inner {
        gap: 30px;
    }

    .hero-left-image {
        width: 50%;
        min-height: 240px;
        margin-top: 0;
        padding-top: 0;
    }

    .hero-right-content {
        width: 65%;
        right: 0;
        left: auto;
        padding: 40px 0 40px 25%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%);
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
    }

    .hero-right-content h1 {
        font-size: clamp(1.2rem, 3vw, 2rem);
    }

    .hero-left-side {
        padding-left: 0;
    }

    .hero-gobin-logo {
        max-width: 220px;
    }

    .hero-right-side {
        padding-right: 0;
    }

    .hero-right-side img {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .detail-hero h1,
    .about-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    .detail-grid,
    .detail-footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-right-content h1 {
        font-size: 2rem;
    }

    .hero-right-content {
        padding: 40px 20px;
    }

    .hero-left-image {
        min-height: 250px;
    }

    .hero-content-wrapper {
        margin-top: 0;
        padding-top: 0;
        min-height: 250px;
    }

    .hero-content-inner {
        gap: 20px;
        padding: 30px 15px;
    }

    .hero-gobin-logo {
        max-width: 150px;
    }

    .hero-right-side img {
        max-width: 150px;
    }

    .feature-item {
        flex-direction: column;
    }

    .feature-image {
        width: 100%;
        flex: 0 0 auto;
    }

    .duxplast-page .feature-image {
        width: 100%;
        flex: 0 0 auto;
    }

    .section-title-main {
        font-size: 2rem;
    }

    .cta-section h3 {
        font-size: 2rem;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .map-container iframe {
        height: 350px;
    }

    .about-content .about-text {
        font-size: 1rem;
    }

    .ozelebat-page .detail-content .row {
        flex-direction: column;
    }

    .ozelebat-page .detail-content .col-md-6 {
        width: 100%;
        padding: 0 15px;
        margin-bottom: 2rem;
    }

    .ozelebat-page .detail-content img {
        max-width: 100% !important;
        display: block;
        margin: 0 auto;
    }
}

/* ===== Go-Bin Page Specific Styles ===== */
.gobin-page .hero-content-wrapper {
    background: #3f5b4b;
    align-items: center;
    justify-content: center;
}

.gobin-page .hero-content-wrapper::before {
    display: none;
}

/* ===== Hakkımızda Page Specific Styles ===== */
.hakkimizda-page .year-number {
    -webkit-text-stroke: 1px #5a6c57;
    text-stroke: 3px #5a6c57;
}

.hakkimizda-page .year-text {
    color: #5a6c57;
}

.hakkimizda-page .year-line-img {
    filter: none;
    opacity: 1;
}

/* ===== Tıbbi Atık & Özel Ebat Pages - Refined Typography ===== */
.tibbiatik-page .detail-text h3,
.ozelebat-page .detail-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.9;
    color: #5a6c57;
    margin-bottom: 20px;
    margin-top: 20px;
    letter-spacing: 0.3px;
}

.tibbiatik-page .detail-text p,
.ozelebat-page .detail-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: #5a6c57;
    letter-spacing: 0.2px;
}

.tibbiatik-page .detail-hero h1,
.ozelebat-page .detail-hero h1 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .tibbiatik-page .detail-text h3,
    .ozelebat-page .detail-text h3 {
        font-size: 1rem;
    }
    
    .tibbiatik-page .detail-text p,
    .ozelebat-page .detail-text p {
        font-size: 0.95rem;
    }
}
