:root {
    --navy-dark: #0a1628;
    --navy: #0d2137;
    --navy-light: #1a3a5c;
    --gold: #c9a962;
    --gold-light: #e8d5a3;
    --white: #ffffff;
    --gray-light: #f5f7fa;
    --gray: #8a9ab0;
    --text-dark: #1a1a2e;
}

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

html {
    scroll-behavior: smooth;
}

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

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem 0.75rem;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.menu-btn:hover {
    color: var(--gold);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.menu-icon span {
    display: block;
    height: 2px;
    min-height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.menu-icon span:nth-child(2) {
    width: 70%;
}

.menu-btn:hover .menu-icon span:nth-child(2) {
    width: 100%;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
    transition: fill 0.3s ease;
}

.logo:hover .logo-icon svg {
    fill: var(--gold);
}

.logo-image {
    height: 75px;
    width: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: var(--gold);
}

.back-btn svg {
    width: 16px;
    height: 16px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.lang-selector:hover {
    color: var(--gold);
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.7) 0%,
        rgba(10, 22, 40, 0.6) 50%,
        rgba(10, 22, 40, 0.8) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    animation: fadeInUp 1.2s ease forwards;
}

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

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    animation: bounce 2s infinite;
}

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

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

/* ABOUT SECTION - Hikayemiz */
.about {
    position: relative;
    padding: 8rem 3rem;
    background: linear-gradient(165deg, #fafbfc 0%, #f0f4f8 45%, #e8eef5 100%);
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%230a1628' stroke-width='0.5'/%3E%3C/svg%3E");
    pointer-events: none;
}

.about-inner {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

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

.about-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.about-label-line {
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto 1.5rem;
    border-radius: 1px;
}

.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 1px;
    margin: 0;
}

.about-card {
    position: relative;
    background: var(--white);
    padding: 3.5rem 3rem 4rem;
    text-align: left;
    box-shadow: 0 8px 40px rgba(10, 22, 40, 0.08), 0 2px 12px rgba(10, 22, 40, 0.04);
    border: 1px solid rgba(201, 169, 98, 0.15);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.about-card:hover {
    box-shadow: 0 16px 56px rgba(10, 22, 40, 0.1), 0 4px 20px rgba(10, 22, 40, 0.06);
}

.about-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 0 2px 2px 0;
}

.about-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 400;
    line-height: 1.85;
    color: var(--navy);
}

.about-lead {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 500;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.25);
}

.about-text p {
    margin-bottom: 1.75rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-closing {
    font-style: italic;
    color: var(--navy-light);
    margin-top: 2rem !important;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.about-text strong {
    color: var(--gold);
    font-weight: 600;
}

/* Genel bölüm etiketi (Modellerimiz, İletişim, Haberler vb.) */
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* BOATS SECTION */
.boats {
    padding: 6rem 0 0;
    background: var(--gray-light);
}

.boats-header {
    text-align: center;
    padding: 0 3rem;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--navy);
    letter-spacing: 2px;
}

.boats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 0;
}

.boat-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.boat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.boat-card:hover img {
    transform: scale(1.1);
}

.boat-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0) 0%,
        rgba(10, 22, 40, 0.7) 100%
    );
}

.boat-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    color: var(--white);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.boat-card:hover .boat-card-content {
    transform: translateY(-20px);
}

.boat-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
    display: block;
}

.boat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.boat-specs {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.boat-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.boat-link:hover {
    color: var(--gold);
}

.boat-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.boat-link:hover svg {
    transform: translateX(5px);
}

/* STATS */
.stats {
    padding: 6rem 3rem;
    background: var(--navy-dark);
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

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

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
}

/* NEWS */
.news {
    padding: 6rem 3rem;
    background: var(--gray-light);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: var(--gold);
}

.view-all svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.view-all:hover svg {
    transform: translateX(5px);
}

.news-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

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

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

.news-card-content {
    padding: 2rem;
}

.news-date {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.news-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* CONTACT CTA */
.contact-cta {
    padding: 8rem 3rem;
    background: var(--navy);
    text-align: center;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-content .section-label {
    color: var(--gold);
}

.contact-cta-content .section-title {
    color: var(--white);
}

.contact-cta-text {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    background: var(--gold);
    color: var(--navy-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.cta-button:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.cta-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* PARTNERS SECTION */
.partners-section {
    padding: 4rem 2rem;
    background: var(--gray-light);
    overflow: hidden;
}

.partners-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.partners-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 3rem;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-track {
    display: flex;
    animation: scroll-partners 30s linear infinite;
    gap: 4rem;
    align-items: center;
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 120px;
    width: 200px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* FOOTER */
footer {
    background: var(--navy-dark);
    padding: 5rem 3rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-image {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--navy-light);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-column h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-column a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--navy-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 3rem; /* ~2-3 cm ekstra aşağıya alan */
    box-sizing: border-box;
    background: var(--navy-dark);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.mobile-menu nav {
    text-align: center;
}

.mobile-menu nav a {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    padding: 1rem 1.5rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu nav a:hover {
    color: var(--gold);
}

/* LEGAL PAGES - IMPROVED DESIGN */
.legal-content {
    padding: 0;
}

.legal-hero {
    width: 100%;
    padding: 12rem 3rem 6rem;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    text-align: center;
    color: var(--white);
    margin-bottom: 4rem;
}

.legal-hero .section-label {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.legal-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.legal-hero .last-updated {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.legal-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem 6rem;
}

.legal-section {
    background: var(--white);
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.legal-section:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.legal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2rem;
    margin-top: 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-content h2::before {
    content: '';
    width: 6px;
    height: 35px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 3px;
    flex-shrink: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-light);
    margin-bottom: 1.2rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-content h3::before {
    content: '▸';
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
    background: var(--gray-light);
    padding: 1.5rem 2rem 1.5rem 3rem;
    border-radius: 4px;
}

.legal-content li {
    margin-bottom: 0.9rem;
    line-height: 1.8;
    position: relative;
}

.legal-content ul li::marker {
    color: var(--gold);
    font-size: 1.2em;
}

.legal-content ol li::marker {
    color: var(--gold);
    font-weight: 600;
}

.legal-content strong {
    color: var(--navy);
    font-weight: 600;
    background: linear-gradient(180deg, transparent 60%, rgba(201, 169, 98, 0.2) 60%);
}

.legal-content a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    font-weight: 500;
}

.legal-content a:hover {
    color: var(--navy);
    border-bottom-color: var(--navy);
}

/* İletişim Bilgi Kutusu */
.legal-contact-box {
    background: linear-gradient(135deg, var(--gray-light) 0%, #e8f0f7 100%);
    padding: 2.5rem;
    border-left: 4px solid var(--gold);
    margin: 2.5rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.legal-contact-box strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    background: none;
}

.legal-contact-box p {
    margin-bottom: 0;
}

/* Tablo Stilleri */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2.5rem 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

th {
    padding: 1.5rem 1.2rem;
    text-align: left;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border-bottom: 3px solid var(--gold);
}

td {
    padding: 1.3rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
    color: var(--text-dark);
}

tbody tr {
    transition: all 0.3s ease;
}

tbody tr:hover {
    background: var(--gray-light);
    transform: translateX(3px);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero {
        padding: 10rem 1.5rem 4rem;
    }

    .legal-main {
        padding: 0 1.5rem 4rem;
    }

    .legal-section {
        padding: 2rem 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.6rem;
    }

    .legal-content h2::before {
        height: 28px;
    }

    .legal-content h3 {
        font-size: 1.15rem;
    }

    .legal-content ul,
    .legal-content ol {
        margin-left: 1rem;
        padding: 1.2rem 1.5rem;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 1rem 0.8rem;
    }

    .legal-contact-box {
        padding: 1.8rem;
    }
}
/* RESPONSIVE */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .boats-grid {
        grid-template-columns: 1fr;
    }

    .boat-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    header.scrolled {
        padding: 0.75rem 1.5rem;
    }

    .header-right {
        gap: 1rem;
    }

    /* Mobilde menü butonu daha görünür */
    .menu-btn {
        min-width: 48px;
        min-height: 48px;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 6px;
    }

    .menu-btn:hover,
    .menu-btn:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(201, 169, 98, 0.5);
        color: var(--gold-light);
    }

    .menu-icon {
        width: 26px;
    }

    .menu-icon span {
        height: 2.5px;
        background: var(--white);
    }

    .mobile-menu {
        padding-bottom: 5rem; /* Mobilde ~2-3 cm ekstra aşağı alan */
    }

    .mobile-menu nav a {
        font-size: 1.75rem;
        padding: 1.25rem 1.5rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-image {
        height: 35px;
        width: auto;
    }

    .about {
        padding: 5rem 1.5rem;
    }

    .about-card {
        padding: 2.5rem 1.5rem 3rem;
    }

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

    .boats,
    .news {
        padding: 4rem 0 0;
    }

    .boats-header,
    .news-header {
        padding: 0 1.5rem;
    }

    .stats {
        padding: 4rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .news-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .contact-cta {
        padding: 5rem 1.5rem;
    }

    footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .legal-content {
        padding: 8rem 1.5rem 4rem;
    }

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

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content ul,
    .legal-content ol {
        margin-left: 1.5rem;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .menu-btn .menu-text {
        display: none;
    }

    .hero-title {
        letter-spacing: 4px;
    }

    .hero-subtitle {
        letter-spacing: 2px;
    }

    .boat-card {
        height: 350px;
    }

    .news-card-image {
        height: 200px;
    }

    .partners-section {
        padding: 3rem 1rem;
    }

    .partners-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .partner-item {
        width: 150px;
        height: 100px;
        padding: 1rem;
    }

    .partner-item img {
        max-height: 60px;
    }
}

/* NEWS PAGES - HABERLER.PHP & HABER-YAZI.PHP */

/* News Hero */
.news-hero {
    width: 100%;
    padding: 12rem 3rem 6rem;
    background: linear-gradient(135deg, #2c3a51 0%, var(--navy) 100%);
    text-align: center;
    color: var(--white);
    margin-bottom: 4rem;
}

.news-hero .section-label {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.news-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.news-hero p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* News List Section */
.news-list-section {
    padding: 4rem 3rem 6rem;
    background: var(--white);
}

.news-list-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.news-list-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.news-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.news-list-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.news-list-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.news-list-content .news-date {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.news-list-content .news-category {
    display: inline-block;
    background: var(--gold-light);
    color: var(--navy-dark);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-list-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
    margin: 1rem 0;
    line-height: 1.3;
}

.news-list-excerpt {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    color: var(--navy);
    gap: 1rem;
}

.news-read-more svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.news-read-more:hover svg {
    transform: translateX(5px);
}

/* ARTICLE PAGE - HABER-YAZI.PHP */

.article-page {
    background: var(--white);
}

/* Article Hero - Sadece arka plan */
.article-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    overflow: hidden;
}

.article-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.6);
}

/* Article Container */
.article-container {
    max-width: 1400px;
    margin: -8rem auto 6rem;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    position: relative;
    z-index: 20;
}

/* Article Content */
.article-content {
    background: var(--white);
    padding: 4rem;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
}

/* Article Header - Başlık ve görsel içeride */
.article-header {
    margin-bottom: 3rem;
}

.article-featured-image {
    width: 100%;
    height: 500px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-date {
    font-size: 0.9rem;
    color: var(--gray);
}

.article-category {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: var(--navy);
}

.article-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--navy-light);
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gold-light);
    margin-bottom: 3rem;
}

.article-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy);
    margin: 3rem 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold-light);
}

.article-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy-light);
    margin: 2rem 0 1rem;
}

.article-body p {
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.article-body strong {
    color: var(--navy);
    font-weight: 600;
}

.article-body a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    transition: all 0.3s ease;
}

.article-body a:hover {
    color: var(--navy);
    border-bottom-color: var(--navy);
}

.article-body ul {
    margin: 2rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.article-highlight {
    background: var(--gray-light);
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid var(--gold);
}

.article-highlight h3 {
    margin-top: 0;
    color: var(--navy);
}

.article-cta {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.article-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
    margin-top: 0;
}

.article-cta p {
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.article-cta .cta-button {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 1.2rem 3rem;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.article-cta .cta-button:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.article-cta .cta-button svg {
    width: 18px;
    height: 18px;
}

/* Article Footer */
.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 2px solid var(--gray-light);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-share span {
    font-weight: 600;
    color: var(--navy);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-light);
    color: var(--navy);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.back-to-news {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-news:hover {
    color: var(--gold);
    gap: 1rem;
}

.back-to-news svg {
    width: 20px;
    height: 20px;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold-light);
}

.related-news-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.related-news-item:hover {
    padding-left: 0.5rem;
}

.related-news-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-news-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0.5rem 0 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-news-item:hover h4 {
    color: var(--gold);
}

.related-date {
    font-size: 0.75rem;
    color: var(--gray);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--gray-light);
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: var(--gold-light);
    padding-left: 1.5rem;
}

.category-list span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 1rem;
    background: var(--white);
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--gray-light);
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--gold-light);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.page-link.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.page-link.page-next svg {
    width: 18px;
    height: 18px;
}

}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--gray-light);
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: var(--gold-light);
    padding-left: 1.5rem;
}

.category-list span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .news-list-card {
        grid-template-columns: 350px 1fr;
    }
}

@media (max-width: 992px) {
    .news-list-card {
        grid-template-columns: 1fr;
    }

    .news-list-image {
        min-height: 250px;
    }

    .article-container {
        grid-template-columns: 1fr;
        margin-top: -4rem;
    }

    .article-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .news-hero {
        padding: 10rem 1.5rem 4rem;
    }

    .news-list-section {
        padding: 3rem 1.5rem;
    }

    .news-list-content {
        padding: 2rem;
    }

    .article-hero {
        height: 50vh;
        min-height: 400px;
    }

    .article-hero-content {
        padding: 3rem 1.5rem;
    }

    .article-container {
        padding: 0 1.5rem;
    }

    .article-content {
        padding: 2rem;
    }

    .article-footer {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
}
