:root { 
    --primary-color: #0c4a6e; /* Safir Mavisi - Elit ve Güvenilir */
    --secondary-color: #0284c7; /* Okyanus Mavisi - Su ve Hijyen */
    --accent-color: #d97706; /* Soft Altın - Premium Dokunuş */
    --text-color: #334155; 
    --bg-light: #f8fafc; 
    --white: #ffffff; 
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08); 
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { color: var(--text-color); background-color: var(--bg-light); line-height: 1.7; font-size: 16px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* Header & Nav */
.top-header { background: var(--primary-color); color: var(--white); padding: 12px 5%; display: flex; justify-content: space-between; font-size: 14px; letter-spacing: 0.5px; }
.top-header a { color: #bae6fd; font-weight: 600; }
.main-header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.logo { font-size: 28px; font-weight: 800; color: var(--primary-color); letter-spacing: -0.5px; } 
.logo span { color: var(--secondary-color); font-weight: 300; }
.nav-links { list-style: none; display: flex; gap: 35px; align-items: center; }
.nav-links li a { font-weight: 600; font-size: 15px; color: var(--primary-color); text-transform: uppercase; letter-spacing: 0.5px; } 
.nav-links li a:hover { color: var(--secondary-color); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 260px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-radius: 12px; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); list-style: none; padding: 15px 0; z-index: 1001; border-top: 4px solid var(--secondary-color); }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { border-bottom: 1px solid #f1f5f9; } 
.dropdown-menu li:last-child { border-bottom: none; }
.dropdown-menu li a { display: block; padding: 14px 25px; color: var(--primary-color); font-weight: 500; text-transform: none; } 
.dropdown-menu li a:hover { background: #f0f9ff; color: var(--secondary-color); padding-left: 32px; }

/* Hero Section */
.hero-slider { background: linear-gradient(135deg, rgba(12, 74, 110, 0.9), rgba(2, 132, 199, 0.8)), url('bg-image.jpg') center/cover; color: var(--white); text-align: center; padding: 120px 5%; display: flex; align-items: center; justify-content: center; min-height: 65vh; border-bottom: 5px solid var(--accent-color); }
.slider-content { max-width: 850px; margin: 0 auto; } 
.hero-slider h1 { font-size: 52px; font-weight: 800; margin-bottom: 25px; line-height: 1.2; text-shadow: 0 4px 10px rgba(0,0,0,0.3); } 
.hero-slider p { font-size: 20px; margin-bottom: 40px; font-weight: 300; color: #e0f2fe; }
.hero-btns { display: flex; gap: 20px; justify-content: center; }
.btn-primary { background: var(--secondary-color); color: var(--white); padding: 16px 36px; font-weight: 700; border-radius: 50px; box-shadow: 0 10px 20px rgba(2, 132, 199, 0.3); } 
.btn-primary:hover { background: var(--primary-color); transform: translateY(-3px); }
.btn-outline { border: 2px solid var(--white); padding: 16px 36px; font-weight: 700; border-radius: 50px; } 
.btn-outline:hover { background: var(--white); color: var(--primary-color); }

/* Sections */
.section-title { font-size: 36px; color: var(--primary-color); margin-bottom: 50px; text-align:center; font-weight: 800; }
.why-us-section { background: var(--bg-light); padding: 100px 5%; }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.why-box { background: var(--white); padding: 40px 30px; border-radius: 16px; box-shadow: var(--shadow); border-bottom: 4px solid var(--secondary-color); transition: var(--transition); text-align: center; } 
.why-box:hover { transform: translateY(-10px); }
.why-box h3 { color: var(--primary-color); margin-bottom: 15px; font-size: 22px; }

/* Services Grid */
.services-section { padding: 100px 5%; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.service-card { background: var(--bg-light); padding: 50px 30px; border-radius: 20px; box-shadow: var(--shadow); text-align: center; transition: var(--transition); border: 1px solid #e2e8f0; display: block; } 
.service-card:hover { transform: translateY(-10px); border-color: var(--secondary-color); background: var(--white); box-shadow: 0 20px 40px rgba(2, 132, 199, 0.1); }
.icon-3d { width: 90px; height: 90px; background: linear-gradient(135deg, var(--secondary-color), #0369a1); border-radius: 50%; margin: 0 auto 25px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 36px; box-shadow: 0 10px 20px rgba(2, 132, 199, 0.3); }

/* CTA & Footer */
.cta-banner { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--white); padding: 70px 5%; text-align: center; margin: 60px 0; border-radius: 20px; box-shadow: var(--shadow); } 
.cta-banner h2 { font-size: 36px; margin-bottom: 20px; } 
.cta-btn { background: var(--accent-color); color: var(--white); padding: 18px 45px; font-weight: bold; border-radius: 50px; display: inline-block; font-size: 18px; box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3); } 
.cta-btn:hover { background: var(--white); color: var(--primary-color); }

.main-footer { background: var(--primary-color); color: #cbd5e1; padding: 80px 5% 20px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; margin-bottom: 50px; } 
.footer-col h3 { color: var(--white); margin-bottom: 25px; font-size: 22px; } 
.footer-col ul { list-style: none; } 
.footer-col ul li { margin-bottom: 15px; } 
.footer-col ul li a:hover { color: var(--secondary-color); padding-left: 8px; }
.footer-bottom { text-align: center; border-top: 1px solid #1e293b; padding-top: 25px; font-size: 14px; }

/* Floating Buttons */
.floating-btn { position: fixed; bottom: 30px; right: 30px; background: var(--primary-color); color: var(--white); width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4); z-index: 1000; transition: var(--transition); }
.floating-btn:hover { transform: scale(1.1) translateY(-5px); background: var(--secondary-color); }
.whatsapp-btn { position: fixed; bottom: 30px; left: 30px; background: #25D366; color: var(--white); width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 34px; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); z-index: 1000; transition: var(--transition); }
.whatsapp-btn:hover { transform: scale(1.1) translateY(-5px); background: #128C7E; }

/* Inner Pages */
.page-header { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--white); padding: 80px 5%; text-align: center; }
.page-header h1 { font-size: 42px; margin-bottom: 15px; font-weight: 800; }
.content-section { padding: 80px 5%; max-width: 1100px; margin: 0 auto; } 
.content-text { font-size: 17px; color: #475569; margin-bottom: 25px; line-height: 1.8; }
.content-text strong { color: var(--primary-color); }

/* Forms & Map */
.contact-container { display: flex; flex-wrap: wrap; gap: 50px; } 
.contact-form { flex: 1; min-width: 320px; background: var(--white); padding: 40px; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid #e2e8f0; }
.contact-form input, .contact-form textarea { width: 100%; padding: 16px; margin-bottom: 20px; border: 1px solid #cbd5e1; border-radius: 10px; font-size: 15px; transition: var(--transition); background: #f8fafc; } 
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--secondary-color); background: var(--white); box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1); }
.contact-form button { background: var(--primary-color); color: var(--white); border: none; padding: 18px 30px; font-weight: bold; border-radius: 10px; cursor: pointer; width: 100%; font-size: 18px; transition: var(--transition); }
.contact-form button:hover { background: var(--secondary-color); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(2, 132, 199, 0.2); }
.contact-info-box { flex: 1; min-width: 320px; } 
.map-responsive { overflow: hidden; padding-bottom: 60%; position: relative; height: 0; border-radius: 20px; box-shadow: var(--shadow); } 
.map-responsive iframe { left: 0; top: 0; height: 100%; width: 100%; position: absolute; border: 0; }