:root {
    --turkey-red: #E30A17;
    --white: #ffffff;
    --light-grey: #f0f0f0;
    --dark-grey: #333333;
    --black: #000000;
    
    --font-heading: 'Roboto', sans-serif;
    --font-serif: 'Source Serif Pro', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-heading);
    color: var(--dark-grey);
    background-color: var(--white);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Top Bar */
.top-bar { background-color: var(--black); color: var(--white); padding: 5px 0; font-size: 0.8rem; text-align: center; }

/* Header */
.flag-header { padding: 20px 0; border-bottom: 4px solid var(--turkey-red); position: sticky; top: 0; background: var(--white); z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.8rem; font-weight: 900; color: var(--black); letter-spacing: 1px; }
.red { color: var(--turkey-red); }
.crescent { color: var(--turkey-red); font-size: 1.2rem; margin-left: 5px; vertical-align: super; }

.flag-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.flag-nav a { font-weight: 700; text-transform: uppercase; font-size: 0.9rem; color: var(--dark-grey); }
.flag-nav a:hover, .flag-nav a.active { color: var(--turkey-red); }

.btn-flag { background-color: var(--turkey-red); color: var(--white) !important; padding: 10px 25px; border-radius: 4px; font-weight: bold; }
.btn-flag:hover { background-color: #b30000; }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: 2px solid var(--turkey-red); color: var(--turkey-red); font-weight: bold; padding: 5px 10px; cursor: pointer; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--turkey-red); z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.3s; }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; color: var(--white); background: none; border: none; font-size: 1.5rem; cursor: pointer; margin-bottom: 20px; }
.mobile-menu a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.3); color: var(--white); font-weight: bold; }

/* Hero */
.hero-flag {
    height: 600px; background-size: cover; background-position: center; position: relative;
    display: flex; align-items: center;
}
.hero-content { background: rgba(255,255,255,0.9); padding: 50px; max-width: 600px; margin-left: 10%; border-left: 10px solid var(--turkey-red); }
.subtitle { color: var(--turkey-red); font-weight: bold; letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 10px; }
.hero-content h1 { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; color: var(--black); }
.hero-content p { font-size: 1.1rem; margin-bottom: 30px; color: var(--dark-grey); }

.hero-btns a { margin-right: 15px; display: inline-block; padding: 12px 30px; font-weight: bold; border-radius: 4px; }
.btn-primary { background-color: var(--turkey-red); color: var(--white); }
.btn-primary:hover { background-color: #b30000; }
.btn-secondary { border: 2px solid var(--black); color: var(--black); }
.btn-secondary:hover { background-color: var(--black); color: var(--white); }

/* Services */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; font-weight: 900; color: var(--dark-grey); margin-bottom: 15px; }
.red-divider { width: 80px; height: 5px; background-color: var(--turkey-red); margin: 0 auto; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.service-card { background: var(--light-grey); padding: 30px 20px; text-align: center; border-radius: 5px; transition: 0.3s; border-bottom: 4px solid transparent; }
.service-card:hover { transform: translateY(-5px); border-bottom-color: var(--turkey-red); background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.icon-box { font-size: 3rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 15px; color: var(--black); font-weight: 700; }

/* About */
.page-header { background-color: var(--turkey-red); padding: 60px 0; text-align: center; color: var(--white); }
.page-header h1 { font-weight: 900; font-size: 3rem; }

.about-layout { display: flex; gap: 50px; align-items: center; }
.text-content { flex: 1; }
.text-content h2 { font-size: 2rem; color: var(--black); margin-bottom: 20px; font-weight: 900; }
.red-divider-left { width: 60px; height: 5px; background-color: var(--turkey-red); margin-bottom: 30px; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 10px; font-weight: bold; }
.check-list li::before { content: "✓"; color: var(--turkey-red); margin-right: 10px; font-weight: 900; }
.img-content { flex: 1; }
.img-content img { width: 100%; border: 5px solid var(--light-grey); }

/* Testimonials */
.reviews-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-box { border: 1px solid #ddd; padding: 40px; border-radius: 5px; background: var(--white); }
.flag-icon { font-size: 1.5rem; margin-bottom: 15px; font-weight: bold; color: var(--turkey-red); }
.review-box h3 { margin-bottom: 10px; font-weight: 700; }
.review-box p { font-style: italic; color: #555; margin-bottom: 20px; }
.client-name { font-weight: bold; color: var(--black); text-align: right; }

/* Contact Form */
.contact-block { max-width: 800px; margin: 0 auto; background: var(--light-grey); padding: 50px; border-radius: 5px; }
.contact-intro { text-align: center; margin-bottom: 40px; }
.contact-intro h2 { font-weight: 900; color: var(--turkey-red); margin-bottom: 15px; }
.contact-details p { margin-bottom: 5px; }

.patriot-form .form-row { margin-bottom: 20px; }
.patriot-form label { display: block; margin-bottom: 5px; font-weight: bold; }
.patriot-form input, .patriot-form select, .patriot-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-family: var(--font-heading); }
.patriot-form input:focus, .patriot-form select:focus, .patriot-form textarea:focus { border-color: var(--turkey-red); outline: none; }
.submit-btn { width: 100%; background-color: var(--turkey-red); color: var(--white); border: none; padding: 15px; font-weight: 900; cursor: pointer; border-radius: 4px; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.submit-btn:hover { background-color: #b30000; }

/* Legal */
.requirements-doc { max-width: 800px; margin: 0 auto; }
.requirements-doc h1 { font-weight: 900; text-align: center; color: var(--black); }
.requirements-doc h3 { color: var(--turkey-red); margin-top: 40px; margin-bottom: 10px; }

/* Footer */
.flag-footer { background-color: var(--black); color: #888; padding: 50px 0; text-align: center; margin-top: auto; border-top: 5px solid var(--turkey-red); }
.brand { font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 20px; }
.footer-menu a { color: #ccc; margin: 0 15px; font-weight: bold; }
.footer-menu a:hover { color: var(--turkey-red); }
.copyright { margin-top: 30px; font-size: 0.8rem; }

@media (max-width: 900px) {
    .flag-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content { margin-left: 0; border-left: none; border-top: 5px solid var(--turkey-red); }
    .service-grid, .about-layout, .reviews-list { grid-template-columns: 1fr; flex-direction: column; }
}