/* ===== GÜNELOĞLU İNŞAAT - DARK THEME STYLES ===== */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Urbanist', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.main-content {
    padding-top: 80px; /* Header offset */
}

/* Hero section override - no padding needed */
.hero-section {
    margin-top: -80px; /* Offset the main-content padding */
    padding-top: 80px; /* Add back the space for header */
}

/* Dark Theme Color Palette */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #931A1D;
    --accent-color: #c9302c;
    --dark-color: #000000;
    --darker-color: #0a0a0a;
    --light-dark: #1e1e1e;
    --medium-dark: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #cccccc;
    --border-color: #333333;
    --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --gradient-secondary: linear-gradient(135deg, #931A1D 0%, #b02326 100%);
    --shadow-dark: none;
    --shadow-light: none;
}

/* Project Pages Styles */
.project-showcase-card {
    background: var(--light-dark);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.project-showcase-card:hover {
    transform: translateY(-4px);
    /* /* box-shadow: var(--shadow-dark); */ 
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    z-index: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-showcase-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.project-showcase-card:hover .project-overlay {
    opacity: 0; 
}

.project-info {
    text-align: center;
    color: white;
    width: 100%;
}

.project-info h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.project-location {
    margin-bottom: 15px;
    opacity: 0.9;
}

.project-details {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.detail-item {
    font-size: 0.9rem;
    opacity: 0.8;
}

.project-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    min-height: 200px;
}

.project-content h5 {
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.3rem;
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: auto;
    flex: 1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.project-content .btn {
    margin-top: 20px;
    align-self: stretch;
    padding: 12px 20px;
    font-weight: 600;
}

.project-badge {
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.project-badge.completed {
    background: linear-gradient(135deg, #931A1D, #b02326);
}

.project-badge.ongoing {
    background: linear-gradient(135deg, #931A1D, #b02326);
}

.progress-section {
    background: var(--light-dark);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-percent {
    font-weight: bold;
    color: var(--secondary-color);
}

.progress {
    height: 8px;
    border-radius: 10px;
    background: var(--medium-dark);
    overflow: hidden;
}

.progress-bar {
    border-radius: 10px;
    transition: width 0.6s ease;
}

.progress-dashboard-card {
    background: var(--light-dark);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.progress-dashboard-card:hover {
    transform: translateY(-10px);
    /* /* box-shadow: var(--shadow-dark); */ 
}

.card-icon i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.progress-circle {
    position: relative;
    display: inline-block;
    margin: 20px 0;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
}

.progress-details {
    margin-top: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.update-timeline {
    position: relative;
}

.update-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
}

.update-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.update-date {
    min-width: 60px;
    text-align: center;
    background: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 10px;
    padding: 10px;
    margin-right: 20px;
    position: relative;
    z-index: 2;
}

.update-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
}

.update-date .month {
    display: block;
    font-size: 0.8rem;
}

.update-content {
    flex: 1;
    background: var(--light-dark);
    padding: 20px;
    border-radius: 15px;
}

.update-images {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.update-images img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.project-stats-card {
    background: var(--light-dark);
    padding: 25px;
    border-radius: 15px;
    height: fit-content;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-value {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Project Detail Styles */
.project-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.project-swiper {
    height: 100%;
}

.project-swiper .swiper-slide {
    position: relative;
    height: 100%;
}

.project-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 600px;
}

.project-category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.project-details-content {
    background: var(--light-dark);
    padding: 40px;
    border-radius: 20px;
}

.project-status .badge {
    padding: 12px 25px;
    font-size: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.feature-item i {
    margin-right: 15px;
    width: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h6 {
    color: white;
    margin: 0;
    font-weight: 600;
}

.project-sidebar .info-card {
    background: var(--light-dark);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.info-list .info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-list .info-item:last-child {
    border-bottom: none;
}

.info-item .label {
    font-weight: 500;
    color: var(--text-secondary);
}

.info-item .value {
    font-weight: 600;
    color: var(--secondary-color);
}

.material-list .material-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.material-item i {
    margin-right: 15px;
    color: var(--secondary-color);
    width: 20px;
}

.client-review {
    text-align: center;
}

.client-review p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.client-info strong {
    color: var(--secondary-color);
}

.rating {
    color: var(--secondary-color);
    margin-top: 10px;
}

/* Timeline Styles */
.project-timeline {
    position: relative;
}

.timeline-year-section {
    margin-bottom: 40px;
}

.year-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-dark);
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.year-header h3 {
    color: var(--secondary-color);
    margin: 0;
    font-weight: 700;
}

.project-count {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.year-projects {
    padding-left: 30px;
}

.timeline-project {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.project-dot {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
}

.project-dot::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 12px;
    width: 2px;
    height: 30px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-project:last-child .project-dot::after {
    display: none;
}

.timeline-project .project-content h6 {
    color: var(--secondary-color);
    margin: 0 0 5px 0;
}

.timeline-project .project-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Header & Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.25) !important;
    backdrop-filter: blur(20px);
    /* border-bottom: 1px solid var(--border-color); */
    transition: all 0.3s ease;
    /* /* box-shadow: var(--shadow-light); */ 
    position: sticky !important;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem !important;
    color: var(--text-primary) !important;
    text-shadow: none;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: sticky;
    color: var(--text-secondary) !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
    text-shadow: none;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-secondary);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Dropdown toggle borderline devre dışı */
.navbar-nav .nav-item.dropdown .dropdown-toggle::after {
    display: none !important;
}

.navbar-nav .nav-item.dropdown .dropdown-toggle:hover::after {
    display: none !important;
    width: 0 !important;
}

.dropdown-menu {
    background: var(--light-dark);
    border: 1px solid var(--border-color);
    /* /* box-shadow: var(--shadow-dark); */ 
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.dropdown-item {
    padding: 12px 25px;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    border-radius: 10px;
    margin: 5px 10px;
}

.dropdown-item:hover {
    background: var(--gradient-secondary);
    color: var(--dark-color);
    transform: translateX(5px);
}

/* Dropdown Hover Effect */
.nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0;
}

/* Dropdown link tıklanabilir olması için */
.nav-item.dropdown .nav-link {
    pointer-events: auto !important;
}

.nav-item.dropdown .nav-link i {
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown toggle için borderline iptal */
.navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle::after {
    content: none !important;
    display: none !important;
}

.navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle:hover::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: var(--text-primary);
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: none;
    background: linear-gradient(135deg, #ffffff 0%, #931A1D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-btn {
    background: var(--gradient-secondary);
    border: 2px solid var(--secondary-color);
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-decoration: none;
    color: var(--dark-color);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-3px);
    /* /* box-shadow: none; */ 
    color: var(--dark-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 1;
}

.hero-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.1;
    background: 
        radial-gradient(circle at 20% 30%, var(--secondary-color) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, var(--secondary-color) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px;
}

/* Swiper Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.hero-slider .swiper-wrapper {
    height: 100vh;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.swiper-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.4) contrast(1.1);
    transition: transform 6s ease-in-out;
    display: block;
}

.swiper-slide-active img {
    transform: scale(1.05);
}

.slide-content {
    position: absolute;
    bottom: 120px;
    left: 50px;
    right: 50px;
    z-index: 5;
    color: white;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-in-out;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-info {
    max-width: 500px;
}

.slide-number {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.slide-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.slide-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.swiper-pagination {
    bottom: 30px !important;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color);
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: none;
}

/* .swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%);
} */
/* 
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: 600;
} */

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-buttons .btn {
    min-width: 160px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    width: 12px;
    height: 12px;
    margin: 0 8px !important;
    transition: none !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
    transform: scale(1.2);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--secondary-color) !important;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    margin-top: -25px !important;
    backdrop-filter: blur(10px);
    transition: none !important;
}
/* 
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
} */

/* .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: 600;
} */

/* Section Styles */
.section-padding {
    padding: 100px 0;
    background: var(--darker-color);
    position: relative;
}

.section-padding:nth-child(even) {
    background: var(--primary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    /* /* box-shadow: none; */ 
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* About Section */
.about-card {
    background: var(--light-dark);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    /* /* box-shadow: var(--shadow-dark); */ 
    transition: all 0.4s ease;
    height: 100%;
    /* border: 1px solid var(--border-color); */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 220px;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: var(--gradient-secondary); */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-15px);
    /* /* box-shadow: none; */ 
}

.about-card h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
    font-size: 0.9rem;
    flex-grow: 1;
    margin-bottom: 0;
    text-align: left;
}

/* Services Section */
.service-card {
    background: var(--medium-dark);
    border-radius: 20px;
    padding: 20px 20px;
    text-align: center;
    /* /* box-shadow: var(--shadow-light); */ 
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    transition: transform 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 200px;
}

.service-card:hover {
    /* transform: translateY(-8px); */
    /* border-color: var(--secondary-color); */
    /* /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); */ 
}

.service-card h5 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 300;
    font-size: 0.9rem;
    flex-grow: 1;
    margin-bottom: 0;
    text-align: left;
}

/* Ana Hizmetler - Uzun metinli kartlar */
.main-service-text {
    min-height: 250px;
    padding: 25px 20px;
}

.main-service-text h5 {
    font-size: 1.15rem;
    min-height: 40px;
    margin-bottom: 18px;
}

.main-service-text p {
    font-size: 0.92rem;
    line-height: 1.6;
}

/* İkincil Hizmetler - Kısa metinli kartlar */
.secondary-service-text {
    min-height: 180px;
    padding: 20px 18px;
}

.secondary-service-text h5 {
    font-size: 1.05rem;
    min-height: 32px;
    margin-bottom: 12px;
}

.secondary-service-text p {
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Projects Section */
/* Tab Navigation */
.project-tabs .nav-pills {
    border: none;
    background: transparent;
}

.project-tabs .nav-link {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    margin: 0 10px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left 0.3s ease;
    z-index: -1;
}

.project-tabs .nav-link:hover::before,
.project-tabs .nav-link.active::before {
    left: 0;
}

.project-tabs .nav-link:hover,
.project-tabs .nav-link.active {
    color: var(--dark-color);
    border-color: var(--secondary-color);
    /* /* box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4); */ 
    transform: translateY(-3px);
}

/* Simple Project Cards - Ruf İnşaat Style */
.project-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 350px !important;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    /* /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); */ 
}

.project-card .project-image {
    position: relative;
    height: 350px !important;
    overflow: hidden;
    flex: 1;
}

.project-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* Project Badge */
.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* .project-badge.completed {
    background: rgba(40, 167, 69, 0.9);
    color: white;
} */

/* .project-badge.ongoing {
    background: rgba(255, 193, 7, 0.9);
    color: var(--dark-color);
} */

/* Simple Project Overlay */
.project-card .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
    text-align: center;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card .project-info {
    text-align: center;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-card .project-info h3 {
    font-size: 1.6rem !important;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    line-height: 1.2 !important;
    height: auto;
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card .project-info p {
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 400;
    height: auto;
}

.project-card .btn-simple {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.project-card .btn-simple:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Progress Section */
.progress-section {
    margin: 20px 0;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-percent {
    font-weight: 700;
    color: var(--secondary-color);
}

.progress {
    height: 8px;
    background: var(--dark-color);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.progress-bar {
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* Feature Tags */
.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: var(--gradient-secondary);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-tabs .nav-link {
        margin: 5px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 20px;
        min-height: auto;
    }
    
    .project-content h5 {
        font-size: 1.1rem;
    }
    
    .project-content p {
        font-size: 0.9rem;
    }
    
    .project-showcase-card {
        min-height: 350px;
    }
    
    .project-details {
        flex-direction: column;
        gap: 10px;
    }
}

/* Statistics Section */
.stats-section {
    background: var(--primary-color);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 50px 20px;
    background: var(--light-dark);
    border-radius: 20px;
    /* /* box-shadow: var(--shadow-light); */ 
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* background: var(--gradient-secondary); */
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-item:hover::before {
    transform: translateX(0);
}

.stat-item:hover {
    transform: translateY(-10px);
    /* /* box-shadow: 0 20px 50px rgba(0,0,0,0.4); */ 
    border-color: var(--secondary-color);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: none;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    margin: 0;
}

/* Contact Section */
.contact-info {
    background: var(--light-dark);
    border-radius: 15px;
    padding: 40px 30px;
    /* /* box-shadow: var(--shadow-dark); */ 
    margin-bottom: 30px;
}

.contact-info h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info p, 
.contact-info .text-muted {
    color: var(--text-secondary) !important;
    line-height: 1.6;
}

.contact-info a {
    color: var(--text-secondary) !important;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color) !important;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-right: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-form {
    background: var(--light-dark);
    border-radius: 15px;
    padding: 40px 30px;
    /* /* box-shadow: var(--shadow-dark); */ 
    /* border: 1px solid var(--border-color); */
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--medium-dark);
    color: var(--text-primary);
}

.form-control:focus {
    border-color: var(--border-color) !important;
    box-shadow: none !important;
    outline: none !important;
    background: var(--medium-dark);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--dark-color) !important;
    border-top: 1px solid var(--border-color);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-secondary);
}

footer h5 {
    color: var(--text-primary) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

footer p, footer .text-light-emphasis {
    color: var(--text-secondary) !important;
    line-height: 1.7;
}

footer a {
    transition: all 0.3s ease;
    color: var(--text-secondary) !important;
}
/* 
footer a:hover {
    color: var(--secondary-color) !important;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
} */

footer .social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--light-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Hover effects removed for footer social links */
/*
footer .social-links a:hover {
    background: var(--gradient-secondary);
    color: var(--dark-color) !important;
    transform: translateY(-3px);
    /* /* box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); */ 



/* Card Content Alignment Fix */
.about-card, .service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.about-card p, .service-card p {
    margin-top: auto;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

.service-card h5, .about-card h4 {
    margin-bottom: auto;
}

/* Better text wrapping and spacing */
.service-card, .about-card {
    word-wrap: break-word;
    hyphens: auto;
}

/* Enhanced Button Styles */
.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    /* /* box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1); */ 
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .navbar-brand {
        font-size: 1.4rem !important;
    }
    
    .main-content {
        padding-top: 70px;
    }
    
    .about-card, .service-card {
        min-height: 300px;
        margin-bottom: 20px;
    }
    
    .service-icon, .about-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-btn, .btn-outline-light {
        padding: 15px 30px;
        font-size: 0.9rem;
        margin: 5px;
        display: inline-block;
        width: auto;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .about-card, .service-card {
        padding: 30px 20px;
        min-height: 280px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .project-card {
        height: 280px !important;
        margin-bottom: 20px;
    }
    
    .project-card .project-image {
        height: 280px !important;
    }
    
    .project-card img {
        height: 280px !important;
    }
    
    .project-card .project-info h3 {
        font-size: 1.4rem !important;
        min-height: 1.8em;
    }
    
    .filter-btn {
        padding: 10px 20px;
        margin: 5px;
        font-size: 0.8rem;
    }
}

/* Loading and Animation Improvements */
.loading {
    background: var(--dark-color);
}

.loading-spinner {
    border-color: var(--border-color);
    border-top-color: var(--secondary-color);
}

/* Enhanced Swiper Styles */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
    transform: scale(1.2);
}

.swiper-button-next, .swiper-button-prev {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
}

/* Page Header Styles */
.page-header {
    background: var(--dark-color) !important;
    padding: 120px 0 80px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* Contact & Form Styles */
.contact-info {
    background: var(--light-dark) !important;
    /* border: 1px solid var(--border-color); */
    /* /* box-shadow: var(--shadow-light); */ 
}

.contact-form {
    background: var(--light-dark) !important;
    /* border: 1px solid var(--border-color); */
    /* /* box-shadow: var(--shadow-light); */ 
}

.form-control {
    background: var(--medium-dark);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.form-control:focus {
    background: var(--medium-dark);
    border-color: var(--border-color) !important;
    color: var(--text-primary);
    box-shadow: none !important;
    outline: none !important;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
}

.btn-primary {
    background: var(--gradient-secondary);
    border: none;
    color: var(--dark-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #931A1D 0%, #b02326 100%) !important;
    color: var(--text-primary) !important;
    border-color: #931A1D !important;
}

/* Force button colors - Override any conflicting styles */
.btn, .action-btn, button {
    background-color: #931A1D !important;
    border-color: #931A1D !important;
    color: #ffffff !important;
}

.btn:hover, .action-btn:hover, button:hover {
    background-color: #b02326 !important;
    color: #ffffff !important;
}

/* Remove all shadows globally */
*, *::before, *::after {
    /* box-shadow: none !important; */
    text-shadow: none !important;
}

/* Prevent border changes on hover globally */
/* *:hover {
    border-color: inherit !important;
    border-width: inherit !important;
    border-style: inherit !important;
} */

/* Remove filter drop-shadow */
* {
    filter: none !important;
}

/* Timeline Styles for Dark Theme - REMOVED */
/* Orijinal haline döndürüldü */

/* Team Cards */
.team-card {
    background: var(--light-dark);
    /* box-shadow: var(--shadow-light); */
}

.team-card h5 {
    color: var(--text-primary);
}

.team-card .text-primary {
    color: var(--secondary-color) !important;
}

.team-card .text-muted {
    color: var(--text-muted) !important;
}

/* Certificate Cards */
.certificate-card {
    background: var(--light-dark) !important;
    /* box-shadow: var(--shadow-light) !important; */
    transition: all 0.3s ease;
}

/* Hover effects removed for certificate cards */
/*
.certificate-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color) !important;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.4) !important; */


.certificate-card h6 {
    color: var(--text-primary);
}

/* Remove hover effects from text elements in certificate cards */
.certificate-card h6:hover,
.certificate-card p:hover,
.certificate-card i:hover,
.certificate-card .small:hover {
    border: none !important;
    outline: none !important;
    /* box-shadow: none !important; */
    transform: none !important;
    background: transparent !important;
}

/* Ensure no pointer cursor on text elements */
.certificate-card h6,
.certificate-card p,
.certificate-card i,
.certificate-card .small {
    cursor: default !important;
}

/* Accordion Styles */
.accordion-item {
    background: var(--light-dark);
    border: 1px solid var(--border-color);
    border-radius: 15px !important;
    margin-bottom: 15px;
}

.accordion-button {
    background: var(--light-dark);
    color: var(--text-primary);
    border: none;
    border-radius: 15px !important;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-secondary);
    color: var(--dark-color);
}

.accordion-body {
    background: var(--medium-dark);
    color: var(--text-secondary);
    border-radius: 0 0 15px 15px;
}

/* Alert Styles */
.alert {
    border-radius: 15px;
    border: none;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

/* Mobile Menu Enhancements */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--light-dark);
        border-radius: 15px;
        margin-top: 15px;
        padding: 20px;
        border: 1px solid var(--border-color);
        /* box-shadow: var(--shadow-dark); */
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0;
        margin: 5px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

/* Additional Dark Theme Elements */
.bg-light {
    background: var(--light-dark) !important;
}

.text-center img {
    border-radius: 15px;
    /* box-shadow: var(--shadow-light); */
}

/* Enhanced Visual Effects */
.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-secondary);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
/* 
.service-card:hover::after {
    opacity: 0.1;
} */

.about-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-secondary);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    /* transition: opacity 0.3s ease; */

}

/* .about-card:hover::after {
    opacity: 0.1;
} */

/* Scrollbar Customization for Dark Theme */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #931A1D;
}

/* Bootstrap Override for Dark Theme */
.text-primary {
    color: var(--secondary-color) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.btn-primary {
    --bs-btn-bg: var(--secondary-color) !important;
    --bs-btn-border-color: var(--secondary-color) !important;
    --bs-btn-hover-bg: #931A1D !important;
    --bs-btn-active-bg: #931A1D !important;
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}
a.btn.btn-primary.mb-3{
    margin-left: 24px
}

.btn-outline-primary {
    --bs-btn-color: var(--secondary-color);
    --bs-btn-border-color: var(--secondary-color);
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-color: var(--dark-color);
}

/* Swiper Dark Theme Fixes */
.hero-slider.swiper-initialized {
    opacity: 1;
}

/* Image Loading Fix */
img {
    max-width: 100%;
    height: auto;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Button Styles */
.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    border: none;
    border-radius: 25px;
    padding: 12px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-color);
}


/* Bottom fade */
.bottom-fade {
    width: 100%;
    top: 0;
    height: 100%;
    float: left;
    position: absolute;
    z-index: 0;
    border-radius: 20px 20px 0 20px;
}

/* Portfolio style */
.portfolio {
    position: relative;
}

.portfolio a {
    text-decoration: none !important;
}

.portfolio a:hover,
.portfolio a:focus,
.portfolio a:active,
.portfolio a:visited {
    text-decoration: none !important;
}
.portfolio .portfolio-carousel {
    position: relative;
    display: block;
    max-width: 800px;
    margin: 0 auto;
}
.portfolio .portfolio-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px 0px 0px;
}
.portfolio .item {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 37px;
    height: 100%;
    /* min-height: 350px; */
}

/* Grid layout adjustments */
.portfolio .row .col-lg-3,
.portfolio .row .col-md-6 {
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;
}
/* img */
.portfolio .item .img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    border-radius: 20px;
    width: 100%;
    height: 300px;
    transform: scale(1);
    transition: transform 500ms ease;
    flex-shrink: 0;
}

.portfolio .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.portfolio .item:hover .img img {
    transform: scale(1.05);
}
.portfolio .item .con {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    opacity: 1;
    border-radius: 0 0 20px 20px;
    display: grid;
    grid-template-columns: 85% 15%;
    align-items: center;
    /* background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent); */
    padding: 20px;
}
.portfolio .item .con.opacity-1 { 
    opacity: 1;
}
.portfolio .item .con.active {
    visibility: visible;
    opacity: 1;
}
/* arrow */
.portfolio .item .con .arrow {
    position: relative;
    display: block;
    visibility: visible;
    opacity: 1;
    text-align: -webkit-right;
    transform: rotate(0);
    -webkit-transition: all 0.7s linear;
    -o-transition: all 0.7s linear;
    transition: all 0.7s linear;
}
.portfolio .item .con .arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 1px solid #e10c18;
    background-image: linear-gradient(#e10c18, #99040d);
    border-radius: 50%;
    font-size: 17px;
    color: #fff;
    text-decoration: none !important;
}

.portfolio .item .con .arrow a:hover,
.portfolio .item .con .arrow a:focus,
.portfolio .item .con .arrow a:active,
.portfolio .item .con .arrow a:visited {
    text-decoration: none !important;
}
.portfolio .item:hover .con .arrow a {
    border: 1px solid #fff;
    background: #fff;
    color: #fff;
    text-decoration: none !important;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.7s linear;
    -o-transition: all 0.7s linear;
    transition: all 0.7s linear;
}
/* title */
.portfolio .item .con .title {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(-280px);
    padding: 20px;
    width: calc(100% - 40px);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(5px);
}

.portfolio .item .con .title h6 {
    font-family: "Urbanist", sans-serif;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 0;
}
.portfolio .item .con .title h6 span {
    color: #e10c18;
    margin-right: 2px;
}
.portfolio .item .con .title h4 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.portfolio .item .con .title h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 0;
}
/* icon */
.portfolio .item .con .icon {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: #0a0a0a;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding: 15px;
}

.portfolio .item:hover .con .icon .arrow {
  transform: scale(1.05);
}
.portfolio .item .con .icon::before {
    position: absolute;
    content: "";
    bottom: 6px;
    left: -20px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    /* box-shadow: 6px 6px 0 6px #0a0a0a; */
}
.portfolio .item .con .icon::after {
    position: absolute;
    content: "";
    top: -20px;
    right: 6px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    /* box-shadow: 6px 6px 0 6px #0a0a0a; */
}
.portfolio .item .con .icon .arrow {
    position: absolute;
    background-image: linear-gradient( #931A1D);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    width: 60px;
    height: 60px;
    line-height: 60px;
}
.portfolio .item:hover .con .icon .arrow {
    color: #931A1D !important;
    background: #fff;
}
/* owl nav */
.portfolio .owl-item.active .item .con {
    visibility: visible;
    opacity: 1;
}
.portfolio .owl-theme .owl-nav {
    position: absolute !important;
    top: 45% !important;
    bottom: auto !important;
    width: 100%
}
.portfolio .owl-theme .owl-nav {
    position: relative;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.portfolio .owl-theme .owl-prev,
.portfolio .owl-theme .owl-prev {
    left: 10px !important
}
.portfolio .owl-theme .owl-next {
    right: 10px !important
}
.portfolio .owl-theme .owl-prev,
.portfolio .owl-theme .owl-next {
    color: #fff;
    position: absolute !important;
    top: 50%;
    padding: 0;
    height: 50px;
    width: 50px;
    border-radius: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 0;
    text-align: center;
    font-size: 17px
}
.portfolio .owl-theme .owl-prev > span,
.portfolio .owl-theme .owl-next > span {
    position: absolute;
    line-height: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}
.portfolio .owl-carousel .owl-nav button.owl-next,
.portfolio .owl-carousel .owl-nav button.owl-prev {
    outline: none;
}
.portfolio .owl-theme .owl-nav [class*=owl-] {
    width: 55px;
    height: 55px;
    line-height: 58px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 100%;
    color: #fff;
    font-size: 12px;
    margin-right: 10px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}
.portfolio .owl-theme .owl-nav [class*=owl-]:hover {
    border: 1px solid #fff;
    background: #fff;
}

/* Section padding */
.section-padding {
    padding: 120px 0;
}

/* Section titles */
.section-subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #e10c18;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.section-title.white {
    color: #fff;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ===== SERVICE PAGES STYLES ===== */

/* Hero Section Simple */
.hero-section-simple {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--text-primary);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Service Content */
.service-content h2 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 30px;
}

.service-content .lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Service Area Items */
.service-area-item {
    background: var(--light-dark);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* .service-area-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
} */

.service-area-item h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

.service-area-item ul {
    text-align: left;
    flex-grow: 1;
}

.service-area-item li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.service-area-item li i {
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-right: 8px;
}

/* Project Type Items */
.project-type-item {
    background: var(--light-dark);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.project-type-item:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.project-type-item h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
    margin-top: 0;
}

.project-type-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Category Items */
.category-item {
    background: var(--light-dark);
    padding: 35px 25px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* .category-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
} */

.category-item h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

.category-item ul {
    margin-bottom: 0;
    flex-grow: 1;
}

.category-item li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.category-item li i {
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-right: 8px;
}

/* Infrastructure Items */
.infrastructure-item {
    background: var(--light-dark);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.infrastructure-item:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.infrastructure-item span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.capacity-card{
    border:none !important;
}
/* Capacity Items */
.capacity-item {
    padding: 20px 15px;
    background: rgba(147, 26, 29, 0.1);
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.capacity-item span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Brand Features */
.brand-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--light-dark);
    border-radius: 8px;
}

.brand-feature i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.brand-feature span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Highlight Box */
.highlight-box {
    background: var(--light-dark);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.highlight-box h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-box p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.highlight-box li {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.highlight-box li i {
    margin-right: 8px;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--light-dark);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.sidebar-widget p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 12px;
}

.service-list a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.service-list a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.service-list a i {
    margin-right: 8px;
    width: 16px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 16px;
}

/* Advantage List */
.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(147, 26, 29, 0.1);
    border-radius: 6px;
}

.advantage-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 16px;
}

/* Store Info */
.store-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.store-info .info-item i {
    color: var(--secondary-color);
    margin-top: 3px;
    width: 16px;
}

.store-info .info-item strong {
    color: var(--text-primary);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2px;
}

.store-info .info-item p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-dark);
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.process-step:hover {
    /* transform: translateY(-5px); */
    border-color: var(--secondary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-dark);
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-sidebar {
        position: static;
        top: auto;
        margin-top: 40px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .service-area-item,
    .category-item,
    .project-type-item {
        margin-bottom: 20px;
    }
}

/* ===== SERVICES PAGE STYLES ===== */

/* Main Service Cards */
.main-service-card {
    background: var(--light-dark);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    /* border: 1px solid var(--border-color); */
    display: flex;
    flex-direction: column;
}

.main-service-card:hover {
    /* transform: translateY(-10px); */
    border-color: var(--secondary-color);
    /* box-shadow: 0 15px 40px rgba(147, 26, 29, 0.2); */
}

.main-service-card h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.4rem;
    margin-top: 0;
}

.main-service-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.service-highlights li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
}

.service-highlights li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Additional Service Cards */
.additional-service-card {
    background: var(--light-dark);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    /* border: 1px solid var(--border-color); */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .additional-service-card:hover {
     transform: translateY(-5px);
    border-color: var(--secondary-color); 
} */

.additional-service-card h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    margin-top: 0;
}

.additional-service-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-content h2 {
    color: var(--secondary-color);
    font-weight: 700;
}

.why-choose-content .lead {
    color: var(--text-secondary);
}

.advantage-items {
    margin-top: 30px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-dark);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(10px);
    border-color: var(--secondary-color);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 1.3rem;
    color: var(--text-primary);
}

.advantage-content h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.advantage-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.why-choose-image img {
    border-radius: 20px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

/* Responsive for Services Page */
@media (max-width: 992px) {
    .why-choose-content {
        margin-bottom: 40px;
    }
    
    .main-service-card {
        margin-bottom: 30px;
    }
    
    .additional-service-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .main-service-card {
        padding: 30px 20px;
    }
    
    .main-service-card .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .main-service-card .service-icon i {
        font-size: 2rem;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-icon {
        margin: 0 auto 15px;
    }
}

/* ===== GLOBAL BUTTON STANDARDIZATION ===== */
/* Tüm text içeren butonları 264x46 boyutunda ve aynı radius'ta standartlaştır */
/* Navbar linkleri hariç - sadece gerçek butonlar */
.btn:not(.nav-link):not(.navbar-brand):not(.navbar-toggler),
.hero-btn,
.btn-primary,
.btn-secondary,
.btn-outline-primary,
.btn-outline-light,
.btn-simple,
.action-btn,
button[type="submit"]:not(.navbar-toggler),
button[type="button"]:not(.navbar-toggler),
input[type="submit"],
.contact-btn,
.service-btn,
.project-btn {
    width: 264px ;
    height: 46px !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 0 20px !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

/* Hover efektleri için özel stillemeler */
.btn:not(.nav-link):not(.navbar-brand):not(.navbar-toggler):hover,
.hero-btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline-primary:hover,
.btn-outline-light:hover,
.btn-simple:hover,
.action-btn:hover,
button[type="submit"]:not(.navbar-toggler):hover,
button[type="button"]:not(.navbar-toggler):hover,
input[type="submit"]:hover,
.contact-btn:hover,
.service-btn:hover,
.project-btn:hover {
    transform: translateY(-2px) !important;
    /* box-shadow: 0 8px 15px rgba(147, 26, 29, 0.4) !important; */
}

/* Responsive için mobilde biraz daha küçük */
@media (max-width: 768px) {
    .btn:not(.nav-link):not(.navbar-brand):not(.navbar-toggler),
    .hero-btn,
    .btn-primary,
    .btn-secondary,
    .btn-outline-primary,
    .btn-outline-light,
    .btn-simple,
    .action-btn,
    button[type="submit"]:not(.navbar-toggler),
    button[type="button"]:not(.navbar-toggler),
    input[type="submit"],
    .contact-btn,
    .service-btn,
    .project-btn {
        width: 220px !important;
        height: 42px !important;
        font-size: 13px !important;
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
#backToTop {
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ===== PORTFOLIO TAB BUTTONS ===== */
.portfolio-tab-btn {
    transition: all 0.3s ease !important;
    border-radius: 6px !important;
    padding: 12px 24px !important;
}

.portfolio-tab-btn:not(:first-child) {
    margin-left: 15px;
}

.portfolio-tab-btn:hover {
    background-color: var(--secondary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    /* box-shadow: 0 4px 12px rgba(147, 26, 29, 0.3); */
}

.portfolio-tab-btn.active {
    background-color: var(--secondary-color) !important;
    color: white !important;
}

.portfolio-tab-btn.active:hover {
    background-color: var(--secondary-color) !important;
    color: white !important;
}

/* Portfolio Tabs Mobile Responsive */
@media (max-width: 768px) {
    .portfolio-tabs .nav {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
    }
    
    .portfolio-tab-btn {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }
    
    .portfolio-tab-btn:last-child {
        margin-bottom: 0 !important;
    }
}

/* ===== TÜM HOVER EFEKTLERİNİ KALDIRMA KURALLARI ===== */
/* Genel hover efektlerini tamamen iptal et */
*:hover,
*::before:hover,
*::after:hover {
    transform: none !important;
    /* box-shadow: none !important; */
    border-color: inherit !important;
    background-color: inherit !important;
    color: inherit !important;
    opacity: inherit !important;
    filter: none !important;
    text-shadow: none !important;
    transition: none !important;
}

/* Özel sınıflar için hover iptal kuralları */
/* .project-showcase-card:hover, */
/* .project-showcase-card:hover .project-image img,
.project-showcase-card:hover .project-overlay, */
/* .progress-dashboard-card:hover, */
.gallery-item:hover,
.gallery-item:hover .gallery-overlay,
/* .about-card:hover::before, */
/* .about-card:hover, */
/* .service-card:hover, */
.project-tabs .nav-link:hover::before,
.project-tabs .nav-link:hover,
.project-card:hover,
.project-card:hover .project-image img,
.project-card:hover .project-overlay,
.project-card:hover .project-info,
.project-card .btn-simple:hover,
/* .stat-item:hover::before,
.stat-item:hover, */
.contact-info a:hover,
.hero-btn:hover::before,
.hero-btn:hover

/* .certificate-card:hover,
.certificate-card h6:hover,
.certificate-card p:hover,
.certificate-card i:hover,
.certificate-card .small:hover, */
/* .timeline-year:hover, */
/* .timeline-content:hover,
.timeline-content:hover h5,
.timeline-content:hover p,
.timeline-item:hover,
.timeline-year:hover h5,
.timeline-year:hover p */
{
    transform: none !important;
    /* box-shadow: none !important; */
    border-color: inherit !important;
    background-color: inherit !important;
    color: inherit !important;
    opacity: inherit !important;
    filter: none !important;
    text-shadow: none !important;
    transition: none !important;
    background: inherit !important;
    border: inherit !important;
    outline: none !important;
}

/* Sadece navigation dropdown'lar için hover korunacak (fonksiyonellik için) */
.nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.dropdown-item:hover {
    background: var(--gradient-secondary) !important;
    color: var(--dark-color) !important;
}

/* Dealership Items Styling */
.dealership-item {
    /* background: var(--light-dark); */
    padding: 25px 15px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* 
.dealership-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */


.dealership-item img {
    max-height: 80px;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.dealership-item:hover img {
    filter: brightness(1);
    transform: scale(1.05);
}

.dealership-item h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Gallery Item Improvements */
.gallery-item .gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Button hover sadece renk değişimi (çok temel) */
.btn:hover,
.btn-primary:hover,
.btn-outline-light:hover {
    background-color: var(--secondary-color) !important;
    color: white !important;
    transform: none !important;
    /* box-shadow: none !important; */
}

/* Footer hover effects completely removed */
footer a:hover {
    /* color: var(--secondary-color) !important; */
    transform: none !important;
    /* box-shadow: none !important; */
}

footer .social-links a:hover {
    /* No hover effects for social media icons */
    transform: none !important;
    /* box-shadow: none !important; */
    background: var(--light-dark) !important;
}

.img-tesis1{
    width: 100%;
    height: auto;
}

/* Facilities Section Alignment */
.facilities-content h3 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* AOS Animation Hover Disable - Comprehensive */
[data-aos]:hover,
[data-aos-delay]:hover,
.aos-animate:hover {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    transition-delay: 0s !important;
    animation-delay: 0s !important;
}

/* Specific override for all AOS delays */
[data-aos-delay="0"]:hover,
[data-aos-delay="100"]:hover,
[data-aos-delay="200"]:hover,
[data-aos-delay="300"]:hover,
[data-aos-delay="400"]:hover {
    /* transform: translateY(0) !important; */
    opacity: 1 !important;
    transition: none !important;
}

/* ===== LIGHTBOX MODAL STYLES ===== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.lightbox-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image img {
    max-width: 80vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

/* .lightbox-close:hover {
    background: #e74c3c;
    color: white;
    transform: rotate(90deg);
} */

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* .lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
} */

.lightbox-caption {
    text-align: center;
    color: white;
}

.lightbox-caption h5 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.lightbox-counter {
    font-size: 0.9rem;
    color: #ccc;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .lightbox-image img {
        max-width: 95vw;
        max-height: 60vh;
    }
    
    .lightbox-close {
        top: -40px;
        right: -20px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: -50px;
    }
    
    .lightbox-next {
        right: -50px;
    }
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
    /* Ana sayfa - 35 Yıllık Deneyim başlığı */
    .experience-title {
        margin-top: 20px !important;
    }
    
    /* Ana sayfa - İletişime Geç butonu */
    .contact-btn-mobile {
        margin-bottom: 20px !important;
    }
    
    /* Hakkımızda - Firmamızın Hikayesi başlığı */
    .company-story-title {
        margin-top: -20px !important;
    }
    
    /* Hakkımızda - Kuruluş yılı ve proje kartları */
    .company-stats-card {
        margin-bottom: 20px !important;
    }
}
.ref-btn{
    width: 50px !important;
}