/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: transparent;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: transparent;
    margin: 0;
    padding: 0;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Ana sayfa için transparan header */
body.index-page .header {
    background: none;
    position: absolute;
    box-shadow: none;
}

.navbar {
    padding: 1rem 0;
    background: transparent;
}

/* Ana sayfa için daha fazla padding */
body.index-page .navbar {
    padding: 2rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    position: relative;
    gap: 15px;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.logo {
    height: 120px;
    width: 120px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c8714f;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.dropdown {
    position: relative;
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    background: none;
    border: none;
    color: #2c3e50;
    cursor: pointer;
    padding: 5px;
    display: none;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.nav-close {
    display: none;
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content,
.dropdown-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(200, 113, 79, 0.1);
    color: #c8714f;
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.dropdown-toggle i.rotated {
    transform: rotate(180deg);
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: white;
    color: #c8714f;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-social a:hover {
    background: white;
    color: #c8714f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.nav-social a i {
    font-size: 1.1rem;
}

.service-call-btn {
    background: #c8714f;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    margin-right: 12px;
    white-space: nowrap;
}

.service-call-btn:hover {
    background: #a55a3f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 113, 79, 0.3);
}

.service-form-btn {
    background: #2c5f8d;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.service-form-btn:hover {
    background: #1e4461;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #c8714f 0%, #c1c2c4 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
    margin-top: 0;
}

/* Ana sayfa dışındaki sayfalar için header altı boşluk */
body:not(.index-page) .page-header {
    margin-top: 120px;
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    margin-top: 0;
}


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

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-bg-img.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}



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

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

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

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary {
    background: #c8714f;
    color: #fff;
    box-shadow: 0 4px 15px rgba(200, 113, 79, 0.3);
}

.btn-primary:hover {
    background: #a55a3f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 113, 79, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: #fff;
    color: #c8714f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #c8714f;
    border-color: #c8714f;
}

.btn-outline:hover {
    background: #c8714f;
    color: #fff;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

.btn-emergency {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

.btn-emergency:hover {
    background: #c0392b;
    border-color: #c0392b;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #c8714f;
    border-radius: 2px;
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c8714f, #c1c2c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #c8714f;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #a55a3f;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background: #fff;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.about-images-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.about-images-stack img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background: #fff;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #c8714f;
    margin: 2rem 0 1rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.about-images-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.about-images-stack img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c8714f, #c1c2c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background: #fff;
}

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

.experience-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.experience-text p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-item h3 {
    font-size: 2rem;
    color: #c8714f;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

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

/* Service Detail Sections */
.service-detail-section {
    padding: 80px 0;
    background: #fff;
}

.service-detail-section:nth-child(even) {
    background: #f8f9fa;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #c8714f, #c1c2c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    flex-shrink: 0;
}

.service-header-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-header-text p {
    color: #666;
    font-size: 1.2rem;
}

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

.service-category {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-category h3 {
    font-size: 1.3rem;
    color: #c8714f;
    margin-bottom: 1rem;
}

.service-category ul {
    list-style: none;
}

.service-category ul li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.service-category ul li:last-child {
    border-bottom: none;
}

.service-category ul li::before {
    content: '✓';
    color: #c8714f;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 3rem;
    color: #c8714f;
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: white;
    color: #c8714f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-links a:hover {
    background: white;
    color: #c8714f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c8714f, #c1c2c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: #c8714f;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    color: #a55a3f;
}

.contact-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: #fff;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c8714f;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #c8714f;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Social Media Section */
.social-media-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.social-media-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
    min-width: 150px;
}

.social-link:hover {
    transform: translateY(-5px);
    color: #c8714f;
}

.social-link i {
    font-size: 3rem;
    color: #c8714f;
}

.social-link span {
    font-weight: 500;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #fff;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.map-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.map-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-weight: 500;
}

.map-info i {
    color: #c8714f;
}

/* Emergency Contact */
.emergency-contact {
    padding: 60px 0;
    background: #c8714f;
    color: white;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.emergency-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.emergency-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.emergency-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Regional Service Pages */
.service-area-section {
    padding: 80px 0;
    background: #fff;
}

.service-area-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.service-area-section h2 i {
    color: #c8714f;
    margin-right: 1rem;
}

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

.area-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200, 113, 79, 0.2);
    border-color: #c8714f;
}

.area-card i {
    font-size: 2.5rem;
    color: #c8714f;
    margin-bottom: 1rem;
}

.area-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.area-card p {
    color: #666;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.why-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(200, 113, 79, 0.25);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #c8714f 0%, #a55a3f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(200, 113, 79, 0.3);
}

.why-icon i {
    font-size: 2rem;
    color: #fff;
}

.why-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.why-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #c8714f 0%, #a55a3f 100%);
    color: #fff;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    min-width: 200px;
}

.cta-buttons .btn-primary {
    background: #fff;
    color: #c8714f;
    border: 2px solid #fff;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: #fff;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-buttons .btn-secondary:hover {
    background: #fff;
    color: #c8714f;
}

.cta-note {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

.cta-note i {
    margin-right: 0.5rem;
}

/* Features Grid for Regional Pages */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 8px 25px rgba(200, 113, 79, 0.2);
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 2.5rem;
    color: #c8714f;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.content-block {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.content-block h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.content-block h3 i {
    color: #c8714f;
    margin-right: 1rem;
}

.content-block p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-areas .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-areas .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-areas .section-header h2 i {
    color: #c8714f;
    margin-right: 1rem;
}

.service-areas .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.area-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 15px 20px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid transparent;
}

.area-btn i {
    color: #c8714f;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.area-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 113, 79, 0.25);
    border-color: #c8714f;
    background: linear-gradient(135deg, #c8714f 0%, #a55a3f 100%);
    color: #fff;
}

.area-btn:hover i {
    color: #fff;
    transform: scale(1.2);
}

/* Instagram Gallery Styles */
.instagram-gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.instagram-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.instagram-gallery p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.instagram-widget {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.instagram-link {
    text-align: center;
}

.instagram-link .btn {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.instagram-link .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Gallery Styles */
.gallery-filter {
    padding: 40px 0;
    background: #fff;
}

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

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #c8714f;
    background: transparent;
    color: #c8714f;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #c8714f;
    color: white;
}

.gallery-section {
    padding: 80px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(200, 113, 79, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 2rem;
}

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

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-overlay i {
    font-size: 2rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: 5% auto;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: #c8714f;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    opacity: 0.8;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 2001;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(200, 113, 79, 0.9);
    color: white;
    border: none;
    padding: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 2rem;
    transition: all 0.3s ease;
    pointer-events: all;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #c8714f;
    transform: scale(1.1);
}

/* References Styles */
.references-stats {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #c8714f;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.references-section {
    padding: 80px 0;
    background: #fff;
}

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

.reference-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

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

.reference-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.reference-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.reference-info h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.reference-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.reference-services {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.service-tag {
    background: #c8714f;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #c8714f;
    font-family: serif;
}

.testimonial-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #c8714f;
    font-weight: 500;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    margin-top: 0;
}

/* Ana sayfa dışındaki sayfalar için header altı boşluk */
body:not(.index-page) .breadcrumb {
    margin-top: 200px;
    padding-top: 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #c8714f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #a55a3f;
}

.breadcrumb-nav span {
    color: #666;
}

/* Service Details Layout */
.service-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #c8714f;
    margin: 2rem 0 1rem;
}

.service-content ul,
.service-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.service-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-sidebar .service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-sidebar .service-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-sidebar .service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-sidebar .service-card ul {
    list-style: none;
    padding: 0;
}

.service-sidebar .service-card ul li {
    margin-bottom: 0.5rem;
}

.service-sidebar .service-card ul li a {
    color: #c8714f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-sidebar .service-card ul li a:hover {
    color: #a55a3f;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #c8714f, #c1c2c4);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    height: 150px;
    width: 150px;
    object-fit: contain;
    border-radius: 8px;
    margin: 0 auto 1rem auto;
    display: block;
    transition: opacity 0.3s ease;
}

.footer-section a:hover .footer-logo {
    opacity: 0.8;
}

.footer-section h3 {
    color: #c8714f;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c8714f;
}

.footer-section p a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: #c8714f;
}

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

/* Responsive Design for Medium Screens */
@media (max-width: 1300px) {
    .nav-container {
        padding: 0 20px;
        gap: 10px;
    }
    
    .nav-menu {
        gap: 1.2rem;
    }
    
    .service-form-btn,
    .service-call-btn {
        padding: 10px 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        z-index: 1001;
        transition: right 0.3s ease;
    }
    
    .nav-close {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        background: #c8714f;
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(200, 113, 79, 0.3);
    }
    
    .nav-close:hover {
        background: #a55a3f;
        transform: rotate(90deg);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        cursor: pointer;
    }

    /* Ana sayfa için hamburger butonu stilleri */
    body.index-page .nav-toggle {
        background: rgba(255, 255, 255, 0.9);
        padding: 8px;
        border-radius: 4px;
        backdrop-filter: blur(10px);
    }

    body.index-page .nav-toggle .bar {
        background-color: #333;
    }

    /* Diğer sayfalar için hamburger butonu */
    body:not(.index-page) .nav-toggle .bar {
        background-color: #333;
    }

    /* Mobil menü link stilleri */
    .nav-menu .nav-link {
        color: #333;
        font-size: 1.1rem;
        padding: 1rem 2rem;
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        text-align: left;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #c8714f;
        background-color: rgba(200, 113, 79, 0.1);
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    /* Mobil dropdown menü stilleri */
    .nav-menu .dropdown {
        position: relative;
        width: 100%;
    }
    
    .dropdown-header {
        position: relative;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .dropdown-header .nav-link {
        padding: 1rem 3.5rem 1rem 2rem;
        border-bottom: none !important;
        display: block;
        width: 100%;
    }
    
    .dropdown-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 3.5rem;
        color: #2c3e50;
        background: transparent;
    }

    .nav-menu .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(200, 113, 79, 0.05);
        padding: 0;
        margin: 0;
        display: none;
        border-radius: 0;
        width: 100%;
    }

    .nav-menu .dropdown-content.active {
        display: block;
    }

    .nav-menu .dropdown-content a {
        padding: 0.8rem 3rem;
        color: #333;
        text-decoration: none;
        display: block;
        font-size: 1rem;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

    .nav-menu .dropdown-content a:hover {
        background-color: rgba(200, 113, 79, 0.1);
        border-left-color: #c8714f;
        color: #c8714f;
    }

    /* Mobil dropdown toggle butonu */
    .nav-menu .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-menu .dropdown-toggle i {
        transition: transform 0.3s ease;
        font-size: 0.9rem;
    }

    .nav-menu .dropdown-toggle i.rotated {
        transform: rotate(180deg);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        height: 100vh;
        padding: 0;
    }

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

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

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

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
        width: 200px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .about-content,
    .about-main,
    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .service-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .emergency-content {
        flex-direction: column;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .lightbox-nav {
        padding: 0 10px;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 85vh;
    }

    .area-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .content-block {
        padding: 2rem 1.5rem;
    }

    .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .area-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .service-areas .section-header h2 {
        font-size: 1.8rem;
    }

    .service-areas .section-header p {
        font-size: 1rem;
    }

    .map-info {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

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

    .navbar {
        padding: 1rem 0;
    }

    .logo {
        height: 80px;
        width: 80px;
    }

    .footer-logo {
        height: 80px;
        width: 80px;
    }

    .nav-social {
        display: none;
    }

    .service-call-btn {
        display: none;
    }
    
    .service-form-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 12px;
        font-size: 0.85rem;
        margin-right: 10px;
        white-space: nowrap;
    }
    
    .service-form-btn i {
        margin-right: 5px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

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

    .hero-content {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 180px;
    }



    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .gallery-item {
        margin-bottom: 1rem;
    }

    .logo {
        height: 60px;
        width: 60px;
    }

    .footer-logo {
        height: 60px;
        width: 60px;
    }
}

/* Contact Info Links - Keep original colors */
.contact-info a {
    color: inherit;
    text-decoration: none;
}

.contact-info a:hover {
    color: inherit;
    text-decoration: none;
}

/* Floating Action Buttons */
.floating-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-size: 24px;
    z-index: 1000;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: white;
}

.floating-btn.phone {
    background: #c8714f;
    color: white;
    left: 20px;
}

.floating-btn.phone-top {
    bottom: 160px;
}

.floating-btn.phone-bottom {
    bottom: 20px;
}

.floating-btn.whatsapp {
    background: #25D366;
    color: white;
    bottom: 90px;
    left: 20px;
}

/* Index.html dışındaki sayfalar için nav-social stilleri */
body:not(.index-page) .nav-social a {
    background-color: #c8714f;
    color: white;
}

body:not(.index-page) .nav-social a:hover {
    background-color: #a85c3e;
    color: white;
}

/* Index.html dışındaki sayfalar için nav-link renkleri */
body:not(.index-page) .nav-link {
    color: #c8714f;
}

body:not(.index-page) .nav-link.active {
    color: #a85c3e;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .floating-btn.phone {
        left: 15px;
    }
    
    .floating-btn.phone-top {
        bottom: 150px;
    }
    
    .floating-btn.phone-bottom {
        bottom: 15px;
    }
    
    .floating-btn.whatsapp {
        bottom: 82px;
        left: 15px;
    }
}

/* Service Request Form Styles */
.service-form-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c8714f, #a85c3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.intro-icon i {
    font-size: 2.5rem;
    color: white;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.service-request-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: #c8714f;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    font-size: 1.3rem;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c8714f;
    box-shadow: 0 0 0 3px rgba(200, 113, 79, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    min-width: 200px;
}

.form-note {
    background: #e8f4fd;
    border-left: 4px solid #3498db;
    padding: 15px 20px;
    margin-top: 30px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.form-note i {
    color: #3498db;
    font-size: 1.5rem;
    margin-top: 2px;
}

.form-note p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.quick-contact {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 40px auto 0;
}

.quick-contact h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.quick-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.quick-contact-item i {
    font-size: 2rem;
    color: #c8714f;
    min-width: 40px;
}

.quick-contact-item strong {
    display: block;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.quick-contact-item p {
    margin: 0;
    font-size: 0.95rem;
}

.quick-contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-contact-item a:hover {
    color: #c8714f;
}

/* Responsive for Service Form */
@media (max-width: 768px) {
    .service-request-form {
        padding: 30px 20px;
    }

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

    .form-intro h2 {
        font-size: 2rem;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .service-form-section {
        padding: 40px 0;
    }

    .service-request-form,
    .quick-contact {
        padding: 20px 15px;
    }

    .form-intro h2 {
        font-size: 1.5rem;
    }

    .intro-icon {
        width: 60px;
        height: 60px;
    }

    .intro-icon i {
        font-size: 2rem;
    }
}
