:root {
    --primary-color: #FFB800;
    --secondary-color: #1A1A1A;
    --accent-color: #FFD700;
    --dark-color: #111111;
    --darker-color: #0A0A0A;
    --light-color: #FFFFFF;
    --gray-color: #1E1E1E;
    --gray-light: #2A2A2A;
    --text-muted: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--darker-color);
    color: var(--light-color);
    overflow-x: hidden;
}

/* Project Modal Styles */
.project-modal-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.project-gallery-thumb {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.project-gallery-thumb:hover {
    opacity: 0.8;
}

/* Fix for dark mode modal text */
body:not(.light-mode) .modal-content {
    background-color: var(--gray-color);
    color: var(--light-color);
    border: 1px solid rgba(255, 184, 0, 0.1);
}

body:not(.light-mode) .modal-header {
    border-bottom-color: rgba(255, 184, 0, 0.1);
}

body:not(.light-mode) .modal-footer {
    border-top-color: rgba(255, 184, 0, 0.1);
}

body:not(.light-mode) .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Loading Bar */
/* Loading Screen */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--darker-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.apple-spinner {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-block;
}

.apple-spinner .bar {
    width: 10%;
    height: 25%;
    background: var(--primary-color);
    position: absolute;
    left: 45%;
    top: 37%;
    opacity: 0;
    border-radius: 50px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    animation: fade 1s linear infinite;
}

.apple-spinner .bar:nth-child(1) {
    transform: rotate(0deg) translate(0, -140%);
    animation-delay: 0s;
}

.apple-spinner .bar:nth-child(2) {
    transform: rotate(30deg) translate(0, -140%);
    animation-delay: -0.9167s;
}

.apple-spinner .bar:nth-child(3) {
    transform: rotate(60deg) translate(0, -140%);
    animation-delay: -0.8333s;
}

.apple-spinner .bar:nth-child(4) {
    transform: rotate(90deg) translate(0, -140%);
    animation-delay: -0.75s;
}

.apple-spinner .bar:nth-child(5) {
    transform: rotate(120deg) translate(0, -140%);
    animation-delay: -0.6667s;
}

.apple-spinner .bar:nth-child(6) {
    transform: rotate(150deg) translate(0, -140%);
    animation-delay: -0.5833s;
}

.apple-spinner .bar:nth-child(7) {
    transform: rotate(180deg) translate(0, -140%);
    animation-delay: -0.5s;
}

.apple-spinner .bar:nth-child(8) {
    transform: rotate(210deg) translate(0, -140%);
    animation-delay: -0.4167s;
}

.apple-spinner .bar:nth-child(9) {
    transform: rotate(240deg) translate(0, -140%);
    animation-delay: -0.3333s;
}

.apple-spinner .bar:nth-child(10) {
    transform: rotate(270deg) translate(0, -140%);
    animation-delay: -0.25s;
}

.apple-spinner .bar:nth-child(11) {
    transform: rotate(300deg) translate(0, -140%);
    animation-delay: -0.1667s;
}

.apple-spinner .bar:nth-child(12) {
    transform: rotate(330deg) translate(0, -140%);
    animation-delay: -0.0833s;
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

/* Topbar Styles */
.topbar {
    background: var(--darker-color);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
    font-size: 14px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1040;
    transition: transform 0.3s ease-in-out;
    height: 41px;
}

.topbar.hidden {
    transform: translateY(-100%);
}

.topbar-info span {
    color: var(--text-muted);
    margin-right: 20px;
    transition: color 0.3s ease;
}

.topbar-info i {
    color: var(--primary-color);
}

.topbar-social {
    text-align: right;
}

.topbar-social a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.topbar-social a:hover {
    color: var(--primary-color);
}

/* Navbar Styles */
nav {
    background: rgba(17, 17, 17, 0.95) !important;
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
    padding: 20px 0;
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 41px;
    z-index: 1030;
}

nav.top-position {
    top: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

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

.since-label {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-left: 8px;
    opacity: 0.9;
    font-style: italic;
    letter-spacing: 0.5px;
    align-self: flex-end;
    margin-bottom: 6px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover:before {
    transform: scaleX(1);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #FFB800, #FF8A00);
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 24px;
    font-size: 0.95rem;
    border-radius: 100px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.2),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.2);
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF8A00, #FFB800);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.btn-primary:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover:before {
    opacity: 1;
}

.btn-primary:hover:after {
    transform: scale(1) rotate(45deg);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

/* Card Styles */
.rental-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(145deg, var(--gray-color), var(--gray-light));
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 30px;
}

.rental-card:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #FFB800, transparent, #FF8A00);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.rental-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.rental-card:hover:before {
    opacity: 1;
}

.rental-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.rental-card:hover img {
    transform: scale(1.1);
}

.rental-card .card-img-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 30%,
            rgba(0, 0, 0, 0.2) 60%,
            rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.rental-card .price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.rental-card .card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.rental-card .card-text {
    font-size: 16px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.rental-card .btn {
    width: fit-content;
}

/* Section Styles */
section {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

section:nth-child(even) {
    background-color: var(--darker-color);
}

.section-title {
    position: relative;
    display: inline-block;
    color: var(--light-color);
    margin-bottom: 2rem;
    padding-bottom: 10px;
}

.section-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

/* Animation Classes */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.parallax {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll Bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Media Queries */
@media (max-width: 768px) {
    .topbar {
        display: none;
        /* Mobilde topbar'ı gizle */
    }

    nav {
        top: 0 !important;
        /* Mobilde navbar'ı en üste sabitle */
    }

    #ana-sayfa {
        padding-top: 80px;
        /* Mobilde sadece navbar yüksekliği kadar padding */
    }

    .navbar-collapse {
        background-color: var(--gray-color);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 10px;
    }

    section {
        padding: 60px 0;
    }

    .rental-card {
        height: 350px;
    }
}

/* Image Player Modal Styles */
.modal-fullscreen .modal-content {
    background-color: black;
}

.modal-fullscreen .btn-close-white {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1060;
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}

.modal-fullscreen .btn-close-white:hover {
    opacity: 1;
}

.player-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.player-slider .swiper-slide img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.player-slider .swiper-button-next,
.player-slider .swiper-button-prev {
    color: var(--primary-color);
}

.player-slider .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.player-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* Text color updates */
.text-muted {
    color: #B0B0B0 !important;
    /* Daha açık gri ton */
}

.lead.text-muted {
    color: #D0D0D0 !important;
    /* Alt başlıklar için daha açık ton */
    font-weight: 400;
}

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

.footer-links a,
.footer a {
    color: #B0B0B0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover,
.footer a:hover {
    color: var(--primary-color);
    text-decoration: none;
    transform: translateX(5px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer .social-links a {
    color: var(--light-color);
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-right: 15px;
}

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

/* Form styles update */
.form-control::placeholder {
    color: #B0B0B0;
}

/* Dropdown menu styles update */
.dropdown-menu {
    background-color: var(--gray-color);
    border: 1px solid rgba(255, 184, 0, 0.1);
}

.dropdown-item {
    color: #D0D0D0;
}

.dropdown-item:hover {
    background-color: var(--gray-light);
    color: var(--primary-color);
}

/* Section description update */
.section-description {
    color: #D0D0D0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Card text update */
.rental-card .card-text {
    color: #E0E0E0;
    font-size: 16px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Footer text updates */
.footer p {
    color: #B0B0B0;
}

.footer h5 {
    color: var(--light-color);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Privacy links */
.footer .privacy-links a {
    color: #B0B0B0;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.footer .privacy-links a:hover {
    color: var(--primary-color);
}

/* Coming Soon Badge */
.coming-soon {
    position: absolute;
    top: 20px;
    left: -35px;
    background: linear-gradient(135deg, #FFB800, #FF8A00);
    color: var(--dark-color);
    padding: 8px 40px;
    font-weight: 700;
    transform: rotate(-45deg);
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Footer Brand Styles */
.footer-companies-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-companies-wrapper .footer-brand {
    margin-bottom: 0;
    margin-top: 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.footer-logo {
    height: 35px;
    /* Reduced from 40px */
    width: auto;
}

.company-logo-footer {
    width: 100px;
    height: auto;
    display: block;
}

.gever-tarim-logo {
    width: 70px;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-brand-text .brand-name {
    font-size: 1rem;
    /* Reduced from 1.1rem */
    font-weight: 700;
    color: var(--light-color);
    line-height: 1.1;
    margin-bottom: 2px;
}

.footer-brand-text .since-label {
    font-size: 0.70rem;
    /* Reduced from 0.75rem */
    color: var(--primary-color);
    font-style: italic;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Proje Slider Styles */
.project-slider {
    padding: 20px 5px 60px;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    transition: all 0.5s ease;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0) 100%);
    padding: 30px;
    color: var(--light-color);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-overlay h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-overlay p {
    font-size: 16px;
    margin: 0;
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

.swiper-pagination-bullet {
    background: var(--primary-color);
}

/* Phone link styles */
.topbar-info a,
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.topbar-info a:hover,
.footer-links a:hover {
    color: var(--primary-color);
}

/* Contact Section Styles */
.contact-card {
    background: linear-gradient(145deg, var(--gray-color), var(--gray-light));
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-card .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #FF8A00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.contact-card:hover .icon-box {
    transform: scale(1.1);
}

.contact-card .icon-box i {
    font-size: 32px;
    color: var(--dark-color);
}

.contact-card h4 {
    color: var(--light-color);
    font-weight: 600;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-card a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }

    .contact-card .icon-box {
        width: 60px;
        height: 60px;
    }

    .contact-card .icon-box i {
        font-size: 24px;
    }
}

/* Contact Page Phone List */
.phone-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phone-item {
    background: rgba(255, 255, 255, 0.05);
    /* Slight background for contrast if dark mode, or just structure */
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.phone-item:hover {
    background: rgba(255, 184, 0, 0.1);
    transform: translateX(5px);
}

.phone-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.phone-link {
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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


/* About Section Styles */
.about-section {
    background: var(--darker-color);
    padding: 120px 0 80px;
}

.about-card {
    background: linear-gradient(145deg, var(--gray-color), var(--gray-light));
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #FF8A00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-icon i {
    font-size: 36px;
    color: var(--dark-color);
}

.about-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-card p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section Styles */
.stats-section {
    background: var(--dark-color);
    padding: 80px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.stat-item {
    background: linear-gradient(145deg, var(--gray-color), var(--gray-light));
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-text {
    color: var(--light-color);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .about-section {
        padding: 100px 0 60px;
    }
}

@media (max-width: 768px) {
    .about-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .about-icon {
        width: 70px;
        height: 70px;
    }

    .about-icon i {
        font-size: 28px;
    }

    .stat-item {
        padding: 30px 15px;
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-text {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .about-card h3 {
        font-size: 20px;
    }

    .about-card p {
        font-size: 14px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-text {
        font-size: 14px;
    }
}

/* Who We Are Section Styles */
.who-we-are {
    background: var(--darker-color);
    position: relative;
}

.who-we-are .section-title {
    color: var(--light-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.who-we-are .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

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

.experience-box {
    background: linear-gradient(145deg, var(--gray-color), var(--gray-light));
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.experience-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.experience-number {
    text-align: center;
}

.experience-number span {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: block;
}

.experience-number small {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.experience-text h4 {
    color: var(--light-color);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.experience-text p {
    color: var(--text-muted);
    margin: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 991.98px) {
    .who-we-are .section-title {
        font-size: 2rem;
    }

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

    .experience-number span {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .who-we-are {
        text-align: center;
    }

    .who-we-are .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .experience-box {
        margin-bottom: 30px;
    }

    .about-image {
        margin-top: 30px;
    }
}

/* Form Styling */
.form-wrapper {
    background: linear-gradient(145deg, var(--gray-color), var(--gray-light));
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 20px;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--light-color);
}

.form-control,
.form-select {
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: var(--gray-color);
    border: 1px solid rgba(255, 184, 0, 0.1);
    color: var(--light-color);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus,
.form-select:focus {
    background: var(--gray-light);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 184, 0, 0.25);
    color: var(--light-color);
}

.form-select {
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: var(--gray-color);
    border: 1px solid rgba(255, 184, 0, 0.1);
    color: var(--light-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFB800' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    appearance: none;
}

.form-select:focus {
    background: var(--gray-light);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 184, 0, 0.25);
    color: var(--light-color);
}

.form-select option {
    background: var(--gray-color);
    color: var(--light-color);
    padding: 0.5rem;
}

.form-select::-ms-expand {
    display: none;
}

/* Placeholder rengi */
.form-select option:first-child {
    color: var(--text-muted);
}

/* Modern Contact Cards */
.contact-card {
    background: linear-gradient(145deg, var(--gray-color), var(--gray-light));
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.card-content {
    position: relative;
    z-index: 1;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
}

.contact-details h3 {
    color: var(--light-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.contact-details a.text-dark {
    color: var(--text-muted) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-details a.text-dark:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.status-badge.open {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.status-badge.closed {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.status-badge .fa-circle {
    font-size: 8px;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

.contact-card .btn {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.contact-card .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.2);
}

.contact-card .btn-primary:hover {
    background-color: #e6a600;
    border-color: #e6a600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.3);
}

.contact-card .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
}

.contact-card .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.3);
}

/* İletişim Başlık Section Styles */
.contact-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/page-header-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    margin-top: 100px;
}

.contact-header .section-title {
    color: var(--light-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-header .lead {
    color: #ffffff;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.theme-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    background-color: #212529;
    border: none;
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    background-color: #fffcfc;
}

.theme-toggle-btn i {
    font-size: 1.2rem;
}

/* Mobil cihazlar için responsive ayarlar */
@media (max-width: 768px) {
    .theme-toggle-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Hero Project Slider Styles */
.hero-project-slider-section {
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.hero-project-slider {
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.hero-project-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(10, 10, 10, 0.9) 0%,
            rgba(10, 10, 10, 0.75) 50%,
            rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}

.hero-project-slide .container {
    position: relative;
    z-index: 2;
}

.hero-project-content {
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.swiper-slide-active .hero-project-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-project-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #FF8A00);
    color: var(--dark-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.hero-project-title {
    font-size: 54px;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-project-location {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-project-location i {
    margin-right: 10px;
}

.hero-project-description {
    color: #E5E5E5;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-project-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Slider Navigation */
.hero-slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-slider-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 70px;
}

.hero-slider-navigation {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.hero-slider-prev,
.hero-slider-next {
    width: 55px;
    height: 55px;
    background: rgba(255, 184, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: static !important;
}

.hero-slider-prev:after,
.hero-slider-next:after {
    font-size: 20px;
    font-weight: 900;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 184, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-project-slider {
        height: 100vh;
        min-height: 500px;
    }

    .hero-project-slide {
        height: 100vh;
        min-height: 500px;
    }

    .hero-slide-overlay {
        background: linear-gradient(to top,
                rgba(10, 10, 10, 0.95) 0%,
                rgba(10, 10, 10, 0.8) 70%,
                rgba(10, 10, 10, 0.4) 100%);
    }

    .hero-project-slide .row {
        align-items: flex-end !important;
        padding-bottom: 100px;
    }

    .hero-project-content {
        max-width: 100%;
    }

    .hero-project-title {
        font-size: 36px;
    }

    .hero-project-description {
        font-size: 16px;
    }

    .hero-project-buttons {
        flex-direction: column;
    }

    .hero-project-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }

    .hero-slider-pagination {
        bottom: 30px;
    }

    .hero-slider-pagination .swiper-pagination-bullet {
        width: 30px;
    }

    .hero-slider-pagination .swiper-pagination-bullet-active {
        width: 50px;
    }

    .hero-slider-navigation {
        bottom: 90px;
        right: 50%;
        transform: translateX(50%);
    }

    .hero-slider-prev,
    .hero-slider-next {
        width: 45px;
        height: 45px;
    }
}

/* Designer Credit Styles */
.designer-credit {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 0, 0.1);
    margin-left: 15px;
}

.designer-credit:hover {
    color: var(--light-color) !important;
    background: rgba(255, 184, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    text-decoration: none;
}

.designer-name {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #FF8A00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.designer-credit:hover .designer-name {
    filter: drop-shadow(0 0 5px rgba(255, 184, 0, 0.5));
}

/* Contact Phone List Styles */
.phone-list {
    margin-top: 1.5rem;
}

.phone-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.phone-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 184, 0, 0.3);
    transform: translateX(5px);
}

.phone-item .fas {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.phone-link {
    color: var(--light-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

.whatsapp-btn i {
    margin-top: 2px;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Pagination Styles */
.pagination-custom {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 184, 0, 0.3);
    background: transparent;
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pagination-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: var(--primary-color);
    color: var(--dark-color);
    border-color: var(--primary-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Google Translate Widget Styles - FORCE HIDE */
#google_translate_element,
.goog-te-banner-frame,
.skiptranslate,
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-menu-value,
.goog-te-menu-frame,
.goog-tooltip,
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
    z-index: -9999 !important;
}

/* Fix for top spacing caused by Google Banner */
body {
    top: 0px !important;
    position: static !important;
}

/* Custom Language Button Style */
#lang-toggle {
    color: var(--light-color) !important;
    font-weight: 600 !important;
    font-size: 14px;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    outline: none !important;
    text-decoration: none !important;
}

#lang-toggle:hover {
    color: var(--primary-color) !important;
}

/* Group Companies Section Styles */
.group-companies-section {
    position: relative;
    overflow: hidden;
}

.company-logo-container {
    background: rgba(255, 255, 255, 0.05);
    /* Slightly visible bg */
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    /* Reduced height */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-social-link {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    font-size: 1.2rem;
}

.company-logo-container:hover .company-social-link {
    opacity: 1;
    transform: translateY(0);
}

.company-social-link:hover {
    transform: scale(1.1) translateY(-2px);
    color: var(--darker-color);
    box-shadow: 0 6px 15px rgba(255, 184, 0, 0.4);
}

.company-logo-container:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.1);
}

.company-logo {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
    /* Removed filter to keep original colors as requested by implied context of providing specific logos */
    transition: all 0.5s ease;
}

.company-logo-container:hover .company-logo {
    transform: scale(1.05);
}