@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
    --primary-color: #1B3A5C; 
    --primary-dark: #0F2440;
    --accent-color: #C8A951; 
    --accent-dark: #A88B3D;
    --text-main: #2c3e50;
    --text-muted: #64748b;
    --bg-color: #f8fafc;
    --white: #ffffff;
    --radius: 12px;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.01);
    --shadow-lg: 0 20px 40px -5px rgba(0,0,0,0.08);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; width: 100%; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
.mobile-only { display: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius) var(--radius) 0 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { color: var(--text-main); margin-bottom: 16px; font-weight: 700; line-height: 1.3; letter-spacing: -0.5px; }
p { color: var(--text-muted); margin-bottom: 16px; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 15px;
    cursor: pointer; transition: var(--transition); border: none; text-align: center;
    letter-spacing: 0.3px;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-blue { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--white); }
.btn-green { background: linear-gradient(135deg, var(--accent-color), var(--accent-dark)); color: var(--white); }
.btn-block { width: 100%; display: flex; }
.btn-devami {
    background: #e2f1f8; color: var(--primary-color); padding: 4px 14px; border-radius: 20px;
    font-size: 12px; font-weight: 600; display: inline-block; margin-left: 8px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-devami:hover { background: var(--primary-color); color: var(--white); transform: translateY(-2px); }
.header { 
    position: relative; background: #ffffff; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); z-index: 1000;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.logo .brand-name { margin: 0; color: var(--primary-dark); line-height: 1; font-weight: 800; letter-spacing: -0.5px; font-size: 26px; }
.logo .brand-name span { font-size: 10px; font-weight: 500; letter-spacing: 1px; color: var(--text-muted); display: block; margin-top: 3px; }
.header-right-wrapper { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.top-bar { display: flex; align-items: center; gap: 20px; font-size: 13px; font-weight: 500; color: #64748b; margin-bottom: 2px; }
.top-bar a { transition: color 0.2s ease; }
.top-bar a:hover { color: var(--primary-color); }
.top-phone { font-weight: 600; color: var(--primary-dark); display: flex; align-items: center; gap: 5px; }
.top-phone i { color: var(--accent-color); font-size: 12px; }
.bottom-bar { display: flex; align-items: center; gap: 25px; }
.nav-list { display: flex; gap: 25px; }
.has-dropdown { position: relative; }
.dropdown-btn { 
    color: var(--text-main); font-weight: 600; font-size: 15px; 
    display: flex; align-items: center; gap: 6px; border: none; background: transparent; padding: 5px 0;
    cursor: pointer; transition: color 0.2s ease;
}
.dropdown-btn:hover { color: var(--primary-color); }
.dropdown-btn i { font-size: 11px; }
.dropdown {
    position: absolute; top: calc(100% + 10px); left: 0; background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); min-width: 220px; border-radius: 8px;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.3s ease; border-top: 3px solid var(--primary-color);
    z-index: 100; padding: 10px 0;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 20px; font-size: 14px; font-weight: 500; color: var(--text-main); transition: all 0.2s; }
.dropdown li a:hover { background: #f8fafc; color: var(--primary-color); padding-left: 24px; }
.bottom-bar .btn { padding: 10px 20px; font-size: 14px; font-weight: 600; border-radius: 6px; box-shadow: none; }
.bottom-bar .btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.bottom-bar .btn-blue { background: #f1f5f9; color: var(--primary-dark); }
.bottom-bar .btn-blue:hover { background: var(--primary-color); color: #fff; }
.bottom-bar .btn-green { background: #25D366; color: #fff; }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-main); }
.header-spacing { display: none; }
.hero {
    position: relative;
    background-color: #f8fafc;
    background-image: url('../img/hero-bg.jpg');
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 130px 0 150px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; bottom: 0; width: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0) 65%);
}
.hero-content { position: relative; z-index: 2; max-width: 650px; color: var(--text-main); margin-left: 0; }
.hero-badge { 
    display: inline-block; background: rgba(27, 58, 92, 0.1);
    padding: 8px 18px; border-radius: 6px; font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; 
    margin-bottom: 25px; text-transform: uppercase; color: var(--primary-color);
}
.hero-content h1 { font-size: 2.2rem; font-weight: 300; line-height: 1.15; margin-bottom: 20px; color: var(--primary-dark); }
.hero-content h1 span { font-size: 3.8rem; font-weight: 800; display: block; color: var(--primary-dark); letter-spacing: -1px; margin-top: 5px; }
.hero-desc { font-size: 1.15rem; color: #475569; line-height: 1.7; margin-bottom: 40px; font-weight: 500; max-width: 550px; }
.hero-cta-box { 
    background: rgba(255,255,255,0.8); 
    border: 1px solid rgba(27, 58, 92, 0.1); 
    padding: 30px; border-radius: 12px; 
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    max-width: 450px;
    border-left: 4px solid var(--accent-color);
}
.hero-cta-box p { font-size: 0.85rem; color: #64748b; margin-bottom: 8px; text-transform: uppercase; font-weight: 700; letter-spacing: 1.5px; }
.cta-phone { font-size: 2.4rem; color: var(--primary-dark); font-weight: 800; margin-bottom: 25px; letter-spacing: -0.5px; display: flex; align-items: center; gap: 15px; }
.cta-phone i { color: var(--accent-color); }
.cta-buttons { display: flex; gap: 15px; }
.cta-buttons .btn { flex: 1; justify-content: center; padding: 14px; font-size: 15px; font-weight: 600; border-radius: 8px; transition: all 0.2s ease; border: none; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.cta-buttons .btn-blue { background: var(--primary-color); color: #fff; }
.cta-buttons .btn-blue:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.cta-buttons .btn-green { background: #25D366; color: #fff; }
.cta-buttons .btn-green:hover { background: #1ebd5a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.section { padding: 90px 0; will-change: transform; contain: layout; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.4rem; position: relative; display: inline-block; padding-bottom: 15px; }
.section-title h2::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 4px; background: var(--primary-color); border-radius: 2px;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 40px; }
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex; flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
}
.service-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: rgba(27,58,92,0.1); }
.service-img { height: 240px; overflow: hidden; background: #f1f5f9; position: relative; }
.service-img::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.2) 100%); pointer-events: none;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 30px; display: flex; flex-direction: column; flex: 1; text-align: center; }
.service-body h3 { font-size: 1.4rem; margin-bottom: 15px; }
.service-body p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 30px; flex: 1; }
.service-body .btn-green { margin-top: auto; padding: 14px; font-size: 15px; font-weight: 700; letter-spacing: 0.5px; border-radius: 8px; }
.countries-section { background: #fff; }
.countries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.country-card { min-height: 270px; border: 1px solid #e8edf2; border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, #f8fafc, #e8f0f7); background-size: cover; background-position: center; box-shadow: var(--shadow-sm); position: relative; display: flex; align-items: flex-end; }
.country-card.has-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,36,64,0.1), rgba(15,36,64,0.88)); }
.country-card-content { position: relative; z-index: 1; width: 100%; padding: 28px; }
.country-card-content > i { color: var(--accent-color); font-size: 2rem; margin-bottom: 16px; }
.country-card h3 { color: var(--primary-dark); font-size: 1.35rem; margin-bottom: 8px; }
.country-card p { color: #526577; font-size: .95rem; line-height: 1.65; min-height: 75px; }
.country-card.has-image h3, .country-card.has-image p { color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.3); }
.country-card.has-image .btn-devami { background: rgba(255,255,255,.92); color: var(--primary-dark); }
.trust-bar { background: #fff; padding: 40px 0; border-bottom: 1px solid #f1f5f9; box-shadow: 0 10px 30px rgba(0,0,0,0.02); position: relative; z-index: 5; margin-top: 0; }
.trust-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 15px; flex: 1; min-width: 220px; }
.trust-item i { font-size: 2.2rem; color: var(--primary-color); opacity: 0.8; }
.trust-text h4 { font-size: 1.1rem; color: var(--primary-dark); margin-bottom: 4px; font-weight: 700; }
.trust-text p { font-size: 0.9rem; color: #64748b; margin: 0; }
.sub-title { display: block; font-size: 0.85rem; font-weight: 700; color: var(--primary-color); letter-spacing: 2px; margin-bottom: 10px; text-transform: uppercase; text-align: center; }
.section-light { background-color: #f8fafc; }
.about-preview { padding: 100px 0; }
.about-flex { display: flex; gap: 60px; align-items: center; }
.about-image { flex: 1; position: relative; }
.about-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.experience-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary-color); color: #fff; padding: 25px; border-radius: 16px; text-align: center; box-shadow: 0 15px 30px rgba(27,58,92,0.3); border: 4px solid #fff; }
.experience-badge .year { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; margin-bottom: 5px; }
.experience-badge .text { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-text { flex: 1; }
.about-text .sub-title { text-align: left; }
.about-text h2 { font-size: 2.2rem; color: var(--primary-dark); margin-bottom: 25px; line-height: 1.2; }
.about-text p { font-size: 1.1rem; color: #475569; line-height: 1.8; margin-bottom: 30px; }
.check-list { list-style: none; padding: 0; margin-bottom: 40px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; font-size: 1.05rem; color: var(--text-main); font-weight: 500; }
.check-list li i { color: var(--accent-color); font-size: 1.2rem; margin-top: 3px; }
.service-img-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(27,58,92,0.8); display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s ease; }
.service-card:hover .service-img-overlay { opacity: 1; }
.service-img-overlay .btn-view { color: #fff; border: 2px solid #fff; padding: 10px 25px; border-radius: 30px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.2s; }
.service-img-overlay .btn-view:hover { background: #fff; color: var(--primary-color); }
.work-process { padding: 100px 0; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; position: relative; }
.process-step { background: #fff; padding: 40px 30px; border-radius: 16px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); position: relative; transition: all 0.3s; border: 1px solid #f1f5f9; }
.process-step:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: rgba(27,58,92,0.1); }
.step-number { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background: var(--primary-color); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; border: 4px solid #f8fafc; }
.step-icon { width: 80px; height: 80px; background: #f1f5f9; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; font-size: 2rem; color: var(--primary-color); transition: all 0.3s; }
.process-step:hover .step-icon { background: var(--primary-color); color: #fff; }
.process-step h4 { font-size: 1.2rem; color: var(--primary-dark); margin-bottom: 15px; font-weight: 700; }
.process-step p { font-size: 0.95rem; color: #64748b; line-height: 1.6; }
.cta-banner { 
    padding: 80px 0; 
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%); 
    position: relative; overflow: hidden; margin-bottom: -80px; z-index: 10; border-radius: 20px; 
    transition: all 0.4s ease; box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.cta-banner:hover { box-shadow: 0 15px 50px rgba(27,58,92,0.35); }

.cta-banner-content { text-align: center; color: #fff; position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.cta-banner h2 { 
    font-size: 2.2rem; font-weight: 700; margin-bottom: 20px; line-height: 1.2; 
    color: rgba(255,255,255,0.9); text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
}
.cta-banner:hover h2 { 
    color: #ffffff; 
    text-shadow: 0 0 15px rgba(255,255,255,0.6), 0 0 30px rgba(255,255,255,0.2); 
}
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 35px; transition: color 0.4s ease; }
.cta-banner:hover p { color: #ffffff; }
.cta-banner-buttons { display: flex; justify-content: center; gap: 20px; position: relative; z-index: 3; }
.cta-banner-buttons .btn { padding: 15px 30px; font-size: 1.05rem; border-radius: 8px; font-weight: 600; display: flex; align-items: center; gap: 10px; border: none; }
.cta-banner-buttons .btn-white { background: #fff; color: var(--primary-dark); }
.cta-banner-buttons .btn-white:hover { background: #f8fafc; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.cta-banner-buttons .btn-green { background: #25D366; color: #fff; }
.cta-banner-buttons .btn-green:hover { background: #1ebd5a; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.footer { 
    background: #e9eff5; 
    color: var(--text-muted); padding: 80px 0 20px; margin-top: 80px; position: relative; 
    border-top: 1px solid #d1dce5;
}
.footer-cta { margin-top: -120px; margin-bottom: 60px; position: relative; z-index: 5; }
.cta-box { 
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); 
    border-radius: var(--radius); padding: 45px 50px; display: flex; 
    justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; 
    box-shadow: 0 15px 30px rgba(27,58,92,0.2); color: #fff; 
}
.cta-box h2 { color: #fff; margin-bottom: 10px; font-size: 2rem; }
.cta-box p { color: rgba(255,255,255,0.9); margin-bottom: 0; font-size: 1.1rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; margin-bottom: 50px; }
.footer-logo h2 { color: var(--primary-color); font-weight: 700; letter-spacing: -1px; margin-bottom: 20px; font-size: 2rem; }
.footer-about p { line-height: 1.8; margin-bottom: 25px; color: var(--text-muted); }
.footer h3 { color: var(--text-main); font-size: 1.3rem; margin-bottom: 25px; position: relative; display: inline-block; padding-bottom: 10px; }
.footer h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--primary-color); border-radius: 2px; }
.footer-links ul li { margin-bottom: 15px; display: flex; align-items: center; }
.footer-links ul li a { color: var(--text-muted); transition: var(--transition); display: flex; align-items: center; }
.footer-links ul li a i { font-size: 0.8rem; margin-right: 10px; color: var(--primary-color); transition: var(--transition); }
.footer-links ul li a:hover { color: var(--primary-color); padding-left: 5px; }
.footer-links ul li a:hover i { margin-right: 15px; }
.footer-contact ul li { display: flex; align-items: center; margin-bottom: 12px; gap: 12px; }
.footer-contact .f-icon { 
    width: 32px; height: 32px; background: var(--white); box-shadow: var(--shadow-sm);
    border-radius: 8px; display: flex; align-items: center; justify-content: center; 
    color: var(--primary-color); flex-shrink: 0; font-size: 0.9rem;
}
.footer-contact strong { color: var(--text-main); font-weight: 600; margin-right: 5px; }
.footer-contact a { color: var(--text-muted); transition: var(--transition); }
.footer-contact a:hover { color: var(--primary-color); }
.social-links { display: flex; gap: 12px; }
.social-links a { 
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; background: var(--white); box-shadow: var(--shadow-sm);
    border-radius: 50%; color: var(--primary-color); transition: var(--transition);
}
.social-links a:hover { background: var(--primary-color); color: #fff; transform: translateY(-5px); box-shadow: 0 5px 15px rgba(27,58,92,0.3); }
.footer-bottom { 
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
    padding-top: 30px; border-top: 1px solid #e2e8f0; font-size: 0.95rem; color: var(--text-muted);
}
.footer-bottom-links a { color: var(--text-muted); margin-left: 20px; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--primary-color); }
.whatsapp-fixed {
    position: fixed; bottom: 35px; right: 35px; background: #25D366; color: white;
    width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 38px; box-shadow: var(--shadow-lg); z-index: 100; transition: var(--transition);
}
.whatsapp-fixed:hover { transform: scale(1.15) rotate(-5deg); color: white; box-shadow: 0 15px 30px rgba(37,211,102,0.4); }
.mobile-action-bar { display: none; }
@media(max-width: 1024px) {
    .hero-overlay { width: 85%; }
}
@media(max-width: 991px) {
    .whatsapp-fixed { display: none !important; }
    .header-inner { flex-wrap: nowrap; padding: 10px 0; align-items: center; justify-content: space-between; }
    .logo { flex: 1; max-width: auto; }
    .logo h2 { font-size: 1.4rem; }
    .header-right-wrapper { width: auto; margin-top: 0; align-items: center; }
    .top-bar { display: none; }
    .bottom-bar { flex-direction: row; align-items: center; width: auto; gap: 0; }
    .bottom-bar .btn { display: none !important; }
    .mobile-menu-btn { display: block; margin-left: 0; padding: 5px 10px; font-size: 26px; }
    .mobile-only { display: block; }
    i.mobile-only { display: inline-block !important; }
    .nav-list { 
        display: none; position: absolute; top: 100%; left: 0; width: 100%; 
        background: var(--white); flex-direction: column; box-shadow: var(--shadow-lg); 
        padding: 0; max-height: 75vh; overflow-y: auto; border-top: 1px solid #f1f5f9;
        z-index: 1000;
    }
    .nav-list.active { display: flex; }
    .nav-list li { border-bottom: 1px solid #f1f5f9; width: 100%; }
    .nav-list li a { padding: 18px 25px; display: flex; align-items: center; font-size: 16px; font-weight: 600; color: var(--text-main); }
    .nav-list li a:hover { background-color: #f8fafc; color: var(--primary-color); }
    .has-dropdown .dropdown { 
        position: static; opacity: 1; visibility: visible; box-shadow: none; 
        transform: none; display: none; padding: 0 0 0 30px; border-top: none; 
        background: #f8fafc; border-bottom: inset 1px #eee;
    }
    .has-dropdown.active .dropdown { display: block; }
    .has-dropdown .dropdown-btn { justify-content: flex-start; width: 100%; }
      .has-dropdown .dropdown-arrow { margin-left: auto; }
    .has-dropdown .dropdown-arrow { transition: transform 0.3s ease; }
    .has-dropdown.active .dropdown-arrow { transform: rotate(180deg); }
    .hero { padding: 80px 0; background-position: center; }
    .hero-overlay { 
        background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0.2) 100%); 
        width: 100%; 
    }
    .hero-content { text-align: left; padding: 10px 24px; }
    .hero-content h2 { font-size: 1.6rem; margin-bottom: 10px; }
    .hero-content h2 span { font-size: 2.2rem; letter-spacing: -0.5px; margin-top: 2px; }
    .hero-cta-box {
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        margin-top: 20px;
    }
    .hero-cta-box > p, .cta-phone {
        display: none; 
    }
    .cta-buttons { gap: 10px; }
    .cta-buttons .btn { padding: 12px; font-size: 14px; }
    .hero-desc { font-size: 1rem; margin-bottom: 25px; line-height: 1.6; }
    .section { padding: 50px 0; }
    .section-title h2 { font-size: 1.8rem; }
    .trust-bar { margin-top: 0; padding: 30px 0; }
    .trust-grid { flex-direction: column; gap: 20px; }
    .trust-item { min-width: 100%; justify-content: center; text-align: center; flex-direction: column; gap: 10px; }
    .about-flex { flex-direction: column; gap: 40px; text-align: center; }
    .about-text .sub-title { text-align: center; }
    .check-list li { text-align: left; }
    .process-grid { grid-template-columns: 1fr; }
    .cta-banner { border-radius: 0; padding: 60px 20px; }
    .cta-banner h2 { font-size: 1.6rem; }
    .cta-banner-buttons { flex-direction: column; }
    .cta-banner-buttons .btn { width: 100%; justify-content: center; }
    .service-img { height: 180px; }
    .service-body { padding: 20px; }
    .service-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
    .service-body p { font-size: 0.9rem; margin-bottom: 20px; }
    .service-body .btn-green { padding: 12px; font-size: 14px; }
    .promo-box { padding: 25px; text-align: center; }
    .promo-box h3 { font-size: 1.6rem; }
    .promo-box p { font-size: 1.05rem; }
    .promo-icon { display: none; }
    .process-grid { flex-direction: column; gap: 20px; }
    .contact-wrapper { flex-direction: column; margin-top: -20px; }
    .contact-form-box, .contact-info-box { min-width: 100%; padding: 25px 20px; }
    .form-group[style] { min-width: 100% !important; }
    .form-control { padding: 12px 15px; }
    .footer-cta { margin-top: 0; margin-bottom: 40px; }
    .cta-box { padding: 30px 20px; text-align: left; justify-content: flex-start; }
    .cta-box h2 { font-size: 1.6rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
    .footer-logo h2 { text-align: left; }
    .footer h3::after { left: 0; transform: none; }
    .footer-links ul li a { justify-content: flex-start; }
    .footer-contact ul li { flex-direction: row; align-items: flex-start; text-align: left; }
    .social-links { justify-content: flex-start; }
    .footer-bottom { flex-direction: column; text-align: left; align-items: flex-start; gap: 10px; }
    .footer-bottom-links a { margin: 0 10px; }
}
@media(max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .advantages-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero-content h2 span { font-size: 1.7rem; }
    .btn { padding: 12px; font-size: 14px; width: 100%; justify-content: center; }
}
.form-group { margin-bottom: 24px; }
.form-control { width: 100%; padding: 14px 18px; border: 1.5px solid #e2e8f0; border-radius: 8px; font-family: inherit; font-size: 15px; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(27,58,92,0.1); }
.page-header { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); color: var(--white); padding: 80px 0; text-align: center; }
.alert-success { background: #d1fae5; color: #065f46; padding: 15px 20px; border-radius: 8px; margin-bottom: 25px; border-left: 4px solid #10b981; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.alert-error { background: #fee2e2; color: #991b1b; padding: 15px 20px; border-radius: 8px; margin-bottom: 25px; border-left: 4px solid #ef4444; font-weight: 500; display: flex; align-items: center; gap: 10px; }
