/* Warmhaus Turuncu Renkleri ve Temel Stiller */
:root {
    --primary-color: #FF6B00;
    --secondary-color: #FF8C00;
    --accent-color: #FFA500;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --gray-color: #666;
    --white: #fff;
    --black: #000;
    --light-orange: #FFF3E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fixed Butonlar */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-btn, .call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: var(--primary-color);
}

.whatsapp-btn:hover, .call-btn:hover {
    transform: scale(1.1);
}

/* Navigation - Logo Büyütüldü */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(255, 107, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px; /* Yükseklik arttırıldı */
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
}

.logo {
    height: 70px; /* Logo büyütüldü */
    margin-right: 15px;
}

.logo-text .main-title {
    font-size: 28px; /* Yazı boyutu büyütüldü */
    font-weight: 700;
    color: var(--primary-color);
}

.logo-text .sub-title {
    font-size: 16px; /* Yazı boyutu büyütüldü */
    color: var(--gray-color);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 18px; /* Menü yazıları büyütüldü */
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Bibaşka Gelecek Hero Section */
.bibaska-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 90px; /* Navbar yüksekliğine göre ayarlandı */
}

.bibaska-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bibaska-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bibaska-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.bibaska-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.bibaska-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.bibaska-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-primary:hover {
    background: var(--light-orange);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Afiş Bölümleri */
.afis-section {
    padding: 80px 0;
    background: var(--white);
}

.afis-secondary {
    background: var(--light-orange);
}

.afis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.afis-reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.afis-reverse .afis-content {
    direction: ltr;
}

.afis-image {
    text-align: center;
}

.afis-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.afis-image img:hover {
    transform: scale(1.02);
}

.afis-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.afis-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.afis-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.2rem;
}

.afis-description {
    color: var(--gray-color);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: var(--light-orange);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #ffe0cc;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.service-card p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: var(--light-orange);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-item h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.4rem;
}

.contact-item p {
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 35px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.footer-section p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* ================================ */
/* BASİTLEŞTİRİLMİŞ İLETİŞİM STİLLERİ */
/* ================================ */

/* Contact Hero */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 140px 0 80px;
    margin-top: 90px;
    text-align: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Basitleştirilmiş İletişim Bilgileri */
.contact-details {
    padding: 80px 0;
    background: var(--light-orange);
}

.contact-grid-simple {
    display: flex;
    justify-content: center;
}

.contact-info-simple {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.contact-item-simple {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    gap: 20px;
}

.contact-item-simple:last-child {
    margin-bottom: 0;
}

.contact-item-simple i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 5px;
    min-width: 30px;
}

.contact-item-simple h3 {
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.contact-item-simple p {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

/* Basitleştirilmiş Harita Bölümü */
.map-section-simple {
    padding: 80px 0;
    background: var(--white);
}

.map-simple {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Acil Servis Banner */
.emergency-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--white);
    padding: 30px 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.emergency-icon {
    font-size: 2.5rem;
}

.emergency-text h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.emergency-text p {
    opacity: 0.9;
    margin: 0;
}

.btn-emergency {
    background: var(--white);
    color: #e74c3c;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-emergency:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* ================================ */
/* HAKKIMIZDA SAYFASI STİLLERİ */
/* ================================ */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 140px 0 80px;
    margin-top: 90px;
    text-align: center;
}

/* Şirket Tanıtım */
.company-intro {
    padding: 80px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light-orange);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 500;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Misyon & Vizyon */
.mission-vision {
    padding: 80px 0;
    background: var(--light-orange);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-color);
}

/* Teknoloji ve Kalite */
.technology-quality {
    padding: 80px 0;
    background: var(--white);
}

.tq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tq-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tq-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.tq-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.quality-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.feature i {
    color: var(--primary-color);
}

/* Değerlerimiz */
.our-values {
    padding: 80px 0;
    background: var(--light-orange);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Neden Bizi Seçmelisiniz */
.why-choose-us {
    padding: 80px 0;
    background: var(--white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.reason-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-orange);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
}

.reason-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.reason-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.reason-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* ================================ */
/* HİZMETLERİMİZ SAYFASI STİLLERİ */
/* ================================ */

/* Services Hero */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 140px 0 80px;
    margin-top: 90px;
    text-align: center;
}

/* Hizmetler Grid */
.services-main {
    padding: 80px 0;
    background: var(--light-orange);
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-detailed {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card-detailed h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-detailed p {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 80px;
}

.btn-details {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-details:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Neden Bakım Önemi */
.maintenance-importance {
    padding: 80px 0;
    background: var(--white);
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.importance-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-orange);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.importance-item:hover {
    transform: translateY(-5px);
}

.importance-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.importance-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.importance-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.modal-body {
    padding: 40px;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-body h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.modal-body p {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.modal-body ul {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
}

.modal-footer {
    padding: 30px;
    background: var(--light-orange);
    border-radius: 0 0 15px 15px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-footer .btn {
    min-width: 150px;
    text-align: center;
}

