@font-face {
    font-family: 'SF Pro Display';
    src: local('SF Pro Display'), local('Helvetica Neue'), local('Arial');
}

:root {
    --color-bg-white: #ffffff;
    --color-text-dark: #222222;
    --color-text-light: #ffffff;
    --gap: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    background-color: var(--color-bg-white);
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
    font-family: 'SF Pro Display', sans-serif;
    overflow-x: hidden;
    padding: 0;
    cursor: auto;
}

/* ------------------------------------- */
/* Theme Overrides (Dark Mode for specific pages)*/
/* ------------------------------------- */
body.dark-theme {
    background-color: #080808;
    color: #fff;
}

body.dark-theme #site-header {
    background-color: transparent;
}

body.dark-theme .logo-text {
    color: #fff;
}

body.dark-theme .logo-img {
    filter: invert(1);
}

body.dark-theme .current-page {
    color: #fff;
}

body.dark-theme .hamburger span {
    background-color: #fff;
}


/* ------------------------------------- */
/* Header & Logo                         */
/* ------------------------------------- */

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 112px;
    background-color: var(--color-bg-white);
    z-index: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
}

.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}

.logo-mark {
    width: 60px;
    height: 60px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    margin-left: 0.6rem;
    font-family: 'SF Pro Display', -apple-system, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    /* Bolder */
    letter-spacing: -0.5px;
    color: #000;
}

/* Yavaşlatılmış Logo Harf Animasyonu */
.logo-text span {
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: inline-block;
}

.logo-container:hover .logo-text span:nth-child(1) {
    transition-delay: 0.00s;
    opacity: 1;
    transform: translateX(0);
}

.logo-container:hover .logo-text span:nth-child(2) {
    transition-delay: 0.08s;
    opacity: 1;
    transform: translateX(0);
}

.logo-container:hover .logo-text span:nth-child(3) {
    transition-delay: 0.16s;
    opacity: 1;
    transform: translateX(0);
}

.logo-container:hover .logo-text span:nth-child(4) {
    transition-delay: 0.24s;
    opacity: 1;
    transform: translateX(0);
}

.logo-container:hover .logo-text span:nth-child(5) {
    transition-delay: 0.32s;
    opacity: 1;
    transform: translateX(0);
}

.logo-container:hover .logo-text span:nth-child(6) {
    transition-delay: 0.40s;
    opacity: 1;
    transform: translateX(0);
}


/* ------------------------------------- */
/* Hamburger & Full-screen Menu          */
/* ------------------------------------- */

.menu-btn {
    z-index: 1001;
    cursor: pointer;
    position: fixed;
    top: calc(56px - 12px);
    /* Centered in 112px header */
    right: 4rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.current-page {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #000;
    transition: color 0.4s ease;
}

.menu-btn.active .current-page {
    color: #fff;
}

.menu-btn::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
}

.hamburger {
    width: 35px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
    transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.4s ease;
}

.menu-btn.active .hamburger span {
    background-color: #fff;
    box-shadow: none;
}

.menu-btn.active .hamburger span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .hamburger span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.full-screen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #080808;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    padding: 10vh 8%;
    overflow-y: auto;
}

.full-screen-menu.active {
    opacity: 1;
    pointer-events: all;
}

.menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    min-height: 100%;
}

.menu-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
}

.menu-inner a {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: none;
    transition: color 0.3s, transform 0.3s;
    letter-spacing: -1px;
}

.menu-inner a:hover {
    color: rgba(255, 255, 255, 0.5);
    transform: translateX(10px);
}

/* Menu Footer Columns */
.menu-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: none;
    position: relative;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    align-items: stretch;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col.small::before {
    content: '';
    display: block;
    width: 25px;
    height: 1px;
    background-color: #333;
    margin-bottom: 1.5rem;
}

.footer-col.large {
    align-items: flex-end;
    text-align: right;
}

.footer-col.large::before {
    content: '';
    display: block;
    width: 25px;
    height: 1px;
    background-color: #333;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    font-family: 'SF Pro Display', sans-serif;
    color: #aaa;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    height: 3.5rem;
    display: flex;
    align-items: flex-end;
}

.footer-col h3 {
    font-family: 'SF Pro Display', sans-serif;
    color: #aaa;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    height: 3.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    line-height: 1.3;
}

.footer-col p {
    font-family: 'SF Pro Display', sans-serif;
    color: #666;
    font-size: 0.70rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.footer-col a {
    font-family: 'SF Pro Display', sans-serif;
    color: #bbb;
    font-size: 0.70rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    margin-top: auto;
}

.footer-col a:hover {
    color: #fff;
}

.proposal-link {
    font-size: 0.85rem !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ddd !important;
}

.proposal-link span {
    transition: transform 0.3s;
}

.proposal-link:hover span {
    transform: translateX(5px);
}

/* Social Icons Area */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    justify-content: flex-start;
}

.social-icons a {
    display: block;
    width: 14px;
    height: 14px;
    color: #aaa;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fff;
}

.social-icons svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}


/* ------------------------------------- */
/* Services Page Styles                  */
/* ------------------------------------- */

.services-page {
    min-height: 100vh;
    padding: 200px 10% 100px 10%;
    position: relative;
}

.services-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Uncomment below line when background photo is available */
    /* background-image: url('assets/services-bg.jpg'); */
    background-position: center right;
    background-size: cover;
    opacity: 0.15;
    pointer-events: none;
}

.services-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 5rem;
    max-width: 600px;
}

.page-title {
    font-size: 3rem;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.heaters-font {
    font-family: 'Heaters', sans-serif;
    font-weight: normal;
    font-size: 1.5em;
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 1.15rem;
    color: #aaa;
    line-height: 1.6;
}

.services-interactive {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.services-list {
    list-style: none;
    flex: 0 0 auto;
}

.services-list li {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1.5rem;
    color: #555;
    padding: 0.2rem 0;
    margin-bottom: 0.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.services-list li.active,
.services-list li:hover {
    color: #fff;
}

.services-descriptions {
    flex: 1;
    max-width: 450px;
    padding-top: 0.3rem;
    position: relative;
}

.services-descriptions p {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #aaa;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.services-descriptions p.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ------------------------------------- */
/* About Us Page Styles                  */
/* ------------------------------------- */
.about-page {
    min-height: 100vh;
    padding: 200px 10% 100px 10%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.about-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'SF Pro Display', sans-serif;
    color: #fff;
    flex: 0 0 250px;
    margin: 0;
}

.about-section p {
    font-size: 1.15rem;
    color: #aaa;
    line-height: 1.7;
    font-family: 'SF Pro Display', sans-serif;
    flex: 1;
    max-width: 640px;
    margin-left: auto;
}

.about-section a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}

.about-section a:hover {
    color: #888;
}


.about-links a {
    color: #ccc;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.about-links a span {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.about-links a:hover {
    color: #fff;
}

.about-links a:hover span {
    transform: translateX(4px);
}

.watch-video-btn {
    position: absolute;
    bottom: -50px;
    right: 0;
    background-color: rgba(255, 255, 255, 0.75);
    color: #000;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-family: 'SF Pro Display', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
}

.watch-video-btn:hover {
    background-color: #fff;
}

@media (max-width: 992px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .watch-video-btn {
        position: relative;
        margin-top: 4rem;
        bottom: 0;
        float: right;
    }
}

/* ------------------------------------- */
/* Gallery Grid                          */
/* ------------------------------------- */

.gallery {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    padding: calc(112px + var(--gap)) var(--gap) var(--gap) var(--gap);
    margin-top: 0;
}

.gallery-row {
    display: flex;
    gap: var(--gap);
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.placeholder-bg,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .placeholder-bg,
.gallery-item:hover img {
    transform: scale(1.03);
}

/* Hover Info Animation (Sola Yaslı, Ayni Punta) */
.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: left;
    color: var(--color-text-light);
    z-index: 10;
    pointer-events: none;

    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    padding: 4rem 2rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

.gallery-item:hover .item-info {
    opacity: 1;
    transform: translateY(0);
}

.item-info .country {
    display: block;
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    letter-spacing: 0.2px;
}

.item-info .title {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    #site-header {
        padding: 0 2rem;
    }

    .menu-btn {
        right: 2rem;
    }

    .gallery {
        padding: calc(112px + var(--gap)) var(--gap) var(--gap) var(--gap);
        margin-top: 0;
    }

    .gallery-row {
        flex-direction: column;
        height: auto !important;
    }

    .gallery-item {
        width: 100% !important;
        height: 50vh;
    }

    .item-info {
        opacity: 1;
        transform: none;
    }

    .menu-inner a {
        font-size: 2.5rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .full-screen-menu {
        padding: 15vh 5% 5vh 5%;
    }

    .menu-footer {
        padding-top: 2rem;
        margin-top: 2rem;
    }

    .services-interactive {
        flex-direction: column;
        gap: 3rem;
    }

    .services-descriptions {
        min-height: 200px;
        /* Allocate space to avoid jumping content */
    }
}/* Home Page specific logic for CSS appender */

/* Header Scroll Transition Logic */
#site-header {
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.header-hidden {
    transform: translateY(-100%);
}

.menu-btn.header-hidden {
    transform: translateY(-150px) !important;
}

.header-solid {
    background-color: #080808 !important; /* Appears dark when scrolling back up */
}

body.home-page #site-header {
    background-color: rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
}

body.works-page #site-header {
    background-color: #080808 !important;
}
body.home-page .current-page {
    display: none;
}

/* Home Section Layout Setup */
.home-scroll-container {
    width: 100%;
}

/* --- Section 1: Hero Video --- */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 10%;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    background-color: #1a1a1a; 
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-bottom: 2rem;
}

.hero-title {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    right: 4rem;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 12px;
    position: relative;
}
.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}


/* --- Section 2: Home Services --- */
.home-services-section {
    background-color: #000;
    min-height: 100vh;
    padding: 180px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}




.hs-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7rem;
}

.hs-top h2 {
    font-size: 2.2rem;
    flex: 0 0 200px;
    font-weight: 700;
    font-family: 'SF Pro Display', sans-serif;
}

.hs-top-text {
    flex: 1;
    max-width: 600px;
}

.hs-top-text p {
    font-size: 1.15rem;
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.hs-card {
    text-decoration: none;
    color: #fff;
    display: block;
}

.hs-card-img {
    width: 100%;
    aspect-ratio: 9/11;
    background-color: #222;
    margin-bottom: 1.2rem;
    overflow: hidden;
}

.hs-card-img .placeholder-bg,
.hs-card-img img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hs-card:hover .placeholder-bg,
.hs-card:hover img {
    transform: scale(1.04);
}

.hs-card h3 {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'SF Pro Display', sans-serif;
}

.see-all-btn {
    color: #aaa;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
    font-weight: 600;
    font-family: 'SF Pro Display', sans-serif;
}
.see-all-btn span {
    transition: transform 0.3s;
}
.see-all-btn:hover {
    color: #fff;
}
.see-all-btn:hover span {
    transform: translateX(5px);
}

/* --- Section 3: Home About Preview --- */
.home-about-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 10%;
}

.about-preview-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #151515;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.about-preview-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
}


.about-preview-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.about-left {
    flex: 0 0 250px;
}

.about-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'SF Pro Display', sans-serif;
    color: #fff;
    margin: 0;
}

.about-right {
    flex: 1;
    max-width: 600px;
    margin-left: auto;
}

.about-right p {
    font-size: 1.15rem;
    color: #aaa;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: 'SF Pro Display', sans-serif;
}

.read-more-btn {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'SF Pro Display', sans-serif;
}
.read-more-btn span {
    transition: transform 0.3s;
}
.read-more-btn:hover span {
    transform: translateX(4px);
}

/* --- Section 4: Home Contact --- */
.home-contact-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 10%;
}

.contact-preview-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #111;
    /* Optional placeholder image can be added here */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-preview-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
}

.contact-preview-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 900px;
}

.contact-main {
    max-width: 500px;
    margin-top: auto;
    margin-bottom: 4rem;
}

.contact-main h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
    font-family: 'SF Pro Display', sans-serif;
}

.contact-main p {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-main .contact-email {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.contact-main .contact-email:hover {
    color: #ccc;
}

.home-contact-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: auto;
}

.cf-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 200px;
}

.cf-col::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background-color: #555;
    margin-bottom: 0.5rem;
}

.cf-col h4 {
    color: #ddd;
    font-size: 0.85rem;
    font-weight: 600;
}

.cf-col p {
    color: #888;
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cf-col a {
    color: #bbb;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.cf-col a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .home-contact-footer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-main h2 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .hs-top {
        flex-direction: column;
        gap: 2rem;
    }
    .hs-grid {
        grid-template-columns: 1fr 1fr;
    }
    .scroll-down-indicator {
        right: 2rem;
    }
}
@media (max-width: 600px) {
    .hs-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------- */
/* Career Page                           */
/* ------------------------------------- */

.career-page {
    min-height: 100vh;
    padding: 220px 10% 100px 10%;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.career-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.career-section h2 {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    max-width: 800px;
}

.career-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #999;
    max-width: 700px;
}

/* Animated Hover Link (Right to Left) */
.animated-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}

.animated-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.5px;
    bottom: 0;
    right: 0;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease-out;
}

.animated-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom right; /* Actually, if we want it to animate right-to-left on hover, it should start scaleX(0) at left, then transform to right? Wait. */
}

/* Wait, "çizgi sağdan sola doğru animasyon şeklinde çizilsin".
   If origin is right: it starts at right, grows to left. */
.animated-link {
    background-image: linear-gradient(#fff, #fff);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1.5px;
    transition: background-size 0.4s ease-in-out;
    padding-bottom: 2px;
}
.animated-link:hover {
    background-size: 100% 1.5px;
}
.animated-link::after {
    display: none;
}

/* ------------------------------------- */
/* Modal Form                            */
/* ------------------------------------- */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: #000;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem 4rem;
    position: relative;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    font-family: 'SF Pro Display', sans-serif;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.modal-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.close-modal {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #888;
}

/* Form Shared */
.vendor-form .form-group {
    margin-bottom: 1.5rem;
}
.vendor-form label {
    display: block;
    font-size: 0.9rem;
    color: #d1d1d1;
    margin-bottom: 0.5rem;
}
.vendor-form .req {
    color: #e53e3e;
}
.vendor-form .sub-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.4rem;
}

.vendor-form input[type="text"],
.vendor-form input[type="email"],
.vendor-form select,
.vendor-form textarea {
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid #1a1a1a;
    color: #fff;
    font-family: 'SF Pro Display', sans-serif;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.vendor-form input[type="text"]:focus,
.vendor-form input[type="email"]:focus,
.vendor-form select:focus,
.vendor-form textarea:focus {
    border-color: #444;
}

.vendor-form .form-row {
    display: flex;
    gap: 1.5rem;
}

.vendor-form .two-cols .form-group {
    flex: 1;
}

.vendor-form .three-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.vendor-form .phone-cols {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
}

.mt-2 {
    margin-top: 1rem;
}

/* File Upload */
.inline-file {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 2rem;
    align-items: stretch;
    width: 100%;
}
.file-label-col {
    padding-top: 1rem;
}
.file-drop-col {
    width: 100%;
}

.upload-area {
    display: block;
    background-color: #1a1a1a;
    border: 1px dashed #333;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: border-color 0.3s;
}

.upload-area:hover {
    border-color: #666;
}

.upload-area input[type="file"] {
    display: none;
}

.browse-files {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.85rem;
    color: #999;
}

.upload-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #999;
}

.upload-title {
    color: #ccc;
    font-size: 0.95rem;
}
.upload-sub {
    font-size: 0.8rem;
    color: #666;
}

/* Terms */
.terms-container {
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    margin-bottom: 1rem;
    color: #aaa;
}

.checkbox-label input {
    margin-top: 0.2rem;
}

.terms-scroll-box {
    background-color: #1a1a1a;
    padding: 1rem;
    max-height: 120px;
    overflow-y: auto;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
}

/* Submit Btn */
.form-submit {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.submit-btn {
    background-color: #3b82f6; /* Blue as requested */
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #2563eb;
}

@media (max-width: 768px) {
    .vendor-form .three-cols,
    .vendor-form .phone-cols,
    .vendor-form .two-cols,
    .inline-file {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .modal-content {
        padding: 2rem;
    }
}


/* ------------------------------------- */
/* Global Site Footer                    */
/* ------------------------------------- */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    background: none !important;
    border: none !important;
    color: #888;
    font-family: 'SF Pro Display', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    width: 100%;
}

.site-footer a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.site-footer a:hover {
    color: #ccc;
}
.site-footer svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: fill 0.3s ease;
}

.footer-left {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-separator {
    margin: 0 0.2rem;
}

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

.footer-socials {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .site-footer {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 2rem;
        text-align: center;
    }
    .footer-left, .footer-right {
        justify-content: center;
        flex-wrap: wrap;
    }
}
