/* Renk ve Tipografi Değişkenleri */
:root {
    --giallo-yellow: #FFD700;
    --giallo-dark: #000000;
    --giallo-text: #333333;
    --giallo-light-text: #555555;
    --giallo-placeholder: #999999;
    --giallo-gray: #4A4A4A;
    --giallo-light-gray: #f8f9fa;
    --transition: all 0.3s ease;
}

/* Genel Tipografi */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--giallo-text);
    line-height: 1.6;
    padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--giallo-dark);
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

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

/* Butonlar */
.btn-primary {
    background-color: var(--giallo-yellow);
    border-color: var(--giallo-yellow);
    color: var(--giallo-dark);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: var(--giallo-dark);
}

/* Linkler */
a {
    color: var(--giallo-text);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--giallo-yellow);
}

/* Form Elemanları */
.form-control::placeholder {
    color: var(--giallo-placeholder);
}

.form-control:focus {
    border-color: var(--giallo-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

/* İkonlar */
.bi {
    color: var(--giallo-yellow);
}

/* Navbar Styles */
.navbar {
    height: 80px; /* Header yüksekliği artırıldı */
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 50px; /* Logo yüksekliği artırıldı */
    width: auto;
    transition: all 0.3s ease;
}

.navbar-nav {
    height: 70px; /* Navbar ile aynı yükseklik */
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: var(--giallo-text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-size: 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--giallo-yellow);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--giallo-yellow);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    background-color: var(--giallo-yellow);
    border: none;
    color: var(--giallo-dark);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: #e6c200;
    color: var(--giallo-dark);
}

/* Scroll State */
.navbar.scrolled {
    height: 60px; /* Scroll durumunda daha küçük */
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar.scrolled .navbar-logo {
    height: 35px; /* Scroll durumunda logo küçülür */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar {
        height: 65px;
    }

    .navbar-logo {
        height: 40px;
    }

    .navbar-toggler {
        padding: 0.25rem;
        border: none;
        font-size: 1.25rem;
    }

    .navbar-collapse {
        background: white;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .navbar-nav {
        height: auto;
        gap: 1rem;
        padding: 1rem 0;
    }

    .nav-item {
        height: auto;
    }

    .nav-link {
        padding: 0.5rem 0;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        height: 60px;
    }

    .navbar-logo {
        height: 35px;
    }

    .navbar-collapse {
        top: 50px;
    }
}

/* Hero Section Styles */
.hero-section {
    padding: 140px 0 100px;
    background: var(--giallo-light-gray);
    margin-top: 76px;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 3; /* Metin alanı daha geniş */
    padding-right: 2rem;
}

.hero-image-section {
    flex: 2; /* Görsel alanı daha dar */
    max-width: 40%;
}

.hero-text-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--giallo-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--giallo-text);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-image-wrapper {
    position: relative;
    padding: 1rem;
}

.hero-image-container {
    position: relative;
    height: 450px; /* Sabit yükseklik */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Görselin odak noktası */
    transition: transform 0.3s ease;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.1)
    );
    z-index: 1;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Stats Styles */
.stats-container {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    font-size: 2rem;
    color: var(--giallo-yellow);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--giallo-dark);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus {
    font-size: 1.8rem;
    color: var(--giallo-yellow);
    margin-left: 2px;
}

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

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .hero-image-container {
        height: 400px;
    }

    .navbar {
        height: 70px;
    }
    
    .navbar-logo {
        height: 45px;
    }
    
    .stats-container {
        gap: 2rem;
    }
}

@media (max-width: 991px) {
    .hero-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-content {
        flex: 1;
        padding-right: 0;
        text-align: center;
    }

    .hero-image-section {
        flex: 1;
        max-width: 100%;
    }

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

    .hero-stats {
        justify-content: center;
    }

    .stat-item {
        align-items: center;
    }

    .hero-image-container {
        height: 350px;
    }

    .navbar {
        height: 65px;
    }
    
    .navbar-logo {
        height: 40px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .stat-item {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .plus {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }

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

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

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

    .hero-image-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .navbar {
        height: 60px;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .stat-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--giallo-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--giallo-text);
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--giallo-text);
}

.service-features i {
    color: var(--giallo-yellow);
}

.service-link {
    margin-top: auto;
    color: var(--giallo-yellow);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--giallo-dark);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* İletişim Bölümü Stilleri */
.contact-info, .contact-form, .map-container {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--giallo-yellow);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--giallo-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--giallo-light-text);
}

.contact-item a {
    color: var(--giallo-text);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--giallo-yellow);
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
}

.form-control, .form-select {
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 15px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--giallo-yellow);
    box-shadow: none;
}

/* Footer Styles */
.footer {
    background-color: #fff;
    color: var(--giallo-dark);
    padding: 2rem 0;
    font-size: 1rem;
}

.footer p {
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer h4 {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}

/* Filo Bölümü Stilleri */
.fleet-info {
    padding: 20px;
}

.fleet-features {
    list-style: none;
    padding: 0;
}

.fleet-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.fleet-features li i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Resim stilleri */
.fleet-info img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fleet-info img:hover {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .fleet-info {
        margin-top: 30px;
    }
}

/* Harita Container Stilleri */
.map-container {
    margin-top: 30px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    border-radius: 8px;
}

/* Footer Logo Stilleri */
.footer {
    background-color: var(--giallo-gray);
    color: white;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
    .footer-logo {
        height: 35px;
        margin-bottom: 15px;
    }
}

/* Modern Buttons */
.btn-outline-light {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

/* Modern Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-control {
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #eee;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--giallo-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255,215,0,0.25);
}

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

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Filo Resim Stilleri */
.fleet-image-container {
    max-width: 400px;  /* 500px'den 400px'e düşürdük */
    margin: 0 auto;
}

.fleet-image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.fleet-features {
    list-style: none;
    padding: 0;
}

.fleet-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.fleet-features li i {
    margin-right: 10px;
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .fleet-image-container {
        max-width: 320px;  /* 400px'den 320px'e düşürdük */
        margin-bottom: 30px;
    }
}

/* Filo Bölümü Stilleri */
.fleet-content {
    padding-left: 2rem;
}

.highlight-number {
    color: var(--giallo-yellow);
    font-weight: 700;
    font-size: 1.2em;
}

.fleet-stats {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--giallo-light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

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

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

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

.fleet-features {
    margin-top: 2rem;
}

.fleet-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.fleet-features li i {
    color: var(--giallo-yellow);
    margin-right: 1rem;
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .fleet-content {
        padding-left: 0;
        text-align: center;
    }
    
    .fleet-features li {
        justify-content: center;
    }
}

/* About Page Styles */
.about-page {
    padding-top: 80px; /* Navbar height */
}

/* Hero Section */
.about-hero {
    background: var(--giallo-light-gray);
    padding: 80px 0;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--giallo-dark);
    margin-bottom: 1.5rem;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--giallo-text);
    line-height: 1.6;
}

.about-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Main Content */
.about-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--giallo-dark);
    margin-bottom: 1.5rem;
}

.content-section p {
    color: var(--giallo-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Mission & Vision Cards */
.mission-vision-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--giallo-yellow);
    margin-bottom: 1rem;
}

.mission-vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--giallo-dark);
    margin-bottom: 1rem;
}

/* Service Highlights */
.service-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--giallo-yellow);
}

/* Sidebar */
.about-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--giallo-dark);
    margin-bottom: 1.5rem;
}

/* Stats Widget */
.stats-widget .stat-item {
    margin-bottom: 1.5rem;
}

.stats-widget .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--giallo-yellow);
}

.stats-widget .stat-label {
    color: var(--giallo-text);
    font-size: 1rem;
}

/* Contact Widget */
.contact-info {
    margin-bottom: 1.5rem;
}

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

.info-item i {
    color: var(--giallo-yellow);
}

/* Responsive */
@media (max-width: 991px) {
    .about-hero {
        padding: 60px 0;
    }

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

    .about-subtitle {
        font-size: 1.3rem;
    }

    .about-image {
        height: 300px;
        margin-top: 2rem;
    }

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

@media (max-width: 576px) {
    .about-title {
        font-size: 2rem;
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }

    .mission-vision-card {
        padding: 1.5rem;
    }
}

/* Services Page Styles */
.services-page {
    padding-top: 80px;
}

/* Hero Section */
.services-hero {
    background: var(--giallo-light-gray);
    padding: 120px 0; /* Padding artırıldı */
    margin-bottom: 3rem;
}

.services-title {
    font-size: 4rem; /* Font boyutu artırıldı */
    font-weight: 900; /* Font kalınlığı artırıldı */
    color: var(--giallo-dark);
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-subtitle {
    font-size: 1.6rem;
    color: var(--giallo-text);
    line-height: 1.6; /* Line height optimize edildi */
    opacity: 0.9;
    max-width: 90%;
}

.services-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.services-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.services-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem; /* Gap artırıldı */
    margin-top: 5rem; /* Margin artırıldı */
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--giallo-yellow);
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

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

.service-icon {
    font-size: 3.2rem;
    color: var(--giallo-yellow);
    margin-bottom: 2.5rem;
    height: 90px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(255, 193, 7, 0.15);
}

.service-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--giallo-dark);
    margin-bottom: 1.8rem;
    line-height: 1.3;
}

.service-card p {
    color: var(--giallo-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 1.15rem;
}

.service-card .read-more {
    color: var(--giallo-yellow);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-card .read-more:hover {
    gap: 0.8rem;
    color: var(--giallo-dark);
}

/* Sidebar Widgets */
.services-sidebar {
    position: sticky;
    top: 100px;
    padding-left: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    border: 1px solid rgba(0,0,0,0.06);
}

/* Contact Widget */
.contact-widget {
    background: var(--giallo-dark);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.teklif-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.teklif-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

.teklif-form .form-label {
    display: block;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.teklif-form .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s ease;
}

.teklif-form .form-control:focus {
    background-color: rgba(255,255,255,0.15);
    border-color: var(--giallo-yellow);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
    outline: none;
}

.teklif-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.teklif-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.teklif-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.teklif-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--giallo-dark);
    background-color: var(--giallo-yellow);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.teklif-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    background-color: #ffd700;
}

.teklif-button i {
    font-size: 1.2rem;
}

/* Form validation styles */
.teklif-form .form-control.is-invalid {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

.teklif-form .invalid-feedback {
    display: block;
    color: #ffc107;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .contact-widget {
        padding: 2rem;
    }
    
    .teklif-title {
        font-size: 1.6rem;
    }
    
    .teklif-subtitle {
        font-size: 1rem;
    }
    
    .teklif-form .form-control {
        padding: 0.75rem;
    }
    
    .teklif-button {
        padding: 0.875rem;
        font-size: 1rem;
    }
}

/* Why Choose Us Widget */
.why-us-widget {
    background: rgba(255, 193, 7, 0.03);
}

.why-us-widget h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--giallo-dark);
    margin-bottom: 2rem;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-us-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.why-us-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.why-us-list i {
    color: var(--giallo-yellow);
    font-size: 1.4rem;
}

.why-us-list span {
    font-size: 1.15rem;
    color: var(--giallo-dark);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-title {
        font-size: 3.5rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .services-hero {
        padding: 100px 0;
    }

    .services-title {
        font-size: 3rem;
    }

    .services-subtitle {
        font-size: 1.4rem;
        max-width: 100%;
    }

    .services-image {
        height: 400px;
        margin-top: 3rem;
    }

    .services-sidebar {
        padding-left: 0;
        margin-top: 4rem;
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding: 80px 0;
    }

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

    .services-subtitle {
        font-size: 1.2rem;
    }

    .services-image {
        height: 300px;
    }

    .service-card {
        padding: 2rem;
    }

    .service-card h2 {
        font-size: 1.8rem;
    }

    .sidebar-widget {
        padding: 2rem;
    }
} 