:root {
    --red: #e30a17; /* Turkish Flag Red */
    --dark-red: #b00000;
    --dark: #2d3436;
    --grey: #f5f6fa;
    --white: #ffffff;
    
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--grey);
    color: var(--dark);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Top Bar */
.top-info { background-color: var(--dark); color: var(--white); padding: 8px 0; font-size: 0.85rem; }
.top-flex { display: flex; justify-content: space-between; align-items: center; }
.top-flex a { color: var(--red); font-weight: bold; }

/* Header */
.imm-header { background-color: var(--white); padding: 20px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-grid { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--dark); }
.logo .red { color: var(--red); }

.imm-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.imm-nav a { font-weight: 700; color: var(--dark); font-family: var(--font-head); font-size: 1rem; }
.imm-nav a:hover, .imm-nav a.active { color: var(--red); }

.btn-red { background-color: var(--red); color: var(--white) !important; padding: 10px 25px; border-radius: 5px; font-weight: bold; box-shadow: 0 4px 6px rgba(227, 10, 23, 0.2); }
.btn-red:hover { background-color: var(--dark-red); transform: translateY(-2px); }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--red); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--white); z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.3s; border-left: 4px solid var(--red); }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; border: none; background: none; cursor: pointer; margin-bottom: 20px; }
.mobile-menu a { padding: 15px 0; border-bottom: 1px solid #eee; font-weight: 700; font-family: var(--font-head); }

/* Hero */
.hero-imm {
    height: 550px; background-size: cover; background-position: center; position: relative;
}
.hero-overlay {
    width: 100%; height: 100%; background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%);
    display: flex; align-items: center;
}
.hero-box { max-width: 600px; padding: 40px; padding-left: 10%; }
.hero-box h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--red); }
.hero-box p { font-size: 1.2rem; margin-bottom: 30px; font-weight: 500; }

.hero-badges { display: flex; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
.hero-badges span { background-color: var(--white); border: 1px solid var(--red); color: var(--red); padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: bold; }

.btn-primary { background-color: var(--dark); color: var(--white); padding: 15px 40px; border-radius: 5px; font-weight: bold; display: inline-block; }
.btn-primary:hover { background-color: var(--red); }

/* Services */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 10px; }
.red-dot { width: 10px; height: 10px; background-color: var(--red); margin: 0 auto; border-radius: 50%; position: relative; }
.red-dot::before, .red-dot::after { content: ''; position: absolute; top: 4px; width: 40px; height: 2px; background-color: #ddd; }
.red-dot::before { right: 15px; } .red-dot::after { left: 15px; }

.services-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.service-card { background: var(--white); padding: 30px 20px; text-align: center; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: 0.3s; border-bottom: 4px solid transparent; }
.service-card:hover { transform: translateY(-5px); border-bottom-color: var(--red); }
.icon-wrap { font-size: 3rem; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-head); margin-bottom: 15px; color: var(--dark); font-size: 1.2rem; }

/* About */
.page-header { background-color: var(--red); color: var(--white); padding: 60px 0; text-align: center; }
.page-header h1 { font-family: var(--font-head); font-size: 2.5rem; }

.about-split { display: flex; gap: 50px; align-items: center; }
.text-side { flex: 1; }
.text-side h2 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 20px; color: var(--red); }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 10px; padding-left: 25px; position: relative; font-weight: bold; }
.check-list li::before { content: "★"; color: var(--red); position: absolute; left: 0; }
.image-side { flex: 1; }
.image-side img { width: 100%; border-radius: 10px; box-shadow: 10px 10px 0 var(--dark); }

/* Testimonials */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.story-card { background: var(--white); padding: 30px; border-radius: 10px; position: relative; border: 1px solid #eee; }
.flag { font-size: 2rem; margin-bottom: 10px; }
.story-card h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 10px; }
.story-card p { font-style: italic; color: #555; margin-bottom: 15px; }
.story-card strong { color: var(--red); display: block; text-align: right; }

/* Contact Form */
.contact-block { display: flex; background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.contact-details { flex: 1; background-color: var(--dark); color: var(--white); padding: 50px; }
.contact-details h2 { font-family: var(--font-head); margin-bottom: 20px; color: var(--red); }
.info-line { margin-top: 20px; border-bottom: 1px solid #444; padding-bottom: 10px; }

.imm-form { flex: 1.5; padding: 50px; }
.input-wrap { margin-bottom: 20px; }
.input-wrap label { display: block; font-weight: bold; margin-bottom: 5px; font-size: 0.9rem; }
.input-wrap input, .input-wrap select, .input-wrap textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; background-color: #f9f9f9; }
.submit-btn { width: 100%; background-color: var(--red); color: var(--white); padding: 15px; border: none; font-weight: bold; border-radius: 5px; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background-color: var(--dark-red); }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 10px; }
.legal-content h1 { font-family: var(--font-head); text-align: center; }
.legal-content h3 { color: var(--red); margin-top: 30px; margin-bottom: 10px; }

/* Footer */
.imm-footer { background-color: var(--white); padding: 50px 0; border-top: 5px solid var(--red); margin-top: auto; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.f-left h4 { font-family: var(--font-head); font-weight: 800; color: var(--dark); }
.f-right a { margin-left: 20px; color: #555; }
.f-right a:hover { color: var(--red); }
.text-center { text-align: center; color: #999; font-size: 0.8rem; }

@media (max-width: 900px) {
    .imm-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-box { padding-left: 20px; }
    .hero-box h1 { font-size: 2.5rem; }
    .services-container, .about-split, .story-grid, .contact-block { grid-template-columns: 1fr; flex-direction: column; }
}