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

:root {
    --primary-color: #ffffff;
    --secondary-color: #64b5f6;
    --accent-color: #ff6b6b;
    --text-color: #f5f5f5;
    --light-text: #ffffff;
    --light-bg: #1a1a1a;
    --dark-bg: #000000;
    --white: #1a1a1a;
    --black: #000000;
    --shadow: 0 2px 10px rgba(255,255,255,0.1);
    --dark-shadow: 0 2px 10px rgba(255,255,255,0.2);
    --muted-text: #b0b0b0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--black);
    margin: 0;
    padding: 0;
    padding-top: 117px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* OceanWP Style Top Bar */
#top-bar-wrap {
    background: linear-gradient(135deg, #2D1B69, #1A1A2E, #16213E);
    color: var(--white);
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    height: 42px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#top-bar {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#top-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.clr::after {
    content: "";
    display: table;
    clear: both;
}

/* Top Bar Content */
#top-bar-content.top-bar-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E0E0E0;
}

.topbar-content a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s;
}

.topbar-content a:hover {
    color: #FFFFFF;
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-icon-footer {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-icon-footer.facebook,
.social-icon-footer:nth-child(1) {
    background: #1877F2;
}

.social-icon-footer.instagram,
.social-icon-footer:nth-child(2) {
    background: linear-gradient(45deg, #F56040, #E1306C, #C13584);
}

.social-icon-footer.linkedin,
.social-icon-footer:nth-child(3) {
    background: #0A66C2;
}

.social-icon-footer.youtube,
.social-icon-footer:nth-child(4) {
    background: #FF0000;
}

.social-icon-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Eski top bar CSS'leri kaldırıldı - OceanWP style kullanılıyor */



/* Modern Header */
.modern-header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-header.scrolled {
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.modern-header .navbar {
    padding: 0.8rem 0;
}

.modern-header .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.brand-link:hover {
    transform: scale(1.02);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: transform 0.3s;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #E0E0E0;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 0.2rem;
}

.modern-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.125rem;
    margin-left: auto;
}

.nav-item {
    position: relative;
}

.modern-nav .nav-link {
    color: #B0B0B0;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 0.6rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    font-size: 0.95rem;
}

.modern-nav .nav-link span {
    position: relative;
    z-index: 2;
}

.modern-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00CED1, #20B2AA, #48CAE4);
    transform: translateX(-50%);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.modern-nav .nav-link:hover::after,
.modern-nav .nav-link.active::after {
    width: 80%;
}

.modern-nav .nav-link:hover,
.modern-nav .nav-link.active {
    color: #FFFFFF;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.search-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B0B0B0;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: linear-gradient(135deg, #00CED1, #20B2AA);
    color: var(--white);
    transform: scale(1.1);
    border-color: #00CED1;
}



.modern-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.modern-hamburger span {
    width: 25px;
    height: 3px;
    background: #B0B0B0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.modern-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.modern-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.modern-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    position: relative;
    width: 90%;
    max-width: 600px;
}

.search-box {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-input {
    flex: 1;
    padding: 1.5rem 2rem;
    border: none;
    font-size: 1.2rem;
    outline: none;
}

.search-submit {
    background: var(--secondary-color);
    border: none;
    padding: 1.5rem 2rem;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s;
}

.search-submit:hover {
    background: #0052A3;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.search-close:hover {
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--muted-text);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(100, 181, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

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

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--muted-text);
}

/* Services */
.services {
    background: var(--light-bg);
    padding: 5rem 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--muted-text);
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #333;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dark-shadow);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.service-content {
    padding: 1.5rem;
    text-align: center;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-content p {
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* About */
.about {
    padding: 5rem 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.about-text > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted-text);
    margin-bottom: 3rem;
    text-align: center;
}

.about-sections {
    display: grid;
    gap: 3rem;
}

.about-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-section:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.about-section:nth-child(even) .section-image {
    order: 2;
}

.about-section:nth-child(even) .section-content {
    order: 1;
}

.section-image {
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

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

.section-content h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-content p {
    line-height: 1.6;
    color: var(--muted-text);
}

/* Projects */
.projects {
    background: var(--light-bg);
    padding: 5rem 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dark-shadow);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-details {
    display: grid;
    gap: 0.5rem;
}

.project-detail {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.project-detail .label {
    font-weight: 600;
    color: var(--secondary-color);
}

.project-detail .value {
    color: var(--muted-text);
}

/* Partners */
.partners {
    padding: 5rem 0;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.partner-card:hover {
    transform: translateY(-5px);
}



.partner-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.partner-info p {
    color: var(--muted-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.partner-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.partner-link:hover {
    text-decoration: underline;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    color: var(--primary-color);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--muted-text);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Home About Section */
.home-about {
    padding: 5rem 0;
    background: var(--black);
}

.home-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.home-about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.home-about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted-text);
    margin-bottom: 2rem;
}

.home-features {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.feature-link:hover {
    text-decoration: underline;
}

.home-about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Home Quote Section */
.home-quote {
    padding: 5rem 0;
    background: var(--light-bg);
}

.quote-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-image img {
    width: 100%;
    height: auto;
}

.quote-text p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quote-text cite {
    font-size: 1.1rem;
    color: var(--muted-text);
    font-style: normal;
}

/* Home Contact Section */
.home-contact {
    padding: 5rem 0;
    background: var(--black);
}

.home-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-image img {
    width: 100%;
    border-radius: 10px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--muted-text);
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Hero Slideshow Section */
.hero-slideshow {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    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.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--primary-color);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    margin: 0 auto 2rem;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--muted-text);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* About Section with Wave Divider */
.about-section-with-wave {
    position: relative;
    padding: 6rem 0 4rem;
    background: var(--light-bg);
}

.wave-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 28px;
}

.wave-divider-top .elementor-shape-fill {
    fill: var(--black);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-left img {
    width: 100%;
    border-radius: 10px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    margin-bottom: 2rem;
}

.about-text-right h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted-text);
    margin-bottom: 1.5rem;
}

/* Feature Links Section */
.feature-links-section {
    position: relative;
    padding: 4rem 0;
    background-image: url('../images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.feature-links-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.feature-links-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.6;
}

.feature-links-content h2 a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.feature-links-content h2 a:hover {
    color: var(--secondary-color);
}

/* Quote Section with Mountains */
.quote-section-with-mountains {
    position: relative;
    padding: 6rem 0;
    background: var(--black);
}

.mountain-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.mountain-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.mountain-divider-top .elementor-shape-fill {
    fill: var(--light-bg);
}

.quote-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote-icon {
    margin-bottom: 2rem;
}

.quote-icon img {
    width: 90px;
    height: 90px;
}

.quote-text-left p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.quote-text-left cite {
    font-size: 1.1rem;
    color: var(--muted-text);
    font-style: normal;
    font-weight: 500;
}

.quote-image-right img {
    width: 100%;
    border-radius: 10px;
}

/* Contact Header Section */
.contact-header-section {
    padding: 4rem 0;
    background: var(--light-bg);
    text-align: center;
}

.section-divider-center {
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    margin: 0 auto 2rem;
}

.contact-header-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Contact Info Section */
.contact-info-section {
    position: relative;
    padding: 6rem 0;
    background-image: url('../images/about/work-12.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.mountain-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.mountain-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.mountain-divider-bottom .elementor-shape-fill {
    fill: var(--black);
}

.contact-info-box {
    position: relative;
    z-index: 2;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-box h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-details-inline p {
    margin-bottom: 1rem;
    color: var(--muted-text);
    font-size: 1.1rem;
}

.contact-details-inline strong {
    color: var(--primary-color);
}

.contact-details-inline a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-details-inline a:hover {
    text-decoration: underline;
}

/* Maps Section */
.maps-section {
    position: relative;
    background: var(--black);
}

.maps-container {
    width: 100%;
    height: 400px;
}

.maps-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Home About Section */
.home-about-section {
    padding: 6rem 0;
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted-text);
    margin-bottom: 3rem;
}

.feature-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.feature-link:hover {
    text-decoration: underline;
}

.separator {
    color: var(--muted-text);
    font-weight: 300;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Quote Section */
.quote-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.quote-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-image img {
    width: 100%;
    height: auto;
}

.quote-content p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.quote-content cite {
    font-size: 1.1rem;
    color: var(--muted-text);
    font-style: normal;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-details p {
    margin-bottom: 1rem;
    color: var(--muted-text);
    font-size: 1.1rem;
}

.contact-details strong {
    color: var(--primary-color);
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Ana Sayfa Sosyal Medya İkonları - Özel CSS */
.home-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.home-social-icon {
    width: 50px;
    height: 50px;
    background-color: #000000;
    border: 2px solid #b0b0b0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-social-icon:hover {
    background-color: #b0b0b0;
    color: #000000;
    border-color: #b0b0b0;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(176, 176, 176, 0.3);
}

.home-social-icon:visited {
    color: #b0b0b0;
}

.home-social-icon:active {
    background-color: #000000;
    color: #b0b0b0;
}

/* About Page Styles */
.about-intro {
    padding: 5rem 0;
    background: var(--black);
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted-text);
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
}

.vision-mission {
    padding: 5rem 0;
    background: var(--light-bg);
}

.vm-grid {
    display: grid;
    gap: 4rem;
}

.vm-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid #333;
}

.vm-item.reverse {
    grid-template-columns: 1fr 300px;
}

.vm-item.reverse .vm-image {
    order: 2;
}

.vm-item.reverse .vm-content {
    order: 1;
}

.vm-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.vm-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.vm-content p {
    line-height: 1.7;
    color: var(--muted-text);
}

.team-section {
    padding: 5rem 0;
    background: var(--black);
}

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

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.about-closing {
    padding: 5rem 0;
    background: var(--light-bg);
    text-align: center;
}

.closing-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.closing-image img {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
}

/* Services Page Styles */
.services-intro-detailed {
    padding: 5rem 0;
    background: var(--light-bg);
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text .section-divider {
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    margin-bottom: 2rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--muted-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Detailed Services Section */
.detailed-services {
    padding: 5rem 0;
    background: var(--black);
}

.service-detail-item {
    margin-bottom: 6rem;
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-item.reverse .service-detail-content {
    grid-template-columns: 1fr 1fr;
}

.service-detail-item.reverse .service-detail-text {
    order: 2;
}

.service-detail-item.reverse .service-detail-image {
    order: 1;
}

.service-detail-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail-text p {
    font-size: 1.1rem;
    color: var(--muted-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-text ul {
    list-style: none;
    padding: 0;
}

.service-detail-text ul li {
    color: var(--muted-text);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-text ul li:before {
    content: "→";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Services CTA Section */
.services-cta {
    padding: 5rem 0;
    background: var(--light-bg);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-bottom: 2rem;
}

.cta-content .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Contact */
/* Projects Page Styles */
.projects-intro-modern {
    padding: 5rem 0;
    background: var(--light-bg);
}

.projects-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text .section-divider {
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    margin-bottom: 2rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--muted-text);
    line-height: 1.8;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Projects Grid Modern */
.projects-grid-modern {
    padding: 5rem 0;
    background: var(--black);
}

.projects-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.project-card-modern {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--dark-shadow);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card-modern:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card-modern:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    text-align: center;
    color: var(--primary-color);
    padding: 2rem;
}

.project-overlay-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.project-overlay-content p {
    font-size: 0.9rem;
    color: var(--muted-text);
    line-height: 1.6;
}

.project-content {
    padding: 2rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.project-type {
    background: var(--secondary-color);
    color: var(--black);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-location {
    color: var(--muted-text);
    font-size: 0.9rem;
}

.project-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.project-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.detail-value {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Projects Stats */
.projects-stats {
    padding: 4rem 0;
    background: var(--light-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Projects CTA */
.projects-cta {
    padding: 5rem 0;
    background: var(--black);
    text-align: center;
}

.projects-cta .cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.projects-cta .cta-content p {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-bottom: 2rem;
}

.projects-cta .cta-content .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Partners Page Styles */
.partners-intro {
    padding: 5rem 0;
    background: var(--light-bg);
}

.partners-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text .section-divider {
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    margin-bottom: 2rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--muted-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Partners Grid Section */
.partners-grid-section {
    padding: 5rem 0;
    background: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-text);
    display: block;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.partner-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--dark-shadow);
}

.partner-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    background: var(--white);
}

.partner-logo img.partner-logo-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 15px !important;
    display: block !important;
}

.partner-logo img:not(.partner-logo-image) {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.partner-logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.partner-logo-text {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    line-height: 1.2;
    padding: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

.partner-logo-text-small {
    font-size: 0.8rem !important;
    line-height: 1.1 !important;
}

/* Specific brand styling */
.partner-logo-bosch {
    background: linear-gradient(135deg, #DC143C, #B91C3C) !important;
}

.partner-logo-siemens {
    background: linear-gradient(135deg, #009999, #007777) !important;
}

.partner-logo-schneider {
    background: linear-gradient(135deg, #3DCD58, #2BA846) !important;
}

.partner-logo-schneider .partner-logo-text {
    font-size: 0.7rem;
}

.partner-logo-honeywell {
    background: linear-gradient(135deg, #FF6600, #E55A00) !important;
}

.partner-logo-johnson {
    background: linear-gradient(135deg, #0066CC, #0052A3) !important;
}

.partner-logo-johnson .partner-logo-text {
    font-size: 0.7rem;
}

.partner-logo-abb {
    background: linear-gradient(135deg, #FF0000, #CC0000) !important;
}

.partner-logo-danfoss {
    background: linear-gradient(135deg, #0066CC, #0052A3) !important;
}

.partner-logo-grundfos {
    background: linear-gradient(135deg, #0066CC, #0052A3) !important;
}

.partner-logo-carrier {
    background: linear-gradient(135deg, #0066CC, #0052A3) !important;
}

.partner-logo-mitsubishi {
    background: linear-gradient(135deg, #CC0000, #AA0000) !important;
}

.partner-logo-mitsubishi .partner-logo-text {
    font-size: 0.6rem;
}

.partner-logo-daikin {
    background: linear-gradient(135deg, #0066CC, #0052A3) !important;
}

.partner-logo-trane {
    background: linear-gradient(135deg, #0066CC, #0052A3) !important;
}

.partner-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.partner-category {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--black);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.partner-content p {
    font-size: 0.95rem;
    color: var(--muted-text);
    line-height: 1.6;
}

/* Partnership Benefits */
.partnership-benefits {
    padding: 5rem 0;
    background: var(--light-bg);
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--black);
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-item p {
    font-size: 1rem;
    color: var(--muted-text);
    line-height: 1.6;
}

/* Partners CTA */
.partners-cta {
    padding: 5rem 0;
    background: var(--black);
    text-align: center;
}

.partners-cta .cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.partners-cta .cta-content p {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-bottom: 2rem;
}

.partners-cta .cta-content .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Contact Page Styles */
.contact-intro-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.contact-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-intro-text .section-divider {
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    margin-bottom: 2rem;
}

.contact-intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-intro-text p {
    font-size: 1.1rem;
    color: var(--muted-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Contact Info Cards */
.contact-info-section-modern {
    padding: 5rem 0;
    background: var(--black);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.contact-info-card {
    background: var(--light-bg);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--dark-shadow);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--black);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info-card p {
    color: var(--muted-text);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section-modern {
    padding: 5rem 0;
    background: var(--light-bg);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-form-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-form-content p {
    font-size: 1.1rem;
    color: var(--muted-text);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.modern-contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    background: var(--white);
    color: var(--primary-color);
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    width: 100%;
}

.form-note {
    text-align: center;
    color: var(--muted-text);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.contact-form-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Maps Section */
.maps-section-contact {
    background: var(--black);
}

.maps-header {
    text-align: center;
    padding: 4rem 0 2rem;
}

.maps-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.maps-header p {
    font-size: 1.1rem;
    color: var(--muted-text);
}

.maps-container-full {
    width: 100%;
    height: 500px;
}

.maps-container-full iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Navigation Active State */
.nav-link.active {
    color: var(--secondary-color) !important;
    font-weight: 600;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 30px;
}

.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #555;
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--light-bg);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Wave Divider */
.wave-divider {
    color: #2D1B69;
    background: var(--black);
    margin-top: -1px;
}

.wave-divider svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* Modern Footer */
.modern-footer {
    background: var(--black);
    color: var(--muted-text);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #2D1B69, #1A1A2E, #16213E);
    padding: 3rem 0;
    color: var(--white);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #E0E0E0;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: #B0B0B0;
}

.newsletter-signup {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.newsletter-signup input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    outline: none;
}

.newsletter-signup input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-signup button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 1rem 2rem;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-signup button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Footer Main */
.footer-main {
    padding: 2.5rem 0 1.5rem;
    background: var(--black);
}

.footer-grid {
    display: grid;
    grid-template-columns: 300px 200px 200px 250px;
    gap: 2rem;
    justify-content: space-between;
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-section h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Company Info */
.company-info .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.company-info .footer-logo img {
    height: 50px;
}

.company-info .footer-logo h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.company-info p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted-text);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--muted-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Contact Info Footer */
.contact-info-footer {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    transition: background 0.3s;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.contact-icon {
    width: 2px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    font-size: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-details strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
}

.contact-details span,
.contact-details a {
    color: var(--muted-text);
    text-decoration: none;
    line-height: 1.2;
    font-size: 0.8rem;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

/* Social Icons Modern */
.social-icons-modern {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    font-size: 0.8rem;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.social-icon:hover::before {
    transform: translateX(100%);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom-modern {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-bottom-links a {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom-credit p {
    font-size: 0.9rem;
    color: var(--muted-text);
    margin: 0;
}

.footer-bottom-credit strong {
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #0052A3);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section p {
    color: var(--muted-text);
    line-height: 1.6;
}

/* Footer Sosyal Medya İkonları - Özel CSS */
.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background-color: #000000;
    border: 2px solid #b0b0b0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: #b0b0b0;
    color: #000000;
    border-color: #b0b0b0;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(176, 176, 176, 0.3);
}

.footer-social-icon:visited {
    color: #b0b0b0;
}

.footer-social-icon:active {
    background-color: #000000;
    color: #b0b0b0;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.footer .social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
}

.footer-bottom p {
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    /* Top Bar Responsive */
    #top-bar {
        padding: 0 15px;
    }

    .topbar-content {
        font-size: 0.8rem;
    }



    /* Header Responsive */
    .brand-tagline {
        display: none;
    }



    .modern-nav {
        display: none;
    }

    .modern-hamburger {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .logo {
        height: 45px;
        max-width: 150px;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-section {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .about-section .section-image {
        order: 1 !important;
        margin: 0 auto 1rem;
        width: 250px;
    }

    .about-section .section-content {
        order: 2 !important;
    }

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

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

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .project-detail {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .project-detail .label {
        font-size: 0.8rem;
    }

    .project-detail .value {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    /* Page-specific responsive */
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .home-about-content,
    .about-intro-content,
    .home-contact-content,
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quote-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vm-item,
    .vm-item.reverse {
        grid-template-columns: 1fr !important;
        text-align: center;
        padding: 2rem;
    }

    .vm-item .vm-image,
    .vm-item.reverse .vm-image {
        order: 1 !important;
        margin-bottom: 1rem;
    }

    .vm-item .vm-content,
    .vm-item.reverse .vm-content {
        order: 2 !important;
    }

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

    /* Services Page Responsive */
    .services-intro-grid,
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .service-detail-item.reverse .service-detail-text,
    .service-detail-item.reverse .service-detail-image {
        order: unset;
    }

    .intro-text h2,
    .service-detail-text h3 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .service-detail-item {
        margin-bottom: 4rem;
    }

    /* Projects Page Responsive */
    .projects-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .projects-masonry {
        grid-template-columns: 1fr;
    }

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

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

    .projects-cta .cta-content h2 {
        font-size: 2rem;
    }

    .project-details-grid {
        grid-template-columns: 1fr;
    }

    /* Partners Page Responsive */
    .partners-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

    .partners-cta .cta-content h2 {
        font-size: 2rem;
    }

    /* Contact Page Responsive */
    .contact-intro-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    @media (max-width: 480px) {
        .contact-info-grid {
            grid-template-columns: 1fr;
        }
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-intro-text h2,
    .contact-form-content h2,
    .maps-header h2 {
        font-size: 2rem;
    }

    .modern-contact-form {
        padding: 2rem;
    }

    .partners-grid-large {
        grid-template-columns: 1fr;
    }

    .project-detail-row {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .project-detail-row .label {
        font-weight: 700;
        color: var(--primary-color);
    }

    .project-detail-row .value {
        margin-bottom: 1rem;
    }

    .social-links-page {
        justify-content: center;
    }

    .home-features {
        justify-content: center;
        text-align: center;
    }

    .home-social-icons {
        justify-content: center;
    }

    /* Hero Slideshow Responsive */
    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    /* New Homepage Sections Responsive */
    .about-content-grid,
    .quote-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text-right h2,
    .contact-header-section h2 {
        font-size: 2rem;
    }

    .contact-info-box h3 {
        font-size: 1.5rem;
    }

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

    .quote-text-left p {
        font-size: 1.1rem;
    }

    .contact-info-box {
        padding: 2rem;
        margin: 0 1rem;
    }

    .feature-links-section {
        background-attachment: scroll;
    }

    .contact-info-section {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .vm-item {
        padding: 1.5rem;
    }

    .contact-form-page {
        padding: 2rem;
    }

    .project-item {
        padding: 2rem;
    }

    .partner-card-large {
        padding: 2rem;
    }

    /* Footer Responsive */
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

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

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

    .footer-bottom-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 82px;
    }

    .top-bar {
        padding: 0.25rem 0;
        font-size: 0.75rem;
        height: 35px;
    }

    .top-bar-left {
        gap: 0.5rem;
    }

    .top-bar-right {
        gap: 0.5rem;
    }

    .top-bar-social {
        display: none;
    }

    .modern-header {
        top: 32px;
    }

    .modern-header .navbar {
        padding: 0.5rem 0;
    }

    #top-bar {
        padding: 0 10px;
    }

    #top-bar-wrap {
        height: 32px;
    }

    .topbar-content {
        font-size: 0.75rem;
    }

    .logo {
        height: 35px;
    }

    .brand-text {
        font-size: 1rem;
    }

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

    .company-stats {
        grid-template-columns: 1fr;
    }

    .newsletter-signup {
        flex-direction: column;
        border-radius: 15px;
    }

    .newsletter-signup button {
        border-radius: 0 0 15px 15px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}
