/* Import icon font */
@import url('hiltar-icon-font.css');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    overflow-x: hidden;
}

/* Container */
.header-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    border-bottom: 1px solid #B5B5B5;
}


.header-main {
    border-bottom: 1px solid #B5B5B5;
}

.sticky-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 20px;
}

.logo {
    height: 48px;
    width: auto;
}

.slogan {
    height: 12px;
    width: auto;
}

.divider {
    width: 0.5px;
    height: 47px;
    background-color: #B5B5B5;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    font-weight: 800;
}

/* Right Section */
.right-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 150px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    border: 1px solid #1a1a1a33;
    height: 40px;
}

.lang-option {
    padding: 6px 9px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-option.active {
    font-weight: 800;
}

.lang-divider {
    width: 1px;
    height: 20px;
    background-color: #1A1A1A;
}

/* Hamburger Button */
.hamburger-btn {
    background-color: #FF8F00;
    border: none;
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    overflow: hidden;
    right: 0;
}

.hamburger-btn i {
    font-size: 18px;
    color: white;
    transition: transform 0.3s ease;
    padding-right: 10px;
}

.hamburger-btn::before,
.hamburger-btn::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 3px;
    background-color: white;
    transition: transform 0.3s ease;
    opacity: 0;
}

.hamburger-btn::before {
    top: 37%;
    transform: translateX(-100%);
}

.hamburger-btn::after {
    bottom: 42%;
    transform: translateX(100%);
}

.hamburger-btn:hover::before {
    transform: translateX(10px);
    opacity: 1;
}

.hamburger-btn:hover::after {
    transform: translateX(-10px);
    opacity: 1;
}

.hamburger-btn:hover i {
    opacity: 0;
}

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 40px 0;
}
.breadcrumb-link {
    text-decoration: none;
}
.breadcrumb-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-text {
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
}

.breadcrumb-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-arrow {
    font-size: 15px;
    color: #FF8F00;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    transition: right 0.3s ease;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: #1A1A1A;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.mobile-menu-logos {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-slogan {
    height: 15px;
    width: auto;
}

.mobile-logo {
    height: 30px;
    width: auto;
}

.mobile-menu-close {
    background-color: #FF8F00;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-close i {
    font-size: 16px;
    color: white;
}

/* Mobile Navigation */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: auto;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #FF8F00;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info {
    color: white;
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #FF8F00;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 732px;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 0 60px;
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-text-container {
    width: 100%;
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    max-width: 580px;
    text-transform: uppercase;
}

.scroll-down-btn {
    background-color: #FF8F00;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    margin-left: 0px;
    transition: transform 0.3s ease;
}

.scroll-down-btn:hover {
    transform: translateY(5px);
}

.scroll-down-btn i {
    font-size: 18px;
    color: white;
}

/* Next Section (placeholder) */
.next-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.next-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.next-section p {
    text-align: center;
    font-size: 16px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .breadcrumb-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-text-container {
        padding: 0 40px;
    }
    
    .scroll-down-btn {
        margin-left: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-text-container {
        padding: 0 20px;
    }
    
    .scroll-down-btn {
        margin-left: 20px;
    }
    
    .mobile-menu {
        max-width: 350px;
        padding: 20px;
    }
    
    .logo {
        height: 35px;
    }
    
    .slogan {
        height: 9px;
    }
}

@media (max-width: 480px) {
    .logo-section {
        gap: 10px;
        align-items: flex-start;
        flex-direction: column-reverse;
    }
    .divider {
        display: none;
    }
    .hero-title {
        font-size: 32px;
        max-width: 300px;
    }
    
    .breadcrumb-text {
        font-size: 14px;
    }
    
    .mobile-menu {
        max-width: 100%;
    }
    
    .language-switcher {
        display: none;
    }
    
    .lang-option {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .hamburger-btn {
        width: 86px;
        height: 74px;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* About Image */
.about-image {
    flex: 1;
    max-width: 50%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    padding-top: 30px;
}

/* About Text */
.about-text {
    flex: 1;
    max-width: 570px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
    margin-bottom: 80px;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.2;
    margin: 0;
}

.about-description {
    font-size: 20px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.6;
    margin: 0;
}

/* About Link */
.about-link-wrapper {
    position: relative;
    max-width: 110px;
}

.about-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1A1A1A;
    padding-bottom: 10px;
    position: relative;
    z-index: 2;
}

.about-link-text {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
}

.about-arrow {
    font-size: 15px;
    color: #FF8F00;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.about-link-underline {
    height: 1px;
    background-color: #1A1A1A;
    width: 100%;
    max-width: 120px;
    margin-left: auto; /* Bu sağa yaslar */
    transition: width 0.3s ease;
}
.about-link:hover + .about-link-underline {
    width: 0%;
}
/* Hover Effects */
.about-link:hover .about-arrow {
   transform: rotate(45deg);
}
.about-link-text:hover {
    color: #FF8F00;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        gap: 60px;
    }
    
    .about-text {
        gap: 60px;
        margin-bottom: 10px;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image,
    .about-text {
        max-width: 100%;
    }
    .breadcrumb-right {
        display: none;
    }
    .about-text {
        gap: 40px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-text {
        gap: 30px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .about-link-text {
        font-size: 14px;
    }
    
    .about-arrow {
        font-size: 13px;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: white;
    overflow: hidden;
}

/* Services Header */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.services-title {
    font-size: 64px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.services-arrows {
    display: flex;
    gap: 20px;
}

.services-arrow {
    background: none;
    border: none;
    font-size: 24px;
    color: #1A1A1A;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
}

.services-arrow:hover {
    color: #FF8F00;
}

.services-arrow-left:hover {
    transform: translateX(-5px);
}

.services-arrow-right:hover {
    transform: translateX(5px);
}

/* Slider Container */
.services-slider-container {
    position: relative;
    margin-left: calc((100vw - 1410px) / 2 + 20px);
}

.services-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease;
    padding-right: 50px;
}

/* Individual Slide */
.services-slide {
    min-width: 570px;
    height: 377px;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-slide[data-bg="#FF8F00"] {
    background-color: #FF8F00;
}

.services-slide[data-bg="#1A1A1A"] {
    background-color: #1A1A1A;
}

.services-slide[data-bg="#5D5D5D"] {
    background-color: #5D5D5D;
}

/* Slide Logo */
.slide-logo {
    align-self: flex-start;
}

.slide-logo img {
    height: 24px;
    width: auto;
}

/* Slide Content */
.slide-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slide-divider {
    height: 1px;
    background-color: white;
    width: 100%;
    transition: width 0.3s ease;
    transform-origin: right;
}

.slide-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
    transition: transform 0.3s ease;
}

.slide-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-link-text {
    font-size: 16px;
    color: white;
    transition: transform 0.3s ease;
}

.slide-arrow {
    font-size: 14px;
    color: white;
    transition: transform 0.3s ease;
}

/* Slide Hover Effects */
.services-slide:hover .slide-divider {
    width: 0%;
}

.services-slide:hover .slide-title {
    transform: translateY(-20px);
}

.services-slide:hover .slide-arrow {
    transform: translateX(5px);
}

/* Mobile Dots (Lines) */
.services-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding-right: 50px;
}

.dot {
    width: 30px;
    height: 3px;
    background-color: #1A1A1A;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.3;
}

.dot.active {
    background-color: #FF8F00;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-title {
        font-size: 48px;
    }
    
    .services-slider-container {
        margin-left: 20px;
    }
    
    .services-slide {
        /* min-width: 450px; */
        height: 320px;
        padding: 30px;
    }
    
    .slide-title {
        font-size: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-title {
        font-size: 36px;
        padding-bottom: 20px;
    }
    
 
    .services-header {
        flex-direction: column;
    }
    .services-slider-container {
        margin-left: 0;
        margin-right: 0;
        overflow: hidden;
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .services-slider {
        gap: 0;
        padding-right: 0;
    }
    
    .services-slide {
        min-width: 90vw;
        width: 90vw;
        margin: 5vw;
        height: 416px;
        padding: 30px;
        flex-shrink: 0;
        box-sizing: border-box;
    }
    
    .slide-title {
        font-size: 18px;
    }
    
    .services-dots {
        display: flex;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    .services-slide {
        height: 380px;
        padding: 25px;
    }
    
    .slide-title {
        font-size: 16px;
    }
    
    .slide-link-text {
        font-size: 14px;
    }
    
    .services-dots {
        margin-left: 15px;
        margin-right: 15px;
    }
}

/* Why Hiltar Section */
.why-hiltar-section {
    width: 100%;
    height: 840px;
    background-color: #1A1A1A;
    background-image: url('../img/img-bg-neden-hiltar.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.why-hiltar-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Section Header */
.why-hiltar-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-hiltar-title {
    font-size: 64px;
    font-weight: 700;
    color: white;
    margin: 0 0 30px 0;
}

.why-hiltar-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: white;
    line-height: 1.5;
    max-width: 660px;
    margin: 0 auto;
}

/* Features Slider */
.features-slider-container {
    margin-bottom: 60px;
    overflow: hidden;
    cursor: grab;
}

.features-slider-container:active {
    cursor: grabbing;
}

.features-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease;
    user-select: none;
}

.feature-item {
    flex-shrink: 0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 25%;
}

/* Feature Icon */
.feature-icon {
    align-self: flex-start;
}

.feature-icon i {
    font-size: 72px;
    color: #FF8F00;
}

/* Feature Text */
.feature-text {
    font-size: 16px;
    font-weight: 400;
    color: white;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Slider Dots */
.features-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.feature-dot {
    height: 4px;
    background-color: #B5B5B5;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
}

.feature-dot.active {
    background-color: #FF8F00;
    width: 76px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .feature-item {
        min-width: calc((100% - 60px) / 3); /* 3 items visible */
        padding: 35px 15px;
    }
    
    .why-hiltar-title {
        font-size: 56px;
    }
    
    .why-hiltar-subtitle {
        font-size: 22px;
    }
    
    .feature-icon i {
        font-size: 64px;
    }
}

@media (max-width: 1024px) {
    .why-hiltar-section {
        display: none;
    }
    
    .feature-item {
        min-width: calc((100% - 30px) / 2); /* 2 items visible */
        padding: 30px 15px;
    }
    
    .feature-icon i {
        font-size: 60px;
    }
    
    .why-hiltar-title {
        font-size: 48px;
    }
    
    .why-hiltar-subtitle {
        font-size: 20px;
        max-width: 500px;
    }
    
    .why-hiltar-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .why-hiltar-section {
        height: 600px;
    }
    
    .feature-item {
        min-width: calc(100% - 40px); /* 1 item visible */
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .features-slider {
        gap: 0;
    }
    
    .why-hiltar-title {
        font-size: 36px;
    }
    
    .why-hiltar-subtitle {
        font-size: 18px;
        max-width: 400px;
    }
    
    .why-hiltar-header {
        margin-bottom: 40px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .feature-icon i {
        font-size: 56px;
    }
}

@media (max-width: 480px) {
    .why-hiltar-section {
        height: 500px;
    }
    
    .why-hiltar-title {
        font-size: 28px;
    }
    
    .why-hiltar-subtitle {
        font-size: 16px;
        max-width: 300px;
    }
    
    .feature-item {
        padding: 25px 15px;
        gap: 20px;
    }
    
    .feature-icon i {
        font-size: 48px;
    }
    
    .feature-text {
        font-size: 13px;
    }
    
    .feature-dot {
        width: 25px;
    }
    
    .feature-dot.active {
        width: 60px;
    }
}

/* What We Did Section */
.what-we-did-section {
    padding: 100px 0;
    background-color: white;
}

/* Section Header */
.what-we-did-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.what-we-did-title-area {
    flex: 1;
}

.what-we-did-title {
    font-size: 64px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 20px 0;
}

.what-we-did-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.5;
}

/* What We Did Link */
.what-we-did-link-wrapper {
    position: relative;
}

.what-we-did-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1A1A1A;
    padding-bottom: 10px;
    position: relative;
    z-index: 2;
}

.what-we-did-link-text {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
}

.what-we-did-arrow {
    font-size: 15px;
    color: #FF8F00;
    transition: transform 0.3s ease;
    
}

.what-we-did-underline {
    height: 1px;
    background-color: #1A1A1A;
    width: 100%;
    transition: width 0.3s ease;
    transform-origin: right;
}

/* What We Did Hover Effects */
.what-we-did-link:hover .what-we-did-arrow {
    transform: rotate(45deg);
}

.what-we-did-link:hover + .what-we-did-underline {
    width: 0%;
}

/* Projects Slider */
.projects-slider-container {
    margin-bottom: 60px;
    overflow: hidden;
    cursor: grab;
}

.projects-slider-container:active {
    cursor: grabbing;
}

.projects-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease;
    user-select: none;
}
.projects-slider a{
    text-decoration: none;
}
.project-item {
    height: 500px;
    background-color: #1A1A1A;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    max-width: 31%;
}

/* Project Header */
.project-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.project-year {
    font-size: 14px;
    font-weight: 500;
    color: white;
    border: 1px solid white;
    padding: 8px 12px;
    display: inline-block;
}

.project-company {
    font-size: 14px;
    font-weight: 400;
    color: white;
    text-align: left;
    text-transform: uppercase;
}

/* Project Content */
.project-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-divider {
    height: 1px;
    background-color: white;
    width: 100%;
    transition: width 0.3s ease;
    transform-origin: right;
}

.project-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
    transition: transform 0.3s ease;
    text-align: left;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-link-text {
    font-size: 16px;
    color: white;
    transition: transform 0.3s ease;
}

.project-arrow {
    font-size: 14px;
    color: white;
    transition: transform 0.3s ease;
}

/* Project Hover Effects */
.project-item:hover .project-divider {
    width: 0%;
}

.project-item:hover .project-title {
    transform: translateY(-15px);
}

.project-item:hover .project-arrow {
    transform: translateX(5px);
}

/* Projects Dots */
.projects-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.project-dot {
    height: 4px;
    background-color: #B5B5B5;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
}

.project-dot.active {
    background-color: #FF8F00;
    width: 76px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .project-item {
        min-width: calc((100% - 30px) / 2); /* 2 items visible */
        height: 380px;
        padding: 25px;
    }
    
    .what-we-did-title {
        font-size: 56px;
    }
    
    .what-we-did-subtitle {
        font-size: 22px;
    }
    
    .project-title {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    .what-we-did-section {
        padding: 80px 0;
    }
    
    .what-we-did-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .what-we-did-title {
        font-size: 48px;
    }
    
    .what-we-did-subtitle {
        font-size: 20px;
    }
    
    .project-item {
        height: 360px;
        padding: 20px;
    }
    
    .project-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .what-we-did-section {
        padding: 60px 0;
    }
    
    .project-item {
        min-width: calc(100% - 40px); /* 1 item visible */
        height: 340px;
        margin: 0 20px;
    }
    
    .projects-slider {
        gap: 0;
    }
    
    .what-we-did-title {
        font-size: 36px;
    }
    
    .what-we-did-subtitle {
        font-size: 18px;
    }
    
    .what-we-did-header {
        margin-bottom: 40px;
    }
    
    .project-title {
        font-size: 18px;
    }
    
    .project-link-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .what-we-did-title {
        font-size: 28px;
    }
    
    .what-we-did-subtitle {
        font-size: 16px;
    }
    
    .project-item {
        height: 320px;
        padding: 20px;
    }
    
    .project-title {
        font-size: 16px;
    }
    
    .project-year {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .project-company {
        font-size: 12px;
    }
    
    .project-dot {
        width: 25px;
    }
    
    .project-dot.active {
        width: 60px;
    }
}

/* Turkey Map Section */
.turkey-map-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f8f8f8;
}

.turkey-map-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1A1A1A 0%, #1A1A1A 75%, #f8f8f8 75%, #f8f8f8 100%);
}

/* Content Area */
.turkey-map-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 80px;
    margin-bottom: 60px;
}

/* Left Text Content */
.turkey-map-text {
    flex: 1;
    max-width: 600px;
}

.turkey-map-description {
    font-size: 16px;
    font-weight: 400;
    color: white;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.turkey-map-title {
    font-size: 60px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

/* Right Stats */
.turkey-map-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #FF8F00;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    font-weight: 400;
    color: white;
    line-height: 1.4;
    max-width: 140px;
}

.stat-divider {
    width: 1px;
    height: 100px;
    background-color: rgb(255, 255, 255, 0.3);
}

/* Map Container */
.turkey-map-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.turkey-map-svg {
    position: relative;
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Project Locations */
.project-locations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.location-point {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.point-glow {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 143, 0, 0.6) 0%, rgba(255, 143, 0, 0.3) 50%, rgba(255, 143, 0, 0.1) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.point-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #FF8F00;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255, 143, 0, 0.5);
    transition: all 0.3s ease;
}

/* Tooltip */
.location-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1A1A1A;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

.location-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1A1A1A;
}

.tooltip-city {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #FF8F00;
    margin-bottom: 2px;
}

.tooltip-project {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: white;
}

/* Hover Effects */
.location-point:hover .point-dot {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 20px rgba(255, 143, 0, 0.8);
}

.location-point:hover .location-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .turkey-map-svg {
        width: 1200px;
    }
    
    .turkey-map-title {
        font-size: 52px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .turkey-map-stats {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
   
    .turkey-map-svg {
        width: 1000px;
    }
    
    .turkey-map-content {
        flex-direction: column;
        gap: 40px;
        padding-top: 60px;
        margin-bottom: 40px;
    }
    
    .turkey-map-stats {
        justify-content: center;
    }
    
    .turkey-map-title {
        font-size: 46px;
        text-align: center;
    }
    
    .turkey-map-description {
        text-align: center;
    }
    .header-content {
        padding: 10px 0px;
    }
}

@media (max-width: 768px) {
   
    
    .turkey-map-svg {
        width: 800px;
    }
    
    .turkey-map-content {
        padding-top: 40px;
        gap: 30px;
    }
    
    .turkey-map-title {
        font-size: 36px;
    }
    
    .turkey-map-description {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-text {
        font-size: 14px;
    }
    
    .turkey-map-stats {
        gap: 20px;
    }
    
    .stat-divider {
        height: 50px;
    }
    
    .point-dot {
        width: 10px;
        height: 10px;
    }
    
    .point-glow {
        width: 20px;
        height: 20px;
    }
    
    .tooltip-city {
        font-size: 11px;
    }
    
    .tooltip-project {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
  
    
    .turkey-map-svg {
        width: 600px;
    }
    
    .turkey-map-title {
        font-size: 28px;
    }
    
    .turkey-map-description {
        font-size: 13px;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .stat-text {
        font-size: 12px;
    }
    
    .turkey-map-stats {
        gap: 15px;
    }
    
    .point-dot {
        width: 8px;
        height: 8px;
    }
    
    .point-glow {
        width: 16px;
        height: 16px;
    }
    
    .location-tooltip {
        padding: 6px 8px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: white;
}

/* Section Header */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.gallery-title-area {
    flex: 1;
}

.gallery-title {
    font-size: 64px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 20px 0;
}

.gallery-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.5;
}

/* Gallery Link */
.gallery-link-wrapper {
    position: relative;
}

.gallery-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1A1A1A;
    padding-bottom: 10px;
    position: relative;
    z-index: 2;
}

.gallery-link-text {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
}

.gallery-arrow {
    font-size: 15px;
    color: #FF8F00;
    transition: transform 0.3s ease;
    transform: rotate(45deg);
}

.gallery-underline {
    height: 1px;
    background-color: #1A1A1A;
    width: 100%;
    transition: width 0.3s ease;
    transform-origin: right;
}

/* Gallery Hover Effects */
.gallery-link:hover .gallery-arrow {
    transform: rotate(0deg);
}

.gallery-link:hover + .gallery-underline {
    width: 0%;
}

/* Gallery Grid */
.gallery-grid {
    display: flex;
    gap: 30px;
    height: 600px;
}

.gallery-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-right {
    flex: 1;
}

/* Gallery Items */
/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(0.98);
}

.gallery-item-large {
    flex: 2;
}

.gallery-bottom {
    flex: 1;
    display: flex;
    gap: 20px;
}

.gallery-item-small {
    flex: 1;
}

.gallery-item-full {
    height: 100%;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.1);
}

/* Video Play Button */
.gallery-item-video {
    position: relative;
}

.gallery-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-decoration: none;
    transition: transform 0.3s ease;
}


.play-btn-circle {
    width: 72px;
    height: 72px;
    background-color: rgba(26, 26, 26, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}



.play-icon {
    font-size: 35px;
    color: #FF8F00;
    margin-left: 4px; /* Slight offset to center visually */
}

.play-icon::before {
    content: "▶";
    font-family: inherit;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-title {
        font-size: 56px;
    }
    
    .gallery-subtitle {
        font-size: 22px;
    }
    
    .gallery-grid {
        height: 500px;
    }
}

@media (max-width: 1024px) {
    .gallery-section {
        padding: 80px 0;
    }
    
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .gallery-title {
        font-size: 48px;
        text-align: center;
    }
    
    .gallery-subtitle {
        font-size: 20px;
        text-align: center;
    }
    
    .gallery-grid {
        height: 450px;
        gap: 20px;
    }
    
    .gallery-bottom {
        gap: 15px;
    }
    
    .play-btn-circle {
        width: 60px;
        height: 60px;
    }
    
    .play-icon {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-title {
        font-size: 36px;
    }
    
    .gallery-subtitle {
        font-size: 18px;
    }
    
    .gallery-grid {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
    
    .gallery-left {
        height: 400px;
    }
    
    .gallery-right {
        height: 300px;
    }
    
    .gallery-bottom {
        gap: 10px;
    }
    
    .gallery-header {
        margin-bottom: 40px;
    }
    
    .play-btn-circle {
        width: 50px;
        height: 50px;
    }
    
    .play-icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 28px;
    }
    
    .gallery-subtitle {
        font-size: 16px;
    }
    
    .gallery-left {
        height: 350px;
    }
    
    .gallery-right {
        height: 250px;
    }
    
    .gallery-grid {
        gap: 10px;
    }
    
    .gallery-bottom {
        gap: 8px;
    }
    
    .play-btn-circle {
        width: 40px;
        height: 40px;
    }
    
    .play-icon {
        font-size: 16px;
    }
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    background-color: #FF8F00;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.lightbox-close:hover {
    background-color: #e67e00;
    transform: rotate(90deg);
}

.lightbox-close i {
    font-size: 18px;
    color: white;
}

/* Gallery Items - Add Cursor Pointer */
.gallery-item[data-gallery-item] {
    cursor: pointer;
}

/* Play Icon Fix */
.play-icon::before {
    content: "▶";
    font-family: inherit;
    font-style: normal;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-container {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-image {
        max-height: 70vh;
    }
    
    .lightbox-close {
        top: -50px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .lightbox-close {
        top: -40px;
        width: 36px;
        height: 36px;
    }
    
    .lightbox-close i {
        font-size: 14px;
    }
    
    .lightbox-image {
        max-height: 60vh;
    }
}

/* Footer Section */
.footer-section {
    background-color: white;
    padding: 80px 0 0 0;
}

/* Footer Top - Slogan */
.footer-top {
    margin-bottom: 60px;
}

.footer-slogan {
    height: 40px;
    width: auto;
}

/* Footer Main Content */
.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

/* Company Info Section */
.footer-company {
    flex: 1;
    max-width: 50%;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 30px;
}

.footer-contact {
    margin-bottom: 30px;
}

.contact-item {
    font-size: 18px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #FF8F00;
}

.social-icon i {
    font-size: 18px;
}

/* Footer Links Section */
.footer-links {
    flex: 1;
    display: flex;
    gap: 60px;
}

.footer-links-column {
    flex: 1;
}

.footer-links-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 25px 0;
    text-transform: uppercase;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 15px;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF8F00;
}

/* Footer Legal Links */
.footer-legal {
    display: flex;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.3);
}

.legal-link {
    font-size: 13px;
    font-weight: 400;
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #FF8F00;
}

/* Footer Bottom */
.footer-bottom {
    background-color: white;
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 13px;
    font-weight: 400;
    color: #1A1A1A;
    margin: 0;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 10px;
}

.credits-text {
    font-size: 13px;
    font-weight: 400;
    color: #1A1A1A;
}

.credits-link {
    text-decoration: none;
}

.credits-logo {
    height: 11px;
    width: auto;
    transition: opacity 0.3s ease;
}

.credits-link:hover .credits-logo {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-main {
        gap: 60px;
    }
    
    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .footer-section {
        padding: 60px 0 0 0;
    }
    
    .footer-top {
        margin-bottom: 50px;
    }
    
    .footer-main {
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .footer-links {
        gap: 30px;
    }
    
    .contact-item {
        font-size: 16px;
    }
    
    .footer-links-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 0 0;
    }
    
    .footer-top {
        margin-bottom: 40px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-company {
        max-width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .contact-item {
        font-size: 14px;
    }
    
    .footer-links-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-links-list li {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 0 0 0;
    }
    
    .footer-slogan {
        height: 25px;
    }
    
    .footer-logo {
        height: 40px;
        margin-bottom: 25px;
    }
    
    .footer-top {
        margin-bottom: 30px;
    }
    
    .footer-main {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-links {
        gap: 25px;
    }
    
    .contact-item {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-icon {
        width: 16px;
        height: 16px;
    }
    
    .social-icon i {
        font-size: 16px;
    }
    
    .footer-links-title {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .footer-links-list li {
        margin-bottom: 10px;
    }
    
    .legal-link,
    .footer-copyright p,
    .credits-text {
        font-size: 12px;
    }
    
    .credits-logo {
        height: 10px;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
}

/* Page Banner */
.page-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.page-banner-ver2 {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.page-banner-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-banner-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.page-banner-ver2 .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.page-banner-content {
    width: 100%;
}

.page-breadcrumb {
    font-size: 14px;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
    max-width: 700px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-banner {
        height: 350px;
    }

    .page-banner-ver2 {
        height: 600px;
    }
    
    .page-title {
        font-size: 42px;
    }
    
    .page-breadcrumb {
        font-size: 13px;
        margin-bottom: 18px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 300px;
    }

    .page-banner-ver2 {
        height: 500px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-breadcrumb {
        font-size: 12px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        height: 250px;
    }
    .page-banner-ver2 {
        height: 450px;
    }
    .page-title {
        font-size: 28px;
    }
    
    .page-breadcrumb {
        font-size: 11px;
        margin-bottom: 14px;
    }
}

/* Corporate Content Section */
.corporate-content-section {
    padding: 100px 0;
    background-color: white;
}

.corporate-content {
    display: flex;
    gap: 80px;
}

/* Sidebar Navigation */
.corporate-sidebar {
    flex: 0 0 300px;
}

.corporate-nav {
    border: 1px solid #909090;
    background: white;
}

.corporate-nav-btn {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    border-bottom: 1px solid #909090;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    text-align: left;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.corporate-nav-btn:last-child {
    border-bottom: none;
}

.corporate-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #FF8F00;
    transition: left 0.3s ease;
    z-index: 0;
}

.corporate-nav-btn:hover::before {
    left: 0;
}

.corporate-nav-btn:hover {
    color: white;
}

.corporate-nav-btn span {
    position: relative;
    z-index: 2;
}

/* Main Content Area */
.corporate-main {
    flex: 1;
}

.corporate-section {
    display: block;
}

.corporate-title {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.4;
    margin-bottom: 40px;
}

.corporate-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 40px 0 20px 0;
    text-transform: uppercase;
}

.corporate-text {
    font-size: 20px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background-color: white;
}

.mission-vision-grid {
    display: flex;
    gap: 30px;
}

.mission-vision-item {
    flex: 1;
    background-color: #F9F9F9;
    padding: 60px 40px;
}

.mission-vision-title {
    font-size: 64px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 30px;
}

.mission-vision-text {
    font-size: 20px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.6;
}

/* Quality Policy Section */
.quality-policy-section {
    background-color: #1A1A1A;
    padding: 0;
}

.quality-policy-container {
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
}

.quality-policy-content {
    max-width: 1410px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.quality-policy-left {
    flex: 1;
}

.quality-policy-title {
    font-size: 64px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.quality-policy-right {
    flex: 1;
}

.quality-policy-text {
    color: white;
}

.quality-policy-text p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quality-policy-text strong {
    font-weight: 100;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .corporate-content {
        gap: 60px;
    }
    
    .corporate-sidebar {
        flex: 0 0 280px;
    }
    
    .corporate-title {
        font-size: 32px;
    }
    
    .mission-vision-title {
        font-size: 56px;
    }
    
    .quality-policy-title {
        font-size: 56px;
    }
    
    .quality-policy-content {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .corporate-content-section {
        padding: 80px 0;
    }
    
    .corporate-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .corporate-sidebar {
        flex: none;
        width: 100%;
    }
    
    .corporate-nav {
        display: flex;
        flex-wrap: wrap;
    }
    
    .corporate-nav-btn {
        flex: 1;
        border-bottom: 1px solid #909090;
        border-right: 1px solid #909090;
        min-width: 200px;
    }
    
    .corporate-nav-btn:last-child {
        border-right: none;
    }
    
    .mission-vision-section {
        padding: 80px 0;
    }
    
    .mission-vision-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .mission-vision-item {
        padding: 40px 30px;
    }
    
    .mission-vision-title {
        font-size: 48px;
    }
    
    .quality-policy-content {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }
    
    .quality-policy-left {
        flex: none;
    }
}

@media (max-width: 768px) {
    .corporate-content-section {
        padding: 60px 0;
    }
    
    .corporate-nav {
        flex-direction: column;
    }
    
    .corporate-nav-btn {
        border-right: none;
        border-bottom: 1px solid #909090;
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .corporate-nav-btn:last-child {
        border-bottom: none;
    }
    
    .corporate-title {
        font-size: 26px;
    }
    
    .corporate-text {
        font-size: 16px;
    }
    
    .corporate-subtitle {
        font-size: 20px;
    }
    
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-vision-item {
        padding: 30px 25px;
    }
    
    .mission-vision-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .mission-vision-text {
        font-size: 16px;
    }
    
    .quality-policy-title {
        font-size: 36px;
    }
    
    .quality-policy-text p {
        font-size: 18px;
    }
    
    .quality-policy-content {
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    .corporate-content-section {
        padding: 50px 0;
    }
    
    .corporate-nav-btn {
        padding: 15px 18px;
        font-size: 14px;
    }
    
    .corporate-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .corporate-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .corporate-subtitle {
        font-size: 18px;
        margin: 30px 0 15px 0;
    }
    
    .mission-vision-section {
        padding: 50px 0;
    }
    
    .mission-vision-grid {
        gap: 15px;
    }
    
    .mission-vision-item {
        padding: 25px 20px;
    }
    
    .mission-vision-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .mission-vision-text {
        font-size: 15px;
    }
    
    .quality-policy-title {
        font-size: 28px;
    }
    
    .quality-policy-text p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .quality-policy-content {
        padding: 40px 15px;
        gap: 30px;
    }
}

@media (max-width: 360px) {
    .corporate-title {
        font-size: 20px;
    }
    
    .corporate-text {
        font-size: 14px;
    }
    
    .corporate-subtitle {
        font-size: 16px;
    }
    
    .mission-vision-title {
        font-size: 24px;
    }
    
    .mission-vision-text {
        font-size: 14px;
    }
    
    .quality-policy-title {
        font-size: 24px;
    }
    
    .quality-policy-text p {
        font-size: 15px;
    }
    
    .corporate-nav-btn {
        padding: 12px 15px;
        font-size: 13px;
    }
}

/* Services Grid Section */
.services-grid-section {
    padding: 100px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Service Card */
.service-card {
    height: 400px;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card[data-bg="#FF8F00"] {
    background-color: #FF8F00;
}

.service-card[data-bg="#1A1A1A"] {
    background-color: #1A1A1A;
}

.service-card[data-bg="#5D5D5D"] {
    background-color: #5D5D5D;
}

/* Service Logo */
.service-logo {
    align-self: flex-start;
}

.service-logo img {
    height: 24px;
    width: auto;
}

/* Service Content */
.service-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-divider {
    height: 1px;
    background-color: white;
    width: 100%;
    transition: width 0.3s ease;
    transform-origin: right;
}

.service-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
    transition: transform 0.3s ease;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-link-text {
    font-size: 16px;
    color: white;
    transition: transform 0.3s ease;
}

.service-arrow {
    font-size: 14px;
    color: white;
    transition: transform 0.3s ease;
}

/* Service Hover Effects */
.service-card:hover .service-divider {
    width: 0%;
}

.service-card:hover .service-title {
    transform: translateY(-25px);
}

.service-card:hover .service-arrow {
    transform: translateX(5px);
}


/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        gap: 25px;
    }
    
    .service-card {
        height: 380px;
        padding: 35px;
    }
    
    .service-title {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    .services-grid-section {
        padding: 80px 0;
    }
    
    .service-card {
        height: 360px;
        padding: 30px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .services-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        height: 300px;
        padding: 25px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-link-text {
        font-size: 14px;
    }
    
    .service-logo img {
        height: 20px;
    }
}

@media (max-width: 480px) {
    .services-grid-section {
        padding: 50px 0;
    }
    
    .service-card {
        height: 280px;
        padding: 20px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
    .service-link-text {
        font-size: 13px;
    }
    
    .service-arrow {
        font-size: 12px;
    }
    
    .service-logo img {
        height: 18px;
    }
    
    .service-content {
        gap: 15px;
    }
}

@media (max-width: 360px) {
    .service-card {
        height: 260px;
        padding: 18px;
    }
    
    .service-title {
        font-size: 15px;
    }
    
    .service-link-text {
        font-size: 12px;
    }
}

/* Projects Grid Section */
.projects-grid-section {
    padding: 100px 0;
    background-color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Project Card */
.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* Project Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1A1A1A;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    color: white;
}

/* Project Info (Top) */
.project-info {
    align-self: flex-start;
}

.project-year {
    font-size: 14px;
    font-weight: 500;
    color: white;
    border: 1px solid white;
    padding: 8px 12px;
    display: inline-block;
    margin-bottom: 15px;
}

.project-company {
    font-size: 14px;
    font-weight: 400;
    color: white;
    text-align: left;
}

/* Project Details (Bottom) */
.project-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-divider {
    height: 1px;
    background-color: white;
    width: 100%;
    transition: width 0.3s ease;
    transform-origin: right;
}

.project-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
    transition: transform 0.3s ease;
    text-align: left;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-link-text {
    font-size: 16px;
    color: white;
    transition: transform 0.3s ease;
}

.project-arrow {
    font-size: 14px;
    color: white;
    transition: transform 0.3s ease;
}

/* Project Hover Effects */
.project-card:hover .project-divider {
    width: 0%;
}

.project-card:hover .project-title {
    transform: translateY(-10px);
}

.project-card:hover .project-arrow {
    transform: translateX(5px);
}

.banner-content-ver2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 550px;
}

.project-company {
    font-size: 24px;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .projects-grid {
        gap: 25px;
    }
    
    .project-image {
        height: 380px;
    }
    
    .project-title {
        font-size: 22px;
    }
    
    .project-overlay {
        padding: 25px;
    }
}

@media (max-width: 1024px) {
    .projects-grid-section {
        padding: 80px 0;
    }
    .banner-content-ver2 {
        height: 450px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .project-image {
        height: 360px;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    .project-overlay {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .projects-grid-section {
        padding: 60px 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .banner-content-ver2 {
        height: 350px;
    }
    .project-image {
        height: 300px;
    }
    
    .project-title {
        font-size: 18px;
    }
    
    .project-link-text {
        font-size: 14px;
    }
    
    .project-year {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .project-company {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .projects-grid-section {
        padding: 50px 0;
    }
    
    .project-image {
        height: 280px;
    }
    
    .project-title {
        font-size: 16px;
    }
    
    .project-link-text {
        font-size: 13px;
    }
    
    .project-arrow {
        font-size: 12px;
    }
    
    .project-overlay {
        padding: 18px;
    }
    
    .project-details {
        gap: 15px;
    }
}

@media (max-width: 360px) {
    .project-image {
        height: 260px;
    }
    
    .project-title {
        font-size: 15px;
    }
    
    .project-link-text {
        font-size: 12px;
    }
    
    .project-overlay {
        padding: 15px;
    }
}

.project-button-area {
    display: flex;
    align-items: center;
}

.project-button-area h5 {
    color:white;
    font-size: 14px;
    font-weight: 700;
    padding-left: 15px;
}

/* Project Detail Section */
.project-detail-section {
    padding: 100px 0;
    background-color: white;
}

.project-detail-content {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

/* Left Panel */
.project-detail-left {
    width: 570px;
    background-color: #FF8F00;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    min-height: 250px;
}

.project-name-label {
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: absolute;
    top: 40px;
    left: 40px;
}

.project-name {
    font-size: 32px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
    text-align: left;
}

/* Right Panel */
.project-detail-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.project-info-item {
    flex: 1;
    background-color: #F9F9F9;
    margin-bottom: 5px;
}

.project-info-item:last-child {
    border-bottom: none;
}

.project-info-content {
    height: 100px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.project-info-label {
    font-size: 11px;
    font-weight: 700;
    color: #5D5D5D;
    text-transform: uppercase;
    min-width: 100px;
    flex-shrink: 0;
}

.project-info-divider {
    width: 1px;
    height: 30px;
    background-color: #5D5D5D;
    flex-shrink: 0;
}

.project-info-value {
    font-size: 20px;
    font-weight: 500;
    color: #1A1A1A;
    flex: 1;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .project-detail-content {
        gap: 40px;
    }
    
    .project-detail-left {
        width: 500px;
        padding: 35px;
    }
    
    .project-name-label {
        top: 35px;
        left: 35px;
    }
    
    .project-name {
        font-size: 28px;
    }
    
    .project-info-content {
        height: 93px;
        padding: 0 25px;
        gap: 25px;
    }
    
    .project-info-value {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .project-detail-section {
        padding: 80px 0;
    }
    
    .project-detail-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .project-detail-left {
        width: 100%;
        max-width: 100%;
        padding: 30px;
    }
    
    .project-name-label {
        top: 30px;
        left: 30px;
    }
    
    .project-name {
        font-size: 26px;
    }
    
    .project-info-content {
        height: 80px;
        padding: 0 20px;
        gap: 20px;
    }
    
    .project-info-label {
        min-width: 90px;
    }
    
    .project-info-value {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .project-detail-section {
        padding: 60px 0;
    }
    
    .project-detail-left {
        padding: 25px;
    }
    
    .project-name-label {
        top: 25px;
        left: 25px;
        font-size: 10px;
    }
    
    .project-name {
        font-size: 22px;
    }
    
    .project-info-content {
        height: 70px;
        padding: 0 18px;
        gap: 18px;
    }
    
    .project-info-label {
        font-size: 10px;
        min-width: 80px;
    }
    
    .project-info-divider {
        height: 25px;
    }
    
    .project-info-value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .project-detail-left {
        padding: 20px;
    }
    
    .project-name-label {
        top: 20px;
        left: 20px;
        font-size: 9px;
    }
    
    .project-name {
        font-size: 18px;
    }
    
    .project-info-content {
        height: 60px;
        padding: 0 15px;
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-info-label {
        font-size: 9px;
        min-width: auto;
    }
    
    .project-info-divider {
        display: none;
    }
    
    .project-info-value {
        font-size: 14px;
        margin-top: 5px;
    }
}

@media (max-width: 360px) {
    .project-detail-left {
        padding: 18px;
    }
    
    .project-name-label {
        top: 18px;
        left: 18px;
    }
    
    .project-name {
        font-size: 16px;
    }
    
    .project-info-content {
        height: 55px;
        padding: 0 12px;
    }
    
    .project-info-value {
        font-size: 13px;
    }
}

/* Project Gallery Section */
.project-gallery-section {
    padding: 100px 0;
    background-color: white;
    width: 100%;
    overflow: hidden;
}

/* Gallery Header */
.project-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.project-gallery-title {
    font-size: 32px;
    font-weight: 400;
    color: #1A1A1A;
    margin: 0;
}

/* Gallery Slider Container */
.project-gallery-slider-container {
    width: 100%;
    position: relative;
}

.project-gallery-slider {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* Gallery Images */
.gallery-images-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(0);
    transition: transform 0.5s ease;
}

.gallery-image-item {
    position: absolute;
    width: 800px;
    height: 500px;
    transition: all 0.5s ease;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.6;
    transform: scale(0.8);
}

/* Previous slide (left) */
.gallery-image-item.prev {
    left: -600px;
    opacity: 0.6;
    transform: scale(0.8);
    z-index: 2;
}

/* Current/Active slide (center) */
.gallery-image-item.active {
    left: 50%;
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 5;
}

/* Next slide (right) */
.gallery-image-item.next {
    right: -600px;
    opacity: 0.6;
    transform: scale(0.8);
    z-index: 2;
}

/* Hidden slides */
.gallery-image-item.hidden {
    opacity: 0;
    transform: scale(0.6);
    z-index: 1;
}

.gallery-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Arrows */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 96px;
    height: 96px;
    background-color: #F9F9F9;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-50%) scale(1.05);
}

.gallery-nav-btn i {
    font-size: 24px;
    color: #1A1A1A;
    margin-right: 10px;
}

.gallery-nav-prev {
    left: 50px;
}

.gallery-nav-next {
    right: 50px;
}

/* Gallery Dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.gallery-dot {
    width: 30px;
    height: 3px;
    background-color: #1A1A1A;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.3;
}

.gallery-dot.active {
    background-color: #FF8F00;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-image-item {
        width: 700px;
        height: 450px;
    }
    
    .gallery-image-item.prev {
        left: -500px;
    }
    
    .gallery-image-item.next {
        right: -500px;
    }
    
    .gallery-nav-btn {
        width: 80px;
        height: 80px;
    }
    
    .gallery-nav-btn i {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .project-gallery-section {
        padding: 80px 0;
    }
    
    .project-gallery-title {
        font-size: 28px;
    }
    
    .project-gallery-slider {
        height: 500px;
    }
    
    .gallery-image-item {
        width: 600px;
        height: 400px;
    }
    
    .gallery-image-item.prev {
        left: -400px;
    }
    
    .gallery-image-item.next {
        right: -400px;
    }
    
    .gallery-nav-btn {
        width: 70px;
        height: 70px;
    }
    
    .gallery-nav-btn i {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .gallery-image-item.prev,
    .gallery-image-item.next {
        display: none;
    }
    
    .gallery-image-item.active {
        width: calc(100vw - 40px);
        height: 300px;
        max-width: 500px;
    }
    
    .project-gallery-slider {
        height: 400px;
    }
    
    .gallery-nav-btn {
        width: 60px;
        height: 60px;
    }
    
    .gallery-nav-prev {
        left: 10px;
    }
    
    .gallery-nav-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-image-item.active {
        width: calc(100vw - 30px);
        height: 250px;
    }
    
    .gallery-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .gallery-nav-btn i {
        font-size: 14px;
    }
}

/* Gallery Lightbox */
.gallery-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999; /* Daha yüksek z-index */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.gallery-lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-lightbox-overlay.active .gallery-lightbox-image {
    transform: scale(1);
}

.gallery-lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    background-color: #FF8F00;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-lightbox-close:hover {
    background-color: #e67e00;
    transform: rotate(90deg);
}

.gallery-lightbox-close i {
    font-size: 18px;
    color: white;
}

/* References Section */
.references-section {
    padding: 100px 0;
    background-color: white;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Reference Item */
.reference-item {
    border: 1px solid #B5B5B5;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: border-color 0.3s ease;
    cursor: pointer;
    min-height: 200px;
    background-color: white;
    gap: 30px;
}

.reference-item:hover {
    border-color: #FF8F00;
}

/* Reference Logo */
.reference-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
}

.reference-logo img {
    width: 100%;
    object-fit: contain;
}

/* Reference Title */
.reference-title {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .references-grid {
        gap: 25px;
    }
    
    .reference-item {
        padding: 35px 25px;
        min-height: 180px;
    }
    
    .reference-logo {
        height: 70px;
        margin-bottom: 18px;
    }
    
    .reference-title {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .references-section {
        padding: 80px 0;
    }
    
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .reference-item {
        padding: 30px 20px;
        min-height: 160px;
    }
    
    .reference-logo {
        height: 60px;
        margin-bottom: 15px;
    }
    
    .reference-title {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .references-section {
        padding: 60px 0;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .reference-item {
        padding: 25px 15px;
        min-height: 140px;
    }
    
    .reference-logo {
        height: 50px;
        margin-bottom: 12px;
    }
    
    .reference-title {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .references-section {
        padding: 50px 0;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .reference-item {
        padding: 20px 15px;
        min-height: 120px;
    }
    
    .reference-logo {
        height: 45px;
        margin-bottom: 10px;
    }
    
    .reference-title {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .references-grid {
        gap: 10px;
    }
    
    .reference-item {
        padding: 18px 12px;
        min-height: 110px;
    }
    
    .reference-logo {
        height: 40px;
    }
    
    .reference-title {
        font-size: 11px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: white;
}

.contact-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Left Content - Contact Info */
.contact-info {
    flex: 1;
    max-width: 45%;
}

.contact-info-header {
    margin-bottom: 40px;
}

.contact-info-title {
    font-size: 16px;
    font-weight: 700;
    color: #5D5D5D;
    margin: 0;
    text-transform: uppercase;
}

.company-name {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 40px 0;
    text-transform: uppercase;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail {
    font-size: 24px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.contact-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #FF8F00;
}

.social-icon i {
    font-size: 18px;
}

/* Right Content - Contact Form */
.contact-form-container {
    flex: 1;
    background-color: #F9F9F9;
    padding: 40px;
    max-width: 60%;
}

.contact-form-header {
    margin-bottom: 40px;
}

.contact-form-title {
    font-size: 16px;
    font-weight: 700;
    color: #5D5D5D;
    margin: 0;
    text-transform: uppercase;
}

/* Form Styles */
.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 30px;
}

.form-input,
.form-textarea {
    width: 100%;
    border: none;
    border-bottom: 0.5px solid #909090;
    background: transparent;
    padding: 15px 0;
    font-size: 16px;
    color: #909090;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #909090;
    opacity: 1;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: #FF8F00;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Footer */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 40px;
}

.form-checkbox-group {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-right: 20px;
}

.form-checkbox {
    margin-top: 3px;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.4;
    cursor: pointer;
}

/* Contact Form Submit */
.contact-form-submit-wrapper {
    position: relative;
    flex-shrink: 0;
}

.contact-form-submit {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: #1A1A1A;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-text {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
}

.submit-arrow {
    font-size: 15px;
    color: #FF8F00;
    transition: transform 0.3s ease;
    transform: rotate(45deg);
}

.contact-submit-underline {
    height: 1px;
    background-color: #1A1A1A;
    width: 100%;
    transition: width 0.3s ease;
    transform-origin: right;
}

/* Contact Submit Hover Effects */
.contact-form-submit:hover .submit-arrow {
    transform: rotate(0deg);
}

.contact-form-submit:hover + .contact-submit-underline {
    width: 0%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-content {
        gap: 60px;
    }
    
    .contact-form-container {
        padding: 35px;
    }
    
    .contact-detail {
        font-size: 22px;
    }
    
    .company-name {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-info,
    .contact-form-container {
        max-width: 100%;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .contact-detail {
        font-size: 20px;
    }
    
    .company-name {
        font-size: 20px;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .form-checkbox-group {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-detail {
        font-size: 18px;
    }
    
    .company-name {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .contact-info-header,
    .contact-form-header {
        margin-bottom: 30px;
    }
    
    .contact-details {
        margin-bottom: 30px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 15px;
        padding: 12px 0;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
    
    .submit-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .contact-detail {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .company-name {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .contact-info-title,
    .contact-form-title {
        font-size: 15px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .checkbox-label {
        font-size: 12px;
    }
    
    .submit-text {
        font-size: 14px;
    }
    
    .submit-arrow {
        font-size: 13px;
    }
    
    .social-icon {
        width: 16px;
        height: 16px;
    }
    
    .social-icon i {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .contact-detail {
        font-size: 15px;
    }
    
    .company-name {
        font-size: 15px;
    }
    
    .contact-form-container {
        padding: 18px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 13px;
    }
    
    .checkbox-label {
        font-size: 11px;
    }
}

/* Cookie Policy Section */
.cookie-policy-section {
    padding: 100px 0;
    background-color: white;
}

.cookie-policy-content {
    max-width: 800px;
    margin: 0;
}

.cookie-policy-title {
    font-size: 32px;
    font-weight: 500;
    color: #1A1A1A;
    margin: 0 0 50px 0;
    text-align: left;
    line-height: 1.3;
}

.cookie-policy-text {
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.6;
    text-align: left;
}

.cookie-policy-text p {
    margin-bottom: 20px;
    text-align: left;
}

.cookie-policy-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 40px 0 20px 0;
    text-align: left;
}

.cookie-policy-text strong {
    font-weight: 600;
    color: #1A1A1A;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cookie-policy-section {
        padding: 80px 0;
    }
    
    .cookie-policy-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .cookie-policy-text {
        font-size: 15px;
    }
    
    .cookie-policy-text h3 {
        font-size: 18px;
        margin: 35px 0 18px 0;
    }
}

@media (max-width: 768px) {
    .cookie-policy-section {
        padding: 60px 0;
    }
    
    .cookie-policy-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .cookie-policy-text {
        font-size: 14px;
    }
    
    .cookie-policy-text h3 {
        font-size: 16px;
        margin: 30px 0 15px 0;
    }
    
    .cookie-policy-text p {
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .cookie-policy-section {
        padding: 50px 0;
    }
    
    .cookie-policy-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .cookie-policy-text {
        font-size: 13px;
    }
    
    .cookie-policy-text h3 {
        font-size: 15px;
        margin: 25px 0 12px 0;
    }
    
    .cookie-policy-text p {
        margin-bottom: 15px;
    }
}

@media (max-width: 360px) {
    .cookie-policy-title {
        font-size: 18px;
    }
    
    .cookie-policy-text {
        font-size: 12px;
    }
    
    .cookie-policy-text h3 {
        font-size: 14px;
    }
}

.service-area-href {
    text-decoration: none;
}

.project-text-area {
    font-size: 20px;
    padding-top: 80px;
}