:root {
    --dark-blue: #020f1f;
    --navy: #06182c;
    --gold: #d9a85d;
    --light-gold: #efc479;
    --white: #ffffff;
    --text-light: #d4d8df;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark-blue);
    color: var(--white);
    font-family: "Montserrat", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.header {
    width: 100%;
    height: 82px;
    background: rgba(2, 15, 31, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1000;
}

.header-container {
    width: min(1320px, calc(100% - 60px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 190px;
}

.logo-symbol {
    color: var(--gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 55px;
    font-weight: 600;
    line-height: 1;
    position: relative;
}

.logo-symbol::after {
    content: "";
    width: 1px;
    height: 43px;
    background: var(--gold);
    position: absolute;
    left: 20px;
    top: 3px;
    transform: rotate(33deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    letter-spacing: 5px;
}

.logo-text strong {
    font-size: 18px;
    font-weight: 500;
}

.logo-text span {
    margin-top: 5px;
    font-size: 9px;
    letter-spacing: 4px;
}

.desktop-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.desktop-menu a {
    font-size: 11px;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
}

.desktop-menu a i {
    margin-left: 5px;
    font-size: 7px;
}

.desktop-menu a:hover,
.desktop-menu a.active {
    color: var(--gold);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.language {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 10px;
}

.language i {
    color: var(--gold);
    font-size: 7px;
}

.offer-button {
    height: 44px;
    padding: 0 21px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: var(--light-gold);
    font-size: 11px;
    font-weight: 600;
    transition: 0.3s;
}

.offer-button:hover {
    background: var(--gold);
    color: var(--dark-blue);
}

.mobile-menu-button {
    display: none;
    border: none;
    background: transparent;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
}

/* Hero alanı */

.hero {
    min-height: 620px;
    position: relative;
    background-image: url("../images/hero-yacht.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2, 15, 31, 0.92) 0%,
            rgba(2, 15, 31, 0.63) 37%,
            rgba(2, 15, 31, 0.08) 75%
        ),
        linear-gradient(
            0deg,
            rgba(2, 15, 31, 0.5) 0%,
            transparent 45%
        );
}

.hero-container {
    width: min(1320px, calc(100% - 120px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 520px;
}

.hero-small-title {
    color: var(--light-gold);
    font-size: 13px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 21px;
}

.hero-small-title span {
    width: 38px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 68px;
    line-height: 0.88;
    font-weight: 600;
    letter-spacing: -1px;
}

.hero h1 strong {
    display: block;
    color: var(--light-gold);
    font-weight: 600;
    margin-top: 13px;
}

.hero p {
    width: 470px;
    margin-top: 27px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 35px;
}

.primary-button,
.secondary-button {
    min-width: 190px;
    height: 52px;
    padding: 0 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.primary-button {
    background: var(--light-gold);
    color: var(--dark-blue);
    border: 1px solid var(--light-gold);
}

.primary-button:hover {
    background: var(--gold);
}

.secondary-button {
    border: 1px solid var(--light-gold);
    color: var(--white);
}

.secondary-button:hover {
    background: var(--light-gold);
    color: var(--dark-blue);
}

.slider-arrow {
    width: 45px;
    height: 60px;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 25px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
}

.slider-arrow-left {
    left: 25px;
}

.slider-arrow-right {
    right: 25px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(-50%);
}

.slider-dots button {
    width: 7px;
    height: 7px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
}

.slider-dots button.active {
    background: var(--light-gold);
}

/* Tablet */

@media (max-width: 1150px) {

    .desktop-menu {
        gap: 17px;
    }

    .desktop-menu a {
        font-size: 9px;
    }

    .language {
        display: none;
    }

}

/* Mobil */

@media (max-width: 900px) {

    .header {
        height: 72px;
    }

    .header-container {
        width: calc(100% - 36px);
    }

    .desktop-menu,
    .offer-button {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .logo {
        min-width: auto;
    }

    .logo-symbol {
        font-size: 45px;
    }

    .logo-text strong {
        font-size: 15px;
    }

    .logo-text span {
        font-size: 7px;
    }

    .mobile-menu {
        width: 100%;
        padding: 20px;
        background: var(--navy);
        position: absolute;
        top: 72px;
        left: 0;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-menu.show {
        display: flex;
    }

    .mobile-menu a {
        padding: 15px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 13px;
    }

    .mobile-menu .mobile-offer {
        margin-top: 15px;
        border: 1px solid var(--gold);
        color: var(--gold);
        text-align: center;
    }

    .hero {
        min-height: 650px;
        background-position: 62% center;
        align-items: flex-end;
        padding-bottom: 90px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(2, 15, 31, 0.98) 0%,
                rgba(2, 15, 31, 0.78) 48%,
                rgba(2, 15, 31, 0.18) 100%
            );
    }

    .hero-container {
        width: calc(100% - 44px);
    }

    .hero-content {
        width: 100%;
    }

    .hero-small-title {
        font-size: 11px;
    }

    .hero h1 {
        font-size: 49px;
        line-height: 0.95;
    }

    .hero p {
        width: 100%;
        font-size: 12px;
        line-height: 1.7;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .slider-arrow {
        display: none;
    }

}

/* Hizmet kartları */

.services-section {
    background: #020e1d;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.services-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.service-card {
    min-height: 265px;
    padding: 42px 40px 35px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.service-icon {
    height: 56px;
    margin-bottom: 16px;
    color: var(--light-gold);
    font-size: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    margin-bottom: 14px;
    font-size: 17px;
    font-weight: 500;
}

.service-card p {
    max-width: 230px;
    min-height: 60px;
    color: #bec4cd;
    font-size: 12px;
    line-height: 1.7;
}

.service-card a {
    margin-top: 20px;
    color: var(--light-gold);
    font-size: 11px;
    font-weight: 600;
    transition: 0.3s;
}

.service-card a i {
    margin-left: 8px;
    font-size: 10px;
}

.service-card a:hover {
    color: var(--white);
}

@media (max-width: 900px) {

    .services-container {
        width: calc(100% - 36px);
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        min-height: 245px;
        padding: 35px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .service-card:nth-child(2) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

}

@media (max-width: 560px) {

    .services-container {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
        padding: 38px 25px;
        border-left: none;
        border-right: none;
    }

    .service-card:last-child,
    .service-card:nth-child(2) {
        border-right: none;
    }

    .service-card p {
        min-height: auto;
    }

}

/* Hakkımızda bölümü */

.about-section {
    background: #031120;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.about-content {
    padding: 85px max(55px, calc((100vw - 1320px) / 2));
    padding-right: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-small-title {
    margin-bottom: 24px;
    color: var(--light-gold);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.section-small-title i {
    width: 42px;
    height: 1px;
    background: var(--gold);
    display: block;
}

.about-content h2 {
    margin-bottom: 25px;
    font-family: "Cormorant Garamond", serif;
    font-size: 43px;
    line-height: 1.05;
    font-weight: 600;
}

.about-content p {
    max-width: 530px;
    color: #c1c7d0;
    font-size: 13px;
    line-height: 1.9;
}

.outline-button {
    width: 165px;
    height: 49px;
    margin-top: 30px;
    padding: 0 18px;
    border: 1px solid var(--gold);
    color: var(--light-gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    transition: 0.3s;
}

.outline-button:hover {
    background: var(--gold);
    color: var(--dark-blue);
}

.about-image {
    min-height: 500px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 900px) {

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 65px 35px;
    }

    .about-image {
        min-height: 420px;
    }

}

@media (max-width: 560px) {

    .about-content {
        padding: 50px 22px;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-content p {
        font-size: 12px;
    }

    .about-image {
        min-height: 300px;
    }

}

/* Öne çıkan yatlar */

.featured-yachts {
    padding: 70px 0 55px;
    background: #020e1d;
}

.featured-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.featured-header {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.featured-header .section-small-title {
    margin-bottom: 10px;
}

.featured-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 600;
}

.view-all-link {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    transition: 0.3s;
}

.view-all-link i {
    margin-left: 8px;
    color: var(--gold);
}

.view-all-link:hover {
    color: var(--light-gold);
}

.yacht-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.yacht-card {
    background: #061629;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: 0.3s;
}

.yacht-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 168, 93, 0.65);
}

.yacht-image {
    height: 215px;
    position: relative;
    overflow: hidden;
}

.yacht-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(2, 14, 29, 0.8) 0%,
        transparent 55%
    );
}

.yacht-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.5s;
}

.yacht-card:hover .yacht-image img {
    transform: scale(1.05);
}

.yacht-badge {
    padding: 7px 10px;
    background: var(--light-gold);
    color: var(--dark-blue);
    position: absolute;
    top: 11px;
    left: 11px;
    z-index: 2;
    font-size: 9px;
    font-weight: 700;
}

.favorite-button {
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    color: var(--white);
    position: absolute;
    top: 7px;
    right: 7px;
    z-index: 2;
    font-size: 20px;
    cursor: pointer;
}

.favorite-button:hover {
    color: var(--light-gold);
}

.yacht-info {
    padding: 22px 18px 20px;
}

.yacht-info h3 {
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 600;
}

.yacht-features {
    margin-bottom: 19px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #b8c0cb;
    font-size: 10px;
}

.yacht-features span {
    white-space: nowrap;
}

.yacht-features i {
    margin-right: 4px;
    color: #9ea9b5;
}

.yacht-price {
    color: var(--light-gold);
    font-size: 18px;
    font-weight: 600;
}

.yacht-slider-controls {
    margin-top: 23px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.yacht-slider-controls button {
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: 0.3s;
}

.yacht-slider-controls button:hover {
    color: var(--gold);
}

@media (max-width: 1100px) {

    .yacht-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

}

@media (max-width: 700px) {

    .featured-yachts {
        padding: 55px 0 45px;
    }

    .featured-container {
        width: calc(100% - 36px);
    }

    .featured-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .featured-header h2 {
        font-size: 34px;
    }

    .yacht-grid {
        grid-template-columns: 1fr;
    }

    .yacht-image {
        height: 240px;
    }

}

/* Teklif çağrı bölümü */

.cta-section {
    min-height: 440px;
    position: relative;
    background-image: url("../images/cta-yacht.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(2, 15, 31, 0.58),
            rgba(2, 15, 31, 0.78)
        );
}

.cta-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.cta-small-title {
    justify-content: center;
    margin-bottom: 20px;
}

.cta-small-title i {
    width: 35px;
}

.cta-content h2 {
    margin-bottom: 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: 51px;
    line-height: 1.05;
    font-weight: 600;
}

.cta-content p {
    max-width: 570px;
    margin: 0 auto;
    color: #d3d8df;
    font-size: 13px;
    line-height: 1.8;
}

.cta-button {
    width: 170px;
    height: 50px;
    margin: 30px auto 0;
    padding: 0 20px;
    background: var(--light-gold);
    border: 1px solid var(--light-gold);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    transition: 0.3s;
}

.cta-button:hover {
    background: transparent;
    color: var(--light-gold);
}

@media (max-width: 700px) {

    .cta-section {
        min-height: 430px;
        padding: 65px 0;
    }

    .cta-container {
        width: calc(100% - 40px);
    }

    .cta-small-title {
        font-size: 9px;
    }

    .cta-small-title i {
        width: 22px;
    }

    .cta-content h2 {
        font-size: 39px;
    }

    .cta-content p {
        font-size: 12px;
    }

}

/* Footer */

.footer {
    background: #010b17;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.footer-top {
    padding: 70px 0 55px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.15fr;
    gap: 70px;
}

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    width: fit-content;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-brand p {
    color: #aeb7c2;
    font-size: 12px;
    line-height: 1.9;
}

.footer-social {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(217, 168, 93, 0.45);
    color: var(--light-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--light-gold);
    color: var(--dark-blue);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    margin-bottom: 25px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
    position: absolute;
    left: 0;
    bottom: -9px;
}

.footer-column > a {
    margin-bottom: 13px;
    color: #aeb7c2;
    font-size: 12px;
    transition: 0.3s;
}

.footer-column > a:hover {
    color: var(--light-gold);
    padding-left: 4px;
}

.footer-contact {
    gap: 0;
}

.contact-item {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    color: #aeb7c2;
    font-size: 12px;
    line-height: 1.7;
}

.contact-item i {
    width: 15px;
    margin-top: 3px;
    color: var(--light-gold);
    text-align: center;
}

.contact-item a {
    transition: 0.3s;
}

.contact-item a:hover {
    color: var(--light-gold);
}

.footer-bottom {
    min-height: 72px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #7f8995;
    font-size: 10px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-bottom-links a {
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--light-gold);
}

@media (max-width: 1000px) {

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

}

@media (max-width: 600px) {

    .footer-container {
        width: calc(100% - 40px);
    }

    .footer-top {
        padding: 55px 0 40px;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        padding: 22px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 15px;
    }

}

/* Açılır navbar menüsü */

.nav-item {
    position: relative;
}

.nav-link {
    padding: 30px 0;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
}

.nav-link i {
    margin-left: 5px;
    font-size: 7px;
    transition: 0.3s;
}

.nav-item:hover .nav-link {
    color: var(--gold);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    width: 210px;
    padding: 10px 0;
    background: #06182c;
    border-top: 2px solid var(--gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    position: absolute;
    top: 70px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.25s;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    width: 100%;
    padding: 13px 18px;
    color: #d4d8df;
    display: block;
    font-size: 11px;
    font-weight: 500;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    padding-left: 23px;
    background: rgba(217, 168, 93, 0.08);
    color: var(--light-gold);
}

.mobile-menu-group {
    width: 100%;
}

.mobile-submenu-button {
    width: 100%;
    padding: 15px 8px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    cursor: pointer;
}

.mobile-submenu-button i {
    font-size: 10px;
    transition: 0.3s;
}

.mobile-submenu-button i.rotate {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    padding-left: 15px;
    background: rgba(255, 255, 255, 0.03);
}

.mobile-submenu.show {
    display: block;
}

.mobile-submenu a {
    padding: 13px 10px;
    color: #c4cad2;
    font-size: 12px;
}

/* İç sayfa üst alanı */

.page-hero {
    min-height: 350px;
    position: relative;
    background:
        url("../images/hero-yacht.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2, 15, 31, 0.96) 0%,
            rgba(2, 15, 31, 0.72) 45%,
            rgba(2, 15, 31, 0.35) 100%
        );
}

.page-hero-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-hero .section-small-title {
    margin-bottom: 16px;
}

.page-hero h1 {
    margin-bottom: 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    line-height: 1;
    font-weight: 600;
}

.page-hero p {
    max-width: 570px;
    color: #c7ced7;
    font-size: 13px;
    line-height: 1.8;
}

/* Referanslar alanı */

.references-section {
    padding: 80px 0;
    background: #020e1d;
}

.references-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.references-header {
    margin-bottom: 38px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 60px;
}

.references-header .section-small-title {
    margin-bottom: 12px;
}

.references-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 600;
}

.references-header > p {
    max-width: 520px;
    justify-self: end;
    color: #b8c0ca;
    font-size: 13px;
    line-height: 1.9;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.reference-card {
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #061629;
    overflow: hidden;
}

.reference-image {
    height: 360px;
    position: relative;
    overflow: hidden;
}

.reference-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reference-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(1, 10, 22, 0.96) 0%,
            rgba(1, 10, 22, 0.58) 35%,
            rgba(1, 10, 22, 0.08) 75%
        );
}

.reference-card:hover .reference-image img {
    transform: scale(1.07);
}

.reference-overlay {
    padding: 25px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.reference-overlay span {
    margin-bottom: 9px;
    color: var(--light-gold);
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.reference-overlay h3 {
    margin-bottom: 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-weight: 600;
}

.reference-overlay p {
    color: #bdc5cf;
    font-size: 11px;
}

@media (max-width: 1000px) {

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 700px) {

    .page-hero {
        min-height: 310px;
    }

    .page-hero-container,
    .references-container {
        width: calc(100% - 40px);
    }

    .page-hero h1 {
        font-size: 44px;
    }

    .references-section {
        padding: 60px 0;
    }

    .references-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .references-header h2 {
        font-size: 35px;
    }

    .references-header > p {
        justify-self: start;
    }

    .references-grid {
        grid-template-columns: 1fr;
    }

    .reference-image {
        height: 320px;
    }

}

@media (max-width: 420px) {

    .reference-image {
        height: 280px;
    }

    .reference-overlay {
        padding: 20px;
    }

    .reference-overlay h3 {
        font-size: 24px;
    }

}

/* İletişim sayfası */

.contact-section {
    padding: 75px 0 85px;
    background: #020e1d;
}

.contact-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.contact-cards {
    margin-bottom: 55px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card {
    min-height: 190px;
    padding: 32px 25px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: #051426;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card:last-child {
    border-right: none;
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border: 1px solid rgba(217, 168, 93, 0.5);
    color: var(--light-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-card h3 {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.contact-card p,
.contact-card a {
    color: #b8c0ca;
    font-size: 12px;
    line-height: 1.8;
}

.contact-card a {
    transition: 0.3s;
}

.contact-card a:hover {
    color: var(--light-gold);
}

.contact-main {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 620px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form-area {
    padding: 55px;
    background: #051426;
}

.contact-form-area .section-small-title {
    margin-bottom: 16px;
}

.contact-form-area h2 {
    margin-bottom: 17px;
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 600;
}

.contact-form-text {
    max-width: 520px;
    margin-bottom: 32px;
    color: #b8c0ca;
    font-size: 12px;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 9px;
    color: #e2e5e9;
    font-size: 11px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    outline: none;
    background: #071a30;
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    transition: 0.3s;
}

.form-group input,
.form-group select {
    height: 48px;
    padding: 0 15px;
}

.form-group textarea {
    min-height: 145px;
    padding: 15px;
    resize: vertical;
    line-height: 1.7;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #758090;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #071a30;
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.contact-submit-button {
    width: 190px;
    height: 50px;
    padding: 0 20px;
    border: 1px solid var(--light-gold);
    background: var(--light-gold);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.contact-submit-button:hover {
    background: transparent;
    color: var(--light-gold);
}

.contact-map-area {
    min-height: 620px;
    background: #071a30;
}

.contact-map-area iframe {
    width: 100%;
    height: 100%;
    min-height: 620px;
    border: none;
    display: block;
    filter: grayscale(25%) contrast(95%);
}

@media (max-width: 1000px) {

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card:nth-child(2) {
        border-right: none;
    }

    .contact-card:nth-child(1),
    .contact-card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .contact-main {
        grid-template-columns: 1fr;
    }

    .contact-map-area,
    .contact-map-area iframe {
        min-height: 430px;
    }

}

@media (max-width: 700px) {

    .contact-section {
        padding: 55px 0 65px;
    }

    .contact-container {
        width: calc(100% - 40px);
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: 165px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .contact-card:last-child {
        border-bottom: none;
    }

    .contact-form-area {
        padding: 38px 24px;
    }

    .contact-form-area h2 {
        font-size: 35px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-submit-button {
        width: 100%;
    }

    .contact-map-area,
    .contact-map-area iframe {
        min-height: 340px;
    }

}

/* Hakkımızda sayfası */

.about-page-section {
    padding: 85px 0;
    background: #020e1d;
}

.about-page-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 75px;
}

.about-page-image {
    height: 560px;
    position: relative;
    overflow: hidden;
}

.about-page-image::before {
    content: "";
    width: 80%;
    height: 80%;
    border: 1px solid rgba(217, 168, 93, 0.4);
    position: absolute;
    left: -18px;
    bottom: -18px;
    z-index: 0;
}

.about-page-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.about-page-content .section-small-title {
    margin-bottom: 17px;
}

.about-page-content h2 {
    margin-bottom: 25px;
    font-family: "Cormorant Garamond", serif;
    font-size: 46px;
    line-height: 1.08;
    font-weight: 600;
}

.about-page-content > p {
    margin-bottom: 18px;
    color: #b8c0ca;
    font-size: 13px;
    line-height: 1.9;
}

.about-page-features {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px 25px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #d1d6dd;
    font-size: 12px;
}

.about-feature i {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(217, 168, 93, 0.55);
    color: var(--light-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex-shrink: 0;
}

.about-page-content .outline-button {
    width: 175px;
    margin-top: 34px;
}

/* Hakkımızda istatistikleri */

.about-stats-section {
    background: #051426;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.about-stats-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.about-stat-card {
    min-height: 185px;
    padding: 35px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-stat-card:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat-card strong {
    margin-bottom: 12px;
    color: var(--light-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 47px;
    line-height: 1;
    font-weight: 600;
}

.about-stat-card span {
    color: #c7cdd5;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-align: center;
}

@media (max-width: 1000px) {

    .about-page-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-page-image {
        height: 500px;
    }

    .about-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stat-card:nth-child(2) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about-stat-card:nth-child(1),
    .about-stat-card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

}

@media (max-width: 700px) {

    .about-page-section {
        padding: 60px 0;
    }

    .about-page-container,
    .about-stats-container {
        width: calc(100% - 40px);
    }

    .about-page-image {
        height: 350px;
    }

    .about-page-content h2 {
        font-size: 37px;
    }

    .about-page-features {
        grid-template-columns: 1fr;
    }

    .about-page-content .outline-button {
        width: 100%;
    }

    .about-stats-container {
        grid-template-columns: 1fr;
    }

    .about-stat-card {
        min-height: 145px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about-stat-card:last-child {
        border-bottom: none;
    }

    .about-stat-card strong {
        font-size: 42px;
    }

}

/* Vizyon & Misyon sayfası */

.vision-mission-section {
    padding: 85px 0;
    background: #020e1d;
}

.vision-mission-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.vision-mission-card {
    min-height: 470px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #051426;
}

.vision-mission-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 28px;
    border: 1px solid rgba(217, 168, 93, 0.5);
    color: var(--light-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.vision-mission-card .section-small-title {
    margin-bottom: 18px;
}

.vision-mission-card h2 {
    margin-bottom: 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    line-height: 1.12;
    font-weight: 600;
}

.vision-mission-card p {
    margin-bottom: 17px;
    color: #b8c0ca;
    font-size: 13px;
    line-height: 1.9;
}

/* Değerler bölümü */

.values-section {
    padding: 80px 0;
    background: #051426;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.values-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.values-header {
    margin-bottom: 35px;
    text-align: center;
}

.values-header .section-small-title {
    justify-content: center;
    margin-bottom: 14px;
}

.values-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.value-card {
    min-height: 280px;
    padding: 38px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #020e1d;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card > i {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border: 1px solid rgba(217, 168, 93, 0.45);
    color: var(--light-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.value-card h3 {
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.value-card p {
    color: #aeb7c2;
    font-size: 12px;
    line-height: 1.8;
}

@media (max-width: 1000px) {

    .vision-mission-container {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 700px) {

    .vision-mission-section,
    .values-section {
        padding: 60px 0;
    }

    .vision-mission-container,
    .values-container {
        width: calc(100% - 40px);
    }

    .vision-mission-card {
        min-height: auto;
        padding: 35px 24px;
    }

    .vision-mission-card h2 {
        font-size: 33px;
    }

    .values-header h2 {
        font-size: 35px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: auto;
        padding: 35px 24px;
    }

}

/* Ekibimiz sayfası */

.team-section {
    padding: 85px 0;
    background: #020e1d;
}

.team-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.team-header {
    max-width: 680px;
    margin: 0 auto 42px;
    text-align: center;
}

.team-header .section-small-title {
    justify-content: center;
    margin-bottom: 14px;
}

.team-header h2 {
    margin-bottom: 17px;
    font-family: "Cormorant Garamond", serif;
    font-size: 43px;
    line-height: 1.1;
    font-weight: 600;
}

.team-header p {
    color: #b8c0ca;
    font-size: 13px;
    line-height: 1.9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.team-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #051426;
    overflow: hidden;
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 168, 93, 0.55);
}

.team-image {
    height: 360px;
    position: relative;
    overflow: hidden;
}

.team-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(2, 14, 29, 0.72) 0%,
            transparent 45%
        );
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 2;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(217, 168, 93, 0.55);
    background: rgba(2, 15, 31, 0.82);
    color: var(--light-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: 0.3s;
}

.team-social a:hover {
    background: var(--light-gold);
    color: var(--dark-blue);
}

.team-info {
    padding: 25px 22px 28px;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
}

.team-info > span {
    margin-bottom: 15px;
    color: var(--light-gold);
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.7px;
}

.team-info p {
    color: #aeb7c2;
    font-size: 11px;
    line-height: 1.8;
}

@media (max-width: 1100px) {

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 700px) {

    .team-section {
        padding: 60px 0;
    }

    .team-container {
        width: calc(100% - 40px);
    }

    .team-header h2 {
        font-size: 36px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 420px;
    }

    .team-social {
        opacity: 1;
        transform: none;
    }

}

@media (max-width: 450px) {

    .team-image {
        height: 350px;
    }

}

/* Yatlar sayfası hero alanı */

.yachts-page-hero {
    min-height: 330px;
    position: relative;
    background:
        url("../images/yachts-hero.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
}

.yachts-page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2, 15, 31, 0.95) 0%,
            rgba(2, 15, 31, 0.72) 42%,
            rgba(2, 15, 31, 0.15) 100%
        );
}

.yachts-page-hero-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.yachts-breadcrumb {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #d1d6dd;
    font-size: 11px;
}

.yachts-breadcrumb a {
    color: var(--white);
}

.yachts-breadcrumb a:hover {
    color: var(--light-gold);
}

.yachts-page-hero h1 {
    margin-bottom: 16px;
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    line-height: 1;
    font-weight: 600;
}

.yachts-page-hero p {
    color: #d0d5dc;
    font-size: 14px;
    line-height: 1.7;
}

.yachts-title-line {
    width: 50px;
    height: 2px;
    margin-top: 18px;
    background: var(--gold);
}

/* Listeleme alanı */

.yachts-listing-section {
    padding: 38px 0 70px;
    background: #020e1d;
}

.yachts-listing-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

/* Filtre paneli */

.yacht-filter-panel {
    padding: 22px 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #061426;
}

.filter-title {
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-title i {
    color: var(--light-gold);
    font-size: 15px;
}

.filter-title h2 {
    font-size: 14px;
    font-weight: 500;
}

.filter-group {
    margin-bottom: 22px;
}

.filter-group label {
    margin-bottom: 10px;
    display: block;
    color: #d6dbe1;
    font-size: 10px;
    font-weight: 500;
}

.filter-group select {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    outline: none;
    background: #07182b;
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
}

.filter-group input[type="range"] {
    width: 100%;
    accent-color: var(--light-gold);
    cursor: pointer;
}

.range-values {
    margin-top: 7px;
    display: flex;
    justify-content: space-between;
    color: #c7cdd5;
    font-size: 9px;
}

.filter-submit-button {
    width: 100%;
    height: 44px;
    margin-top: 4px;
    border: 1px solid var(--light-gold);
    background: var(--light-gold);
    color: var(--dark-blue);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.filter-submit-button:hover {
    background: transparent;
    color: var(--light-gold);
}

.filter-reset-button {
    margin-top: 16px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--light-gold);
    font-size: 10px;
    cursor: pointer;
}

.filter-reset-button i {
    margin-right: 6px;
}

/* Sağ sonuç alanı */

.yachts-results-area {
    min-width: 0;
}

.yachts-results-top {
    min-height: 46px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.yacht-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.yacht-tab {
    height: 44px;
    padding: 0 18px;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: #d5dae0;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.yacht-tab:hover,
.yacht-tab.active {
    color: var(--light-gold);
    border-bottom-color: var(--light-gold);
}

.yachts-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.yachts-toolbar > span {
    color: #b7c0ca;
    font-size: 9px;
}

.yachts-toolbar select {
    height: 38px;
    padding: 0 34px 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    outline: none;
    background: #07182b;
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
}

.view-button {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: #d4dae1;
    cursor: pointer;
    transition: 0.3s;
}

.view-button:hover,
.view-button.active {
    border-color: var(--gold);
    color: var(--light-gold);
}

/* Kart alanı */

.yachts-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

@media (max-width: 1100px) {

    .yachts-listing-container {
        grid-template-columns: 210px minmax(0, 1fr);
    }

    .yachts-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yachts-results-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .yachts-toolbar {
        width: 100%;
        justify-content: flex-end;
    }

}

@media (max-width: 800px) {

    .yachts-page-hero {
        min-height: 290px;
    }

    .yachts-page-hero-container,
    .yachts-listing-container {
        width: calc(100% - 40px);
    }

    .yachts-page-hero h1 {
        font-size: 46px;
    }

    .yachts-listing-container {
        grid-template-columns: 1fr;
    }

    .yacht-filter-panel {
        width: 100%;
    }

    .yachts-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .yachts-listing-section {
        padding-top: 28px;
    }

    .yachts-page-grid {
        grid-template-columns: 1fr;
    }

    .yachts-results-top {
        gap: 16px;
    }

    .yacht-tabs {
        width: 100%;
    }

    .yacht-tab {
        flex: 1;
        padding: 0 8px;
    }

    .yachts-toolbar {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .yachts-toolbar select {
        flex: 1;
    }

}

/* Yatlar sayfası kartları */

.listing-yacht-card {
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #061426;
    overflow: hidden;
    transition: 0.3s;
}

.listing-yacht-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 168, 93, 0.55);
}

.listing-yacht-image {
    height: 190px;
    position: relative;
    overflow: hidden;
}

.listing-yacht-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(2, 14, 29, 0.72) 0%,
            transparent 52%
        );
}

.listing-yacht-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s;
}

.listing-yacht-card:hover .listing-yacht-image img {
    transform: scale(1.05);
}

.listing-yacht-badge {
    padding: 7px 10px;
    position: absolute;
    top: 11px;
    left: 11px;
    z-index: 2;
    background: var(--light-gold);
    color: var(--dark-blue);
    font-size: 8px;
    font-weight: 700;
}

.listing-favorite-button {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(2, 15, 31, 0.55);
    color: var(--white);
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
}

.listing-favorite-button:hover {
    color: var(--light-gold);
}

.listing-yacht-content {
    padding: 18px 16px 17px;
}

.listing-yacht-type {
    margin-bottom: 8px;
    color: var(--light-gold);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.7px;
}

.listing-yacht-content h3 {
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 600;
}

.listing-yacht-features {
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b7c0ca;
    font-size: 8px;
}

.listing-yacht-features span {
    white-space: nowrap;
}

.listing-yacht-features i {
    margin-right: 3px;
    color: #98a5b3;
}

.listing-yacht-bottom {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.listing-yacht-bottom strong {
    color: var(--light-gold);
    font-size: 14px;
    font-weight: 600;
}

.listing-yacht-bottom a {
    color: #d9dee4;
    font-size: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.listing-yacht-bottom a i {
    margin-left: 5px;
    color: var(--light-gold);
}

.listing-yacht-bottom a:hover {
    color: var(--light-gold);
}

@media (max-width: 1100px) {

    .listing-yacht-image {
        height: 220px;
    }

}

@media (max-width: 600px) {

    .listing-yacht-image {
        height: 235px;
    }

    .listing-yacht-content {
        padding: 20px 18px;
    }

    .listing-yacht-content h3 {
        font-size: 15px;
    }

    .listing-yacht-features {
        gap: 14px;
        font-size: 9px;
    }

    .listing-yacht-bottom strong {
        font-size: 16px;
    }

}

/* Yatlar sayfası sayfalama */

.yachts-pagination {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.yachts-pagination button {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #061426;
    color: #d4dae1;
    font-size: 11px;
    cursor: pointer;
    transition: 0.3s;
}

.yachts-pagination button:hover,
.yachts-pagination button.active {
    border-color: var(--light-gold);
    background: var(--light-gold);
    color: var(--dark-blue);
}

.yachts-pagination span {
    padding: 0 5px;
    color: #8f99a5;
    font-size: 12px;
}

/* Yatlar sayfası alt çağrı alanı */

.yachts-contact-cta {
    min-height: 410px;
    padding: 75px 0;
    position: relative;
    background:
        url("../images/cta-yacht.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
}

.yachts-contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 15, 31, 0.78);
}

.yachts-contact-container {
    width: min(720px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.yachts-contact-container .section-small-title {
    margin-bottom: 18px;
    justify-content: center;
}

.yachts-contact-container h2 {
    margin-bottom: 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: 49px;
    line-height: 1.05;
    font-weight: 600;
}

.yachts-contact-container p {
    max-width: 600px;
    margin: 0 auto;
    color: #c8ced6;
    font-size: 13px;
    line-height: 1.8;
}

.yachts-contact-container .cta-button {
    margin-top: 28px;
}

@media (max-width: 600px) {

    .yachts-pagination {
        margin-top: 28px;
        gap: 5px;
    }

    .yachts-pagination button {
        width: 34px;
        height: 34px;
    }

    .yachts-contact-cta {
        min-height: 380px;
        padding: 60px 0;
    }

    .yachts-contact-container h2 {
        font-size: 38px;
    }

    .yachts-contact-container p {
        font-size: 12px;
    }

}

/* Yat detay sayfası */

.yacht-detail-hero {
    min-height: 310px;
    position: relative;
    background:
        url("../images/yacht-1.jpg") center / cover no-repeat;
    display: flex;
    align-items: flex-end;
}

.yacht-detail-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2, 15, 31, 0.95) 0%,
            rgba(2, 15, 31, 0.7) 48%,
            rgba(2, 15, 31, 0.25) 100%
        ),
        linear-gradient(
            0deg,
            rgba(2, 15, 31, 0.88) 0%,
            transparent 60%
        );
}

.yacht-detail-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
    padding-bottom: 42px;
    position: relative;
    z-index: 2;
}

.yacht-detail-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.yacht-detail-label {
    margin-bottom: 10px;
    color: var(--light-gold);
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.yacht-detail-heading h1 {
    margin-bottom: 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: 55px;
    line-height: 1;
    font-weight: 600;
}

.yacht-detail-heading p {
    color: #d0d6dd;
    font-size: 12px;
}

.yacht-detail-price {
    min-width: 240px;
    padding: 20px 24px;
    border: 1px solid rgba(217, 168, 93, 0.45);
    background: rgba(2, 15, 31, 0.72);
    text-align: right;
}

.yacht-detail-price span {
    margin-bottom: 8px;
    color: #c5ccd4;
    display: block;
    font-size: 9px;
    letter-spacing: 0.6px;
}

.yacht-detail-price strong {
    color: var(--light-gold);
    font-size: 25px;
    font-weight: 600;
}

/* Ana detay alanı */

.yacht-detail-section {
    padding: 65px 0 85px;
    background: #020e1d;
}

.yacht-detail-wrapper {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
    align-items: start;
}

.yacht-detail-main {
    min-width: 0;
}

/* Galeri */

.yacht-detail-gallery {
    margin-bottom: 50px;
}

.yacht-main-image {
    height: 540px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #061426;
}

.yacht-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.yacht-thumbnails {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.yacht-thumbnail {
    height: 105px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.yacht-thumbnail:hover,
.yacht-thumbnail.active {
    border-color: var(--light-gold);
}

.yacht-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0.72;
    transition: 0.3s;
}

.yacht-thumbnail:hover img,
.yacht-thumbnail.active img {
    opacity: 1;
}

/* Açıklama alanı */

.yacht-detail-info {
    margin-bottom: 48px;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #051426;
}

.yacht-detail-info .section-small-title {
    margin-bottom: 16px;
}

.yacht-detail-info h2 {
    margin-bottom: 22px;
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
}

.yacht-detail-info p {
    margin-bottom: 16px;
    color: #b8c0ca;
    font-size: 13px;
    line-height: 1.9;
}

.yacht-detail-info p:last-child {
    margin-bottom: 0;
}

/* Teknik özellikler */

.yacht-specifications {
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #051426;
}

.yacht-specifications .section-small-title {
    margin-bottom: 24px;
}

.specifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.specification-item {
    min-height: 82px;
    padding: 18px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specification-item span {
    margin-bottom: 7px;
    color: #8e99a6;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.specification-item strong {
    color: #e1e5ea;
    font-size: 13px;
    font-weight: 500;
}

/* Sağ form alanı */

.yacht-detail-sidebar {
    position: sticky;
    top: 100px;
}

.yacht-inquiry-card {
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #051426;
}

.yacht-inquiry-card .section-small-title {
    margin-bottom: 15px;
}

.yacht-inquiry-card h2 {
    margin-bottom: 14px;
    font-family: "Cormorant Garamond", serif;
    font-size: 31px;
    line-height: 1.12;
    font-weight: 600;
}

.yacht-inquiry-card > p {
    margin-bottom: 24px;
    color: #aeb7c2;
    font-size: 11px;
    line-height: 1.8;
}

.yacht-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.yacht-inquiry-form .contact-submit-button {
    width: 100%;
    margin-top: 4px;
}

.yacht-contact-card {
    margin-top: 18px;
    padding: 24px;
    border: 1px solid rgba(217, 168, 93, 0.28);
    background: #07182b;
}

.yacht-contact-card h3 {
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
}

.yacht-contact-card a {
    margin-bottom: 14px;
    color: #c7ced7;
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 11px;
    transition: 0.3s;
}

.yacht-contact-card a:last-child {
    margin-bottom: 0;
}

.yacht-contact-card a:hover {
    color: var(--light-gold);
}

.yacht-contact-card i {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(217, 168, 93, 0.4);
    color: var(--light-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

@media (max-width: 1050px) {

    .yacht-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .yacht-detail-sidebar {
        position: static;
    }

    .yacht-detail-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .yacht-contact-card {
        margin-top: 0;
    }

}

@media (max-width: 750px) {

    .yacht-detail-hero {
        min-height: 340px;
    }

    .yacht-detail-container,
    .yacht-detail-wrapper {
        width: calc(100% - 40px);
    }

    .yacht-detail-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .yacht-detail-heading h1 {
        font-size: 43px;
    }

    .yacht-detail-price {
        width: 100%;
        text-align: left;
    }

    .yacht-main-image {
        height: 390px;
    }

    .yacht-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

    .yacht-thumbnail {
        height: 120px;
    }

    .yacht-detail-info,
    .yacht-specifications {
        padding: 28px 22px;
    }

    .yacht-detail-info h2 {
        font-size: 34px;
    }

    .yacht-detail-sidebar {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 520px) {

    .yacht-detail-section {
        padding: 45px 0 60px;
    }

    .yacht-main-image {
        height: 285px;
    }

    .yacht-thumbnail {
        height: 90px;
    }

    .specifications-grid {
        grid-template-columns: 1fr;
    }

    .yacht-inquiry-card {
        padding: 26px 20px;
    }

}

/* Rezervasyon sayfası */

.reservation-section {
    padding: 75px 0 90px;
    background: #020e1d;
}

.reservation-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

/* Seçilen yat kartı */

.reservation-yacht-card {
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: 330px 1fr;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #051426;
    overflow: hidden;
}

.reservation-yacht-image {
    min-height: 230px;
}

.reservation-yacht-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.reservation-yacht-info {
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reservation-yacht-info > span {
    margin-bottom: 10px;
    color: var(--light-gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.reservation-yacht-info h2 {
    margin-bottom: 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 600;
}

.reservation-yacht-features {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 25px;
    color: #b8c0ca;
    font-size: 11px;
}

.reservation-yacht-features i {
    margin-right: 6px;
    color: var(--light-gold);
}

.reservation-yacht-info > strong {
    color: var(--light-gold);
    font-size: 21px;
    font-weight: 600;
}

/* Form ve özet */

.reservation-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.reservation-form-area {
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #051426;
}

.reservation-form-area .section-small-title {
    margin-bottom: 15px;
}

.reservation-form-area h2 {
    margin-bottom: 16px;
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 600;
}

.reservation-form-area > p {
    max-width: 650px;
    margin-bottom: 30px;
    color: #aeb7c2;
    font-size: 12px;
    line-height: 1.8;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reservation-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #aeb7c2;
    font-size: 10px;
    line-height: 1.7;
    cursor: pointer;
}

.reservation-checkbox input {
    margin-top: 4px;
    accent-color: var(--light-gold);
}

.reservation-submit-button {
    width: 255px;
    height: 52px;
    padding: 0 22px;
    border: 1px solid var(--light-gold);
    background: var(--light-gold);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.reservation-submit-button:hover {
    background: transparent;
    color: var(--light-gold);
}

/* Rezervasyon özeti */

.reservation-summary {
    padding: 30px 25px;
    border: 1px solid rgba(217, 168, 93, 0.28);
    background: #061426;
    position: sticky;
    top: 100px;
}

.reservation-summary h3 {
    margin-bottom: 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    font-weight: 600;
}

.reservation-summary-row {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.reservation-summary-row span {
    color: #909ba8;
    font-size: 10px;
}

.reservation-summary-row strong {
    color: #d8dde3;
    font-size: 11px;
    font-weight: 500;
    text-align: right;
}

.reservation-summary-total {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.reservation-summary-total span {
    color: #c5ccd4;
    font-size: 11px;
}

.reservation-summary-total strong {
    color: var(--light-gold);
    font-size: 21px;
    font-weight: 600;
}

.reservation-summary > p {
    margin-top: 18px;
    color: #87929f;
    font-size: 9px;
    line-height: 1.7;
}

.reservation-help {
    margin-top: 23px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #07182b;
    display: flex;
    align-items: center;
    gap: 13px;
}

.reservation-help > i {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(217, 168, 93, 0.45);
    color: var(--light-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reservation-help div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reservation-help span {
    color: #929da9;
    font-size: 9px;
}

.reservation-help a {
    color: var(--light-gold);
    font-size: 11px;
    font-weight: 600;
}

/* Yat detay sayfası rezervasyon butonu */

.detail-reservation-button {
    width: 100%;
    min-height: 42px;
    margin-top: 16px;
    padding: 0 14px;
    border: 1px solid var(--light-gold);
    background: var(--light-gold);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 700;
    transition: 0.3s;
}

.detail-reservation-button:hover {
    background: transparent;
    color: var(--light-gold);
}

@media (max-width: 1000px) {

    .reservation-main {
        grid-template-columns: 1fr;
    }

    .reservation-summary {
        position: static;
    }

}

@media (max-width: 750px) {

    .reservation-section {
        padding: 55px 0 70px;
    }

    .reservation-container {
        width: calc(100% - 40px);
    }

    .reservation-yacht-card {
        grid-template-columns: 1fr;
    }

    .reservation-yacht-image {
        min-height: 290px;
    }

    .reservation-yacht-info {
        padding: 30px 24px;
    }

    .reservation-yacht-info h2 {
        font-size: 33px;
    }

    .reservation-yacht-features {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .reservation-form-area {
        padding: 35px 24px;
    }

    .reservation-form-area h2 {
        font-size: 35px;
    }

    .reservation-submit-button {
        width: 100%;
    }

}

@media (max-width: 450px) {

    .reservation-yacht-image {
        min-height: 220px;
    }

    .reservation-summary {
        padding: 25px 20px;
    }

}