@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --turkuaz: #40E0D0;
    --turkuaz-koyu: #2bbbad;
    --turkuaz-glow: rgba(64, 224, 208, 0.4);
    --turuncu: #FF8C00;
    --turuncu-glow: rgba(255, 140, 0, 0.4);
    --koyu: #2c3e50;
    --koyu-gri: #34495e;
    --acik-gri: #f8f9fa;
    --yazi: #555;
    --gradient: linear-gradient(135deg, var(--turkuaz) 0%, #2bbbad 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--yazi); background: #fff; line-height: 1.6; overflow-x: hidden; }
html { scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mb-50 { margin-bottom: 50px; }
.mt-20 { margin-top: 20px; }

/* ORTAK BAŞLIKLAR */
.section-subtitle { color: var(--turuncu); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; display: block; margin-bottom: 10px; }
.section-title { font-family: 'Marcellus', serif; font-size: 38px; color: var(--koyu); margin-bottom: 20px; }

/* BUTONLAR */
.btn-solid { background: var(--turkuaz); color: #fff; padding: 14px 35px; border-radius: 5px; text-decoration: none; font-weight: 600; display: inline-block; transition: 0.3s; }
.btn-solid:hover { background: var(--koyu); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; padding: 14px 35px; border-radius: 5px; border: 2px solid #fff; text-decoration: none; font-weight: 600; display: inline-block; transition: 0.3s; }
.btn-outline:hover { background: #fff; color: var(--koyu); transform: translateY(-2px); }

/* TOP BAR */
.top-bar { background: var(--koyu); color: #ccc; padding: 12px 0; font-size: 13.5px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.top-left { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.top-left span { display: flex; align-items: center; gap: 8px; margin: 0; white-space: nowrap; }
.top-left i { color: var(--turkuaz); font-size: 15px; margin: 0; }
.top-right { display: flex; align-items: center; gap: 15px; }
.top-right a { color: #ccc; transition: 0.3s; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.top-right a:hover { color: #fff; background: var(--turkuaz); transform: translateY(-2px); }

/* HEADER */
.main-header { background: #fff; padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Marcellus', serif; font-size: 28px; font-weight: 700; color: var(--koyu); text-decoration: none; letter-spacing: 2px; }
.logo span { color: var(--turuncu); }
.nav-menu { display: flex; align-items: center; }
.nav-links { list-style: none; display: flex; gap: 30px; margin-right: 30px; }
.nav-links a { text-decoration: none; color: var(--koyu-gri); font-weight: 500; font-size: 15px; transition: 0.3s; }
.nav-links a:hover { color: var(--turkuaz); }
.header-btn { background: var(--turuncu); color: #fff; padding: 10px 25px; border-radius: 5px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.header-btn:hover { background: var(--koyu); }
.mobile-menu-btn { display: none; background: transparent; border: none; font-size: 24px; color: var(--koyu); cursor: pointer; }

/* HERO BÖLÜMÜ */
.hero-section { height: 85vh; background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1920&q=80') center/cover; position: relative; display: flex; align-items: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15, 18, 20, 0.9) 0%, rgba(15, 18, 20, 0.4) 100%); }
.hero-content { position: relative; z-index: 10; max-width: 600px; color: #fff; }
.badge-text { display: inline-block; background: rgba(64, 224, 208, 0.2); border: 1px solid var(--turkuaz); color: var(--turkuaz); padding: 5px 15px; border-radius: 20px; font-size: 13px; margin-bottom: 20px; letter-spacing: 1px; }
.hero-content h1 { font-family: 'Marcellus', serif; font-size: 65px; line-height: 1.1; margin-bottom: 20px; }
.hero-content p { font-size: 18px; color: #eee; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; }
.hero-buttons .btn-solid { background: var(--turuncu); color: #fff; }

/* INFO CARDS */
.info-cards-wrapper { position: relative; margin-top: -60px; z-index: 20; }
.info-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card { background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 15px 30px rgba(0,0,0,0.08); display: flex; align-items: center; gap: 20px; }
.highlight-card { background: var(--turkuaz); color: #fff; }
.info-icon { width: 50px; height: 50px; background: var(--acik-gri); color: var(--turkuaz); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.highlight-card .info-icon { background: rgba(255,255,255,0.2); color: #fff; }
.info-card h4 { font-size: 18px; margin-bottom: 5px; color: inherit; }
.info-card p { font-size: 14px; margin: 0; opacity: 0.8; }
.highlight-card h4 { color: #fff; }

/* ABOUT SECTION */
.about-section { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* SERVICES GRID */
.services-section { padding: 100px 0; background: var(--acik-gri); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-box { background: #fff; padding: 40px 30px; border-radius: 10px; text-align: center; border: 1px solid #eaeaea; transition: 0.3s; }
.service-box:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.05); transform: translateY(-5px); border-bottom: 3px solid var(--turkuaz); }
.s-icon { width: 70px; height: 70px; margin: 0 auto 20px; background: rgba(64, 224, 208, 0.1); color: var(--turkuaz); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; transition: 0.3s; }
.service-box:hover .s-icon { background: var(--turkuaz); color: #fff; }
.service-box h3 { font-family: 'Marcellus', serif; font-size: 22px; color: var(--koyu); margin-bottom: 15px; }
.service-box p { font-size: 14px; margin-bottom: 20px; }
.s-link { color: var(--turuncu); font-weight: 600; text-decoration: none; text-transform: uppercase; font-size: 13px; }

/* CAMPAIGNS */
.campaigns-section { padding: 100px 0; }
.campaign-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.campaign-card { background: #fff; padding: 40px; border-radius: 10px; border: 1px solid #eee; text-align: center; position: relative; overflow: hidden; }
.c-discount { width: 80px; height: 80px; background: var(--turuncu); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; margin: 0 auto 20px; }
.campaign-card h3 { font-size: 20px; color: var(--koyu); margin-bottom: 15px; }

/* TESTIMONIALS */
.testimonials-section { padding: 100px 0; background: var(--koyu); color: #fff; }
.testimonials-section .section-title { color: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testi-card { background: rgba(255,255,255,0.05); padding: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); }
.quote-icon { font-size: 30px; color: var(--turkuaz); margin-bottom: 20px; }
.testi-card p { font-style: italic; font-size: 15px; margin-bottom: 20px; color: #ccc; }
.testi-card h4 { color: var(--turuncu); }

/* YILDIZLI DEĞERLENDİRME SİSTEMİ */
.star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 8px; }
.star-rating input { display: none; }
.star-rating label { cursor: pointer; font-size: 28px; color: #e4e5e9; transition: color 0.2s ease-in-out; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--turuncu); text-shadow: 0 0 10px var(--turuncu-glow); }

/* =========================================
   FOOTER (YENİ 4 SÜTUNLU YAPI)
========================================= */
.main-footer { background: #1a1f24; color: #ccc; padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr; gap: 30px; margin-bottom: 50px; }
.footer-col h4 { color: #fff; font-size: 20px; margin-bottom: 25px; font-family: 'Marcellus', serif; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul a { color: #ccc; text-decoration: none; transition: 0.3s; }
.footer-col ul a:hover { color: var(--turkuaz); padding-left: 5px; }
.contact-list li { display: flex; align-items: flex-start; margin-bottom: 15px; }
.contact-list i { color: var(--turuncu); width: 25px; margin-top: 5px; flex-shrink: 0; }
.contact-list span { word-break: break-all; }
.f-socials a { display: inline-flex; width: 40px; height: 40px; background: rgba(255,255,255,0.05); color: #fff; border-radius: 5px; align-items: center; justify-content: center; margin-right: 10px; transition: 0.3s; }
.f-socials a:hover { background: var(--turkuaz); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 25px 0; font-size: 14px; }

/* =========================================
   MİNİMAL FOOTER GALERİ (4x2 KUTU)
========================================= */
.minimal-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.min-gal-item { position: relative; aspect-ratio: 1/1; border-radius: 6px; overflow: hidden; cursor: pointer; }
.min-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s ease; }
.min-gal-overlay { position: absolute; inset: 0; background: rgba(64,224,208,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s ease; color: #fff; font-size: 16px; }
.min-gal-item:hover img { transform: scale(1.15); }
.min-gal-item:hover .min-gal-overlay { opacity: 1; }

/* =========================================
   LIGHTBOX (RESİM BÜYÜTME MODAL'I)
========================================= */
.lightbox-overlay { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(15, 18, 20, 0.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; cursor: zoom-out; }
.lightbox-overlay.show { opacity: 1; }
.lightbox-content { max-width: 90%; max-height: 85vh; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); transform: scale(0.9); transition: transform 0.3s ease; cursor: default; }
.lightbox-overlay.show .lightbox-content { transform: scale(1); }
.lightbox-close { position: absolute; top: 30px; right: 40px; color: #fff; font-size: 40px; cursor: pointer; transition: 0.3s; }
.lightbox-close:hover { color: var(--turkuaz); transform: rotate(90deg); }

/* =========================================
   SABİT ALT BUTONLAR (FLOATING ACTIONS)
========================================= */
.floating-actions { position: fixed; bottom: 0; left: 0; width: 100%; display: flex; z-index: 1000; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); }
.f-btn { flex: 1; text-align: center; padding: 15px 0; color: #fff; text-decoration: none; font-weight: 600; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.f-btn.call { background: var(--koyu-gri); }
.f-btn.wp { background: #25D366; }
.f-btn.randevu { background: var(--turuncu); }

/* =========================================
   YORUM YAP POP-UP (MODAL) & BLUR EFEKTİ
========================================= */
.modal-overlay { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(15, 18, 20, 0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.show { opacity: 1; }
.modal-content { background-color: #fff; padding: 40px; border-radius: 20px; width: 90%; max-width: 500px; position: relative; transform: translateY(-20px); transition: transform 0.3s ease; box-shadow: 0 25px 50px rgba(0,0,0,0.2); text-align: center; }
.modal-overlay.show .modal-content { transform: translateY(0); }
.close-btn { position: absolute; top: 20px; right: 25px; font-size: 24px; color: #999; cursor: pointer; transition: 0.3s; }
.close-btn:hover { color: var(--turuncu); transform: rotate(90deg); }
.modal-content input:focus, .modal-content textarea:focus { outline: none; border-color: var(--turkuaz) !important; box-shadow: 0 0 10px var(--turkuaz-glow); }

/* =========================================
   BAŞARI MESAJI (ALERT)
========================================= */
.alert-box { position: fixed; top: 30px; right: 30px; background: #25D366; color: #fff; padding: 15px 25px; border-radius: 10px; z-index: 10000; font-weight: 600; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); animation: slideIn 0.5s ease forwards; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* =========================================
   MEDYA SORGULARI (TÜM MOBİL UYUMLULUK BURADA)
========================================= */
@media (max-width: 992px) {
    .info-cards-grid { grid-template-columns: 1fr; }
    .info-cards-wrapper { margin-top: 30px; }
    .about-grid, .campaign-grid, .testi-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; } 
    .hero-content h1 { font-size: 45px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-menu { position: fixed; top: 70px; left: -100%; width: 100%; background: #fff; flex-direction: column; padding: 30px 20px; transition: 0.3s; box-shadow: 0 10px 10px rgba(0,0,0,0.1); }
    .nav-menu.active { left: 0; }
    .nav-links { flex-direction: column; width: 100%; margin: 0 0 20px 0; text-align: center; }
    .hero-section { height: auto; padding: 150px 0 100px; text-align: center; }
    .hero-buttons { justify-content: center; flex-direction: column; }
    body { padding-bottom: 60px; } 
    .footer-grid { grid-template-columns: 1fr; text-align: center; } 
    .contact-list li { justify-content: center; }
    .minimal-gallery { max-width: 300px; margin: 0 auto; } /* Mobilde galeri dev gibi olmasın, ortalansın */
}
/* =========================================
   FOOTER İLETİŞİM LİSTESİ DÜZENLEME
========================================= */
.contact-list li {
    display: flex;
    align-items: center; /* İkon ve metni dikeyde ortalar */
    gap: 12px;
    margin-bottom: 18px;
    width: 100%;
}

.contact-list i {
    color: var(--turuncu);
    width: 20px;
    font-size: 16px;
    flex-shrink: 0; /* İkonun ezilmesini engeller */
}

.contact-list li span {
    font-size: 13.5px; /* Hafif küçülttük ki nefes alsın */
    color: #ccc;
    line-height: 1.2;
    display: block;
    word-break: break-word; /* Eğer çok çok uzunsa düzgünce böler */
    transition: 0.3s;
}

/* Mail adresi üzerine gelince parlasın, Arya kalitesini belli etsin */
.contact-list li:hover span {
    color: var(--turkuaz);
}

/* Tablet ve küçük ekranlar için sütunları eşitleyelim */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 4 sütundan 2 sütuna düşürdük */
    }
    .contact-list li span {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Mobilde her şey tek sütun */
        text-align: center;
    }
    .contact-list li {
        justify-content: center;
    }
}