:root {
    --bg-color: #0e0e0e;
    --text-color: #f0f0f0;
    --accent-color: #c9a478;
    --font-head: 'Cinzel', serif;
    --font-body: 'Manrope', sans-serif;
}

@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cinzel-v19-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cinzel-v19-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/manrope-v15-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/manrope-v15-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/manrope-v15-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/manrope-v15-latin-700.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    overflow-x: hidden !important;
}

html {
    overflow-x: hidden !important;
}

section {
    position: relative;
    background: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(5px);
    z-index: 2;
}

.sub-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--accent-color);
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-center h3 {
    font-family: var(--font-head);
    font-size: 3rem;
    color: #fff;
}

.section-header-left {
    margin-bottom: 60px;
    border-left: 3px solid var(--accent-color);
    padding-left: 30px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    color: #fff;
    line-height: 1;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--text-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.05s ease-out;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0e0e0e;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-container {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.counter-wrap {
    font-family: var(--font-body);
    font-size: 10vw;
    font-weight: 300;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 20px;
}

.loader-text-static {
    font-family: var(--font-head);
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: var(--accent-color);
    margin-top: -10px;
    opacity: 0.8;
}

.loading-bar-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: var(--accent-color);
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.3s;
    transition: transform 0.3s ease-in-out;
}

nav.nav-hidden {
    transform: translateY(-100%);
}

.logo {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
}

.logo img {
    max-height: 45px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.menu-btn {
    padding: 12px 30px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.menu-btn .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.menu-btn:hover .arrow {
    transform: translate(5px, -5px);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 12px;
    cursor: pointer;
    z-index: 200;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0e0e0e;
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 40px;
}

.m-link {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.mobile-nav-overlay.active .m-link {
    opacity: 1;
    transform: translateY(0);
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-menu.active span:nth-child(2) {
    transform: rotate(-45deg) translate(3px, -2px);
}

@media (max-width: 900px) {
    .desktop-only { display: none !important; }
    .hamburger-menu { display: flex; }
    
    nav { 
        padding: 15px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .cta-text h2 {
        font-size: 3rem;
    }

    .f-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cursor, .cursor-follower { display: none !important; }
    * { cursor: auto !important; }

    .logo {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    background-color: #000;
    padding-right: 12%;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 115%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    text-align: right;
    position: relative;
    z-index: 2;
    padding: 0;
    max-width: 600px;
}

.hero-logo {
    width: 180px;
    height: auto;
    display: block; 
    margin-left: auto;
    margin-bottom: 20px;
}

.text-mask-logo {
    overflow: hidden;
    padding-bottom: 10px;
    display: flex;
    justify-content: flex-end;
}

.hero-anim-p {
    margin-top: 0;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 1rem;
    color: #dddddd;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero {
        justify-content: center;
        padding-right: 0;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .text-mask-logo {
        justify-content: center;
    }
    
    .hero-logo {
        margin-left: auto; 
        margin-right: auto;
        width: 140px;
    }
    
    .hero-anim-p {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.scroll-indicator .line {
    width: 60px;
    height: 1px;
    background: #fff;
}

.manifesto {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.manifesto-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.m-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(100%) contrast(1.2);
}

.m-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.95) 90%);
    z-index: 1;
}

.manifesto-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 1400px;
}

.fill-line {
    font-size: 3.5vw;
    line-height: 1.4;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.1);
    background-image: linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0% 100%;
    display: block;
    width: fit-content;
}

@media (max-width: 900px) {
    .manifesto {
        padding: 80px 20px;
        min-height: 60vh;
    }

    .manifesto-container {
        align-items: flex-start;
        text-align: left;
    }

    .fill-line {
        font-size: 5vw !important;
        line-height: 1.4;
        width: 100%;
    }
}

.stats-section {
    padding: 180px 10%;
    background: #0f0f0f;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-head);
    font-size: 6rem;
    color: var(--accent-color);
    line-height: 1;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 15px;
    color: #888;
    text-transform: uppercase;
}

.corporate-section {
    padding: 150px 10%;
    background: #131313;
}

.corp-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.corp-image-box {
    position: relative;
    height: 650px;
}

.corp-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.exp-badge {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: var(--accent-color);
    padding: 35px;
    text-align: center;
    color: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.exp-year {
    display: block;
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-top: 5px;
    display: block;
}

.corp-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
}

h5 {
    display: block;
    font-size: 0.83em;
    margin-block-start: 1.67em;
    margin-block-end: 1.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

.corp-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 10px;
    text-align: justify;
}

.signature-block {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ceo-info strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.ceo-info span {
    color: #666;
    font-size: 0.9rem;
}

.services-section {
    padding: 150px 10%;
    background: var(--bg-color);
}

.service-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
}

.service-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.service-item:hover {
    padding-left: 30px;
    border-bottom: 1px solid var(--accent-color);
    background: linear-gradient(90deg, rgba(255,255,255,0.02), transparent);
}

.s-num {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #555;
    margin-right: 60px;
}

.s-name {
    font-family: var(--font-head);
    font-size: 3rem;
    flex-grow: 1;
    color: #ddd;
    transition: color 0.3s;
}

.service-item:hover .s-name { color: var(--accent-color); }

.s-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #888;
    width: 350px;
    line-height: 1.6;
}

.sustainability-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1518531933037-9a60e451b6a7?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.sus-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}

.sus-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.sus-content h2 {
    font-family: var(--font-head);
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
}

.sus-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.badges span {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #fff;
    backdrop-filter: blur(5px);
}

.projects-wrapper {
    width: 100%;
    height: 100vh;
    overflow: hidden; 
    background: #111;
}

.projects-container {
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
}

.panel {
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.text-panel {
    width: 40vw;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 8vw;
}

.text-panel h2 {
    font-family: var(--font-head);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 30px;
    margin-top: 10px;
}

.project-panel {
    width: 60vw;
}

.project-card {
    position: relative;
    width: 40vw;
    height: 70vh;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.project-card:hover img {
    transform: scale(1.1);
}

.p-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.p-info h3 {
    font-family: var(--font-head);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.p-info span {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.partners-section {
    padding: 100px 5%;
    background: #0d0d0d;
    text-align: center;
    border-top: 1px solid #222;
}

.partner-title {
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 4px;
    margin-bottom: 60px;
}

.partners-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.partner-logo {
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: #444;
    font-weight: 700;
    transition: all 0.3s;
}

.partner-logo:hover {
    color: #fff;
    transform: scale(1.1);
}

.main-footer {
    background-color: #050505;
    color: #fff;
    padding: 0 5%;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.footer-cta {
    padding: 100px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px;
}

.cta-text span {
    font-family: var(--font-body);
    color: var(--accent-color);
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.cta-text h2 {
    font-family: var(--font-head);
    font-size: 5vw;
    line-height: 0.9;
    color: #fff;
}

.footer-btn {
    padding: 20px 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.footer-btn .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.footer-btn:hover .arrow {
    transform: translate(5px, -5px);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 80px;
}

.brand-col .logo {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.f-desc {
    color: #888;
    line-height: 1.6;
    max-width: 350px;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

.f-col h2 {
    font-family: var(--font-head);
    color: #fff;
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.f-links { list-style: none; }
.f-links li { margin-bottom: 15px; }

.f-links a {
    color: #888;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
}

.f-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.f-links a::before {
    content: "›";
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s;
    color: var(--accent-color);
}

.f-links a:hover::before {
    opacity: 1;
    left: -10px;
}

.f-contact p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mail-link, .phone-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.mail-link:hover, .phone-link:hover {
    color: var(--accent-color);
}

.f-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 0.85rem;
}

.policy-links a {
    color: #999;
    text-decoration: none;
    margin-left: 25px;
    transition: color 0.3s;
}

.policy-links a:hover { color: #888; }

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .cta-text h2 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-cta { flex-direction: column; align-items: flex-start; }
    .f-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .policy-links a { margin: 0 10px; }
}

.cookie-card {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 360px;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 164, 120, 0.15);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    z-index: 9990;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.cookie-card:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.cookie-card-inner {
    padding: 24px;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.cookie-header svg {
    color: #c9a478;
    width: 20px;
    height: 20px;
}

.cookie-header h3 {
    margin: 0;
    color: #fff;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.cookie-body p {
    margin: 0;
    color: #a0a0a0;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.6;
}

.cookie-body a {
    color: #c9a478;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-body a:hover {
    color: #fff;
}

.cookie-footer {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.cookie-footer button {
    flex: 1;
    padding: 10px 0;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #ccc;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: #c9a478;
    color: #c9a478;
}

.btn-solid {
    background: #c9a478;
    border: 1px solid #c9a478;
    color: #0e0e0e;
}

.btn-solid:hover {
    background: #b59268;
    border-color: #b59268;
}

@media (max-width: 480px) {
    .cookie-card {
        bottom: 15px;
        left: 15px;
        right: 15px;
        width: auto;
    }
    .cookie-footer {
        flex-direction: column;
    }
}

.cta-btn {
    padding: 15px 40px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.3s;
    cursor: none;
    display: inline-block;
}

.cta-btn:hover {
    background: var(--accent-color);
    color: #000;
}

.cta-btn.secondary {
    border-color: #fff;
    color: #fff;
}
.cta-btn.secondary:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 1024px) {
    .corp-container { grid-template-columns: 1fr; }
    .corp-image-box { height: 400px; margin-bottom: 50px; }
    .exp-badge { right: 0; }
    .stats-grid { gap: 30px; }
    .stat-number { font-size: 4rem; }
    .manifesto { padding: 0 5%; }
    .fill-line { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 12vw; }
    .stats-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .nav-links { display: none; }
    .service-item { flex-direction: column; align-items: flex-start; }
    .s-desc { width: 100%; margin-top: 15px; text-align: left; }
    .s-name { font-size: 2rem; }
    .panel { width: 100vw; }
    .text-panel { width: 100vw; padding: 50px 20px; }
    .project-panel { width: 100vw; }
    .project-card { width: 90vw; height: 50vh; }
    .f-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

.page-hero {
    padding: 150px 5% 100px;
    background: var(--bg-color);
}
.page-title {
    font-family: var(--font-head);
    font-size: 5rem;
    color: #fff;
    line-height: 1.1;
    margin-top: 20px;
}

.projects-grid-section {
    padding: 0 5% 150px;
    background: var(--bg-color);
}

.filters {
    margin-bottom: 60px;
    display: flex;
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.filter-btn {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
    letter-spacing: 1px;
}
.filter-btn.active, .filter-btn:hover { color: #fff; }

.projects-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.grid-item {
    text-decoration: none;
    display: block;
    position: relative;
}

.grid-img {
    height: 500px;
    overflow: hidden;
    margin-bottom: 20px;
}

.grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.grid-item:hover .grid-img img { transform: scale(1.05); }

.grid-info h3 {
    font-family: var(--font-head);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}
.grid-info span {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.detail-hero {
    height: 55vh;
    position: relative;
    overflow: hidden;
}

.detail-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.detail-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.detail-title-box {
    position: absolute;
    bottom: 100px;
    left: 5%;
    color: #fff;
    z-index: 2;
}
.detail-title-box h1 { font-size: 6vw; font-family: var(--font-head); line-height: 1; margin: 20px 0; }
.detail-title-box p { font-size: 1.2rem; color: #ddd; }

.detail-info-section {
    background: var(--bg-color);
    padding: 100px 5%;
    position: relative;
    z-index: 2;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.catalog-photo-btn {
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 30px;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.photo-container {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05); 
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 14, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: var(--font-head);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.photo-overlay i {
    font-size: 30px;
    color: #c9a478;
}

.catalog-photo-btn:hover {
    transform: scale(1.02);
}

.catalog-photo-btn:hover .photo-container img {
    filter: brightness(0.7) blur(1px);
}

.catalog-photo-btn:hover .photo-overlay {
    opacity: 1;
}

.catalog-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(14, 14, 14, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 164, 120, 0.4);
    color: #c9a478;
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.catalog-photo-btn:hover .catalog-badge {
    opacity: 0;
    transform: translateY(10px);
}

.catalog-photo-btn::after {
    content: attr(data-title) " - E-Katalog (2026)";

    display: block;
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
    text-align: left;
}

@media (max-width: 768px) {
    .catalog-badge {
        bottom: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 10px;
    }

    .catalog-photo-btn {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 280px;
    }
}

.info-item {
    margin-bottom: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
}
.info-item .label { display: block; font-size: 0.8rem; color: var(--accent-color); margin-bottom: 5px; }
.info-item .val { display: block; font-size: 1.1rem; color: #fff; font-family: var(--font-head); }

.d-content h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
}
.d-content p {
    color: #999;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.map-section {
    background: #111;
    padding: 50px 5%;
    position: relative;
    z-index: 2;
    padding-bottom: 100px;
}

.construction-status {
    background: #111;
    padding: 50px 5%;
    position: relative;
    z-index: 2;
}

.gallery-section {
    padding: 50px 5%;
    position: relative;
    z-index: 2;
}
.gallery-title { font-family: var(--font-head); color: #fff; margin-bottom: 50px; font-size: 2rem; }

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.g-item { height: 400px; overflow: hidden; }
.g-item.big { grid-column: span 2; height: 600px; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }

.next-project {
    background: var(--accent-color);
    padding: 100px 5%;
    text-align: center;
    position: relative;
    z-index: 2;
}
.next-link { text-decoration: none; color: #000; display: inline-block; }
.next-link .lbl { display: block; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 10px; }
.next-link .name { font-family: var(--font-head); font-size: 4rem; font-weight: 700; transition: letter-spacing 0.3s; }
.next-link:hover .name { letter-spacing: 5px; }

@media (max-width: 900px) {
    .projects-grid-wrapper { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
    .g-item.big { height: 300px; }
    .g-item { height: 250px; }
    .detail-title-box h1 { font-size: 12vw; }

    .detail-title-box {
        bottom: 50px;
    }

    .content-mid-img{
        height: 200px !important;
    }

    .santiye-aciklama {
        display: none;
    }

    .santiye-span {
        display: none;
    }
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

.feature-box {
    margin-bottom: 50px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
}

.feature-box h3, .plan-details h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #999;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.feature-list strong {
    color: #fff;
    font-weight: 600;
}

.plan-details {
    margin-bottom: 30px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
}

.spec-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #aaa;
}

.spec-val {
    font-family: var(--font-head);
    font-weight: 700;
    color: #fff;
}

.spec-row.highlight .spec-val {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    padding: 50px 5%;
    padding-top: 0px;
    background: var(--bg-color);
    min-height: 60vh;
}

.contact-grid {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-wrapper {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-group {
    margin-bottom: 40px;
    position: relative;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: #b9b9b9;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 12px 0;
    color: #fff;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    border-radius: 0;
}

::placeholder {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-bottom: 1px solid var(--accent-color);
    background: linear-gradient(to bottom, transparent 95%, rgba(255, 255, 255, 0.02)); 
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: var(--accent-color);
}

.form-group select {
    cursor: pointer;
    color: #ccc;
}
.form-group select option {
    background-color: #0e0e0e;
    color: #fff;
    padding: 10px;
}

.submit-btn {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 25px;
    font-family: var(--font-head);
    font-size: 1rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.submit-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

.alert {
    padding: 20px;
    margin-bottom: 50px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: 1px solid transparent;
    position: relative;
    animation: fadeIn 0.5s ease;
}

.alert.success {
    border-color: rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.05), transparent);
}

.alert.error {
    border-color: rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.05), transparent);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-section {
        padding: 50px 5%;
    }
    .submit-btn {
        padding: 20px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding-right: 0;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-logo {
        width: 120px;
        margin: 0 auto 20px auto;
    }

    .hero-anim-p {
        font-size: 0.9rem;
        letter-spacing: 2px;
        line-height: 1.5;
    }

    .scroll-indicator {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
    }

    .corporate-section {
        padding: 80px 5%;
    }

    .corp-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .corp-image-box {
        height: 400px;
        order: 1;
    }

    .corp-content {
        order: 2;
    }

    .exp-badge {
        right: 0;
        bottom: -20px;
        padding: 20px;
    }
    
    .exp-year { font-size: 2rem; }
    .exp-text { font-size: 0.7rem; }

    .corp-title {
        font-size: 2.5rem;
    }

    .projects-wrapper {
        height: auto;
        background: #111;
        padding-bottom: 50px;
        width: 100% !important;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .projects-container {
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .panel {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 0;
    }

    .text-panel {
        padding: 80px 20px;
        align-items: center;
        text-align: center;
    }

    .text-panel h2 {
        font-size: 3rem;
    }

    .project-panel {
        padding: 40px 20px;
        display: block;
    }

    .project-card {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        height: 400px;
        margin-bottom: 0;
    }

    .p-info h3 { font-size: 1.5rem; }

    .corporate-section {
        padding: 60px 25px !important; 
        overflow: hidden;
    }

    .corp-container {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .corp-content {
        width: 100%;
        padding-right: 0;
        box-sizing: border-box;
    }

    .corp-title {
        font-size: 2rem !important; 
        word-wrap: break-word;
        line-height: 1.2;
        margin-right: 0;
    }
    
    .corp-text {
        text-align: left;
        font-size: 1rem;
        padding-right: 5px;
    }
}

@media (max-width: 900px) {
    .page-hero {
        padding: 120px 20px 50px !important; 
        text-align: left;
    }

    .page-title {
        font-size: 3rem !important; 
        line-height: 1.1;
        margin-top: 15px;
    }

    .sub-title {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .projects-grid-wrapper {
        grid-template-columns: 1fr !important;
        gap: 50px;
    }

    .grid-img {
        height: 300px; 
    }

    .detail-hero {
        height: 35vh;
    }
}


.policy-section {
    padding-bottom: 80px;
    background: var(--bg-color);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--text-color);
    line-height: 1.8;
    font-family: var(--font-body);
}

h3.policy-heading { color: #c9a478; margin-bottom: 20px; }
h4.policy-subheading { margin-top: 30px; color: #fff; }

.table-wrapper {
    margin: 20px 0;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201, 164, 120, 0.2);
}

.policy-table th, .policy-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.policy-table th {
    background: rgba(201, 164, 120, 0.1);
    color: #c9a478;
    border-bottom: 1px solid rgba(201, 164, 120, 0.2);
}

.policy-table tbody { color: #ccc; }

.info-box {
    margin-top: 40px; 
    padding: 20px; 
    border-left: 3px solid #c9a478; 
    background: rgba(255,255,255,0.02);
}
@media screen and (max-width: 768px) {
    .policy-section {
        padding-bottom: 40px;
    }
    
    .policy-table thead {
        display: none;
    }
    
    .policy-table, .policy-table tbody, .policy-table tr, .policy-table td {
        display: block;
        width: 100%;
    }
    
    .policy-table tr {
        margin-bottom: 15px;
        border: 1px solid rgba(201, 164, 120, 0.2);
        border-radius: 8px;
        background: rgba(255,255,255,0.03);
    }
    
    .policy-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .policy-table td:last-child {
        border-bottom: none;
    }

    .policy-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        color: #c9a478;
    }
}