/* Beyhan Yapı Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Root Variables */
:root {
    --primary-color: #FF5722;
    --primary-light: #FF7043;
    --primary-lightest: #FF8A65;
    --dark-color: #212529;
    --secondary-color: #6C757D;
    --light-bg: #F8F9FA;
    --border-color: #DEE2E6;
    --footer-bg: #1C1C1C;
    --bs-info: #FF5722;
    --bs-info-rgb: 255, 87, 34;
}

/* Override Bootstrap Info Color to Orange */
.bg-info {
    background-color: var(--primary-color) !important;
}

.text-info {
    color: var(--primary-color) !important;
}

.badge.bg-info {
    background-color: var(--primary-color) !important;
}

.btn-info {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-info:hover {
    background-color: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
}

.progress-bar.bg-info {
    background-color: var(--primary-color) !important;
}

.bg-success {
    background-color: var(--primary-color) !important;
}

.bg-warning {
    background-color: var(--primary-color) !important;
}

.badge.bg-success {
    background-color: var(--primary-color) !important;
}

.badge.bg-warning {
    background-color: var(--primary-color) !important;
}

.progress-bar.bg-success {
    background-color: var(--primary-color) !important;
}

.progress-bar.bg-warning {
    background-color: var(--primary-color) !important;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.pagination .page-link {
    color: var(--primary-color) !important;
}

.pagination .page-link:hover {
    background-color: rgba(255, 87, 34, 0.1) !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--primary-color) !important;
}

.text-warning {
    color: var(--primary-color) !important;
}

.btn-success {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-success:hover {
    background-color: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
}

.btn-warning {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-warning:hover {
    background-color: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 87, 34, 0.1) !important;
    color: var(--primary-color) !important;
}

.accordion-button:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 87, 34, 0.25) !important;
}

/* Override all link colors */
a {
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-light);
}

.link-primary {
    color: var(--primary-color) !important;
}

.link-primary:hover {
    color: var(--primary-light) !important;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-weight: 600;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-weight: 600;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

h3 {
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

p {
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    h2 {
        font-size: 1.875rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    h4 {
        font-size: 1.125rem;
    }
    p {
        font-size: 0.95rem;
    }
}

/* Custom Bootstrap overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

/* Form Controls */
.form-control:focus {
    border-color: var(--primary-lightest);
    box-shadow: 0 0 0 0.25rem rgba(255, 87, 34, 0.25);
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.65rem;
    color: var(--primary-color);
}

.navbar-brand img {
    height: 50px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color);
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    padding: 1rem 0;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.dropdown-item:hover {
    background-color: rgba(255, 87, 34, 0.1);
    color: var(--primary-color);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Hero Section (Individual Pages) */
.hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(33, 37, 41, 0.7) 0%,
        rgba(255, 87, 34, 0.8) 40%,
        rgba(255, 112, 67, 0.6) 100%
    );
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-section .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Hero Content Boxes - Ensure proper wrapping */
.hero-section .hero-content .row {
    text-align: left;
}

.hero-section .hero-content .row > div {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-section .hero-content .row .d-flex {
    flex-wrap: nowrap;
    align-items: flex-start;
}

.hero-section .hero-content .row .d-flex > div {
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
    flex: 1;
}

.hero-section .hero-content .row .d-flex i {
    flex-shrink: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
}

.hero-slide {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
    font-size: 2.7rem !important;
}

.hero-subtitle {
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
    font-size: 0.91rem;
    line-height: 1.6;
}

.hero-buttons .btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border-width: 2px;
    padding: 0.5rem 1.8rem !important;
    font-size: 0.75rem !important;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-slide {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        margin: 10px 0;
        display: block;
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 8%;
    }
}

/* Card Styles */
.card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-card {
    position: relative;
    overflow: hidden;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

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

.project-info {
    color: white;
}

/* Featured Projects Grid */
.featured-project {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.featured-project:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.main-project {
    height: 500px;
}

.side-project {
    height: 235px;
}

.project-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

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

.featured-project:hover .project-image-container img {
    transform: scale(1.1);
}

.featured-project .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 87, 34, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.featured-project:hover .project-overlay {
    opacity: 1;
}

.main-project .project-info {
    text-align: center;
    max-width: 400px;
}

.side-project .project-info {
    text-align: center;
}

.project-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-title {
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.project-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.project-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .main-project {
        height: 400px;
        margin-bottom: 2rem;
    }
    
    .side-project {
        height: 300px;
        margin-bottom: 1.5rem;
    }
    
    .project-stats {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .main-project,
    .side-project {
        height: 250px;
    }
    
    .featured-project .project-overlay {
        padding: 1rem;
    }
    
    .project-stats {
        gap: 0.5rem;
    }
    
    .stat-item {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
}

/* Section Styles */
.section-padding {
    padding: 5rem 0;
}

.section-light {
    background-color: var(--light-bg);
}

/* About Section Styles */
.about-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 0;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

/* Video Section */
.video-section {
    margin: 0;
    padding: 0;
}

.video-section video {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .about-main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-description {
        font-size: 0.95rem;
    }
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.text-left .section-title::after {
    left: 0;
    transform: none;
}

/* Footer Styles */
.footer {
    background-color: var(--footer-bg);
    color: #ADB5BD;
    padding: 3rem 0 2rem;
    font-size: 1.1rem;
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
}

.footer a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.footer img {
    height: 44px !important;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Counter Animation */
.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.counter-label {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Counter on primary background - make it white */
.bg-primary .counter,
.text-white .counter {
    color: white !important;
}

.bg-primary .counter-label,
.text-white .counter-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Project Filter */
.project-filter {
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    margin: 0.25rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

/* News Card */
.news-card .card-body {
    padding: 1.5rem;
}

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

.news-excerpt {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb-section {
    background-color: var(--light-bg);
    padding: 2rem 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.75rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.timeline-year {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        background-attachment: scroll;
    }
    
    .hero-section .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section .hero-content {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 50vh;
    }
    
    .hero-section .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Page transitions */
.page-wrapper {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Form Styles & Bootstrap 5 Validation */
.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 87, 34, 0.15);
    outline: none;
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Bootstrap 5 Validation Styles */
.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.8.76 2.8-3.19-.8-.76z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus,
.was-validated .form-select:valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 6.5 4.1-4.1m-4.1 0 4.1 4.1'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus,
.was-validated .form-select:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.valid-feedback,
.invalid-feedback {
    display: block;
    font-size: 0.875em;
    margin-top: 0.5rem;
    font-weight: 500;
}

.invalid-feedback {
    color: #dc3545;
}

.valid-feedback {
    color: #28a745;
}

/* Contact Form Specific Styles */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.contact-form .btn {
    padding: 15px 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: none;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
}

/* Form Animation */
.form-control, .form-select {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.form-control:hover:not(:focus), .form-select:hover:not(:focus) {
    border-color: #c0c0c0;
    transform: translateY(-1px);
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

.gallery-item img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 87, 34, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Project Content Images - Responsive */
.project-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0;
    border-radius: 8px;
}

.project-content figure {
    margin: 1rem 0;
}

.project-content figure img {
    margin: 0;
}

.project-content p img {
    margin: 0.5rem 0;
}

/* Ensure all images in content are responsive */
.card-body img,
.content img,
article img {
    max-width: 100%;
    height: auto;
}

/* GLightbox Custom Styles */
.gslide-description {
    background: linear-gradient(to top, rgba(33, 37, 41, 0.95), rgba(33, 37, 41, 0.85)) !important;
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--primary-color);
    padding: 1.5rem !important;
}

.gdesc-inner {
    text-align: center;
    padding: 0.5rem;
}

.gslide-title {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.gslide-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    margin-top: 0.5rem !important;
    line-height: 1.6;
}

/* GLightbox Navigation Buttons */
.gslide-inline .gprev,
.gslide-inline .gnext {
    background: rgba(255, 87, 34, 0.9) !important;
    color: white !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.gslide-inline .gprev:hover,
.gslide-inline .gnext:hover {
    background: var(--primary-color) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4) !important;
}

/* GLightbox Close Button */
.gclose {
    background: rgba(255, 87, 34, 0.9) !important;
    color: white !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
}

.gclose:hover {
    background: var(--primary-color) !important;
    transform: rotate(90deg) scale(1.1) !important;
}

/* Faaliyet Alanları - Icon ve Görsel Boşlukları */
.section-padding .fa-3x {
    margin-bottom: 2rem !important;
}

.section-padding img.rounded {
    margin-bottom: 2rem;
}

/* Mobile için ekstra boşluk */
@media (max-width: 991px) {
    .section-padding .col-lg-6 {
        margin-bottom: 3rem;
    }

    .section-padding .fa-3x {
        margin-bottom: 1.5rem !important;
        margin-top: 1rem !important;
    }
}

/* İletişim Sayfası - Mobil Boşlukları Azalt */
@media (max-width: 768px) {
    /* Section padding'leri yarı yarıya azalt */
    .section-padding {
        padding: 2.5rem 0 !important;
    }

    /* Kartlar arası boşlukları azalt */
    .mb-4 {
        margin-bottom: 0.75rem !important;
    }

    .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    /* İletişim kartlarındaki ikonların alt boşluğunu azalt */
    .card .fa-3x.mb-3 {
        margin-bottom: 0.75rem !important;
    }

    /* Form elemanları arası boşluk */
    .contact-form .mb-3 {
        margin-bottom: 0.75rem !important;
    }

    /* Harita sonrası bilgiler için boşluk */
    .mt-4 {
        margin-top: 1rem !important;
    }

    /* Accordion item'lar arası boşluk azalt */
    .accordion-item {
        margin-bottom: 0.5rem !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none !important;
    }
}