/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Open Sans', sans-serif; color: #333; line-height: 1.7; background: #fff; overflow-x: hidden; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; line-height: 1.3; color: #1a1a2e; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER TOP ===== */
.header { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.header-top { background: linear-gradient(135deg, #0a1628 0%, #162d50 100%); color: #fff; padding: 8px 0; font-size: 13px; }
.header-top-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.header-info { display: flex; align-items: center; gap: 6px; }
.header-info a { color: #fff; font-weight: 600; }
.header-info a:hover { color: #f0a500; }
.h-icon { width: 16px; height: 16px; flex-shrink: 0; }
.header-info .h-icon[fill="currentColor"] { color: #f0a500; }

/* ===== NAVBAR ===== */
.navbar { padding: 0; background: #fff; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 55px; width: auto; max-width: 160px; object-fit: contain; border-radius: 6px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #162d50; margin: 5px 0; border-radius: 2px; transition: .3s; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li > a { display: block; padding: 10px 14px; font-weight: 600; font-size: 14px; color: #1a1a2e; border-radius: 8px; transition: all .2s; font-family: 'Montserrat', sans-serif; }
.nav-menu > li > a:hover { color: #f0a500; background: rgba(240,165,0,.06); }
.arrow { font-size: 10px; margin-left: 3px; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 260px; box-shadow: 0 12px 40px rgba(0,0,0,.12); border-radius: 12px; padding: 8px; z-index: 100; border: 1px solid #eee; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { display: block; padding: 10px 16px; font-size: 13px; color: #444; border-radius: 8px; transition: all .2s; }
.dropdown-menu li a:hover { background: #f0a500; color: #fff; }

/* CTA Button */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: all .3s; font-family: 'Montserrat', sans-serif; text-align: center; justify-content: center; }
.btn-primary { background: linear-gradient(135deg, #f0a500 0%, #e08e00 100%); color: #fff; box-shadow: 0 4px 15px rgba(240,165,0,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(240,165,0,.45); }
.btn-secondary { background: #fff; color: #162d50; border: 2px solid #162d50; }
.btn-secondary:hover { background: #162d50; color: #fff; }
.btn-cta { background: linear-gradient(135deg, #f0a500 0%, #e08e00 100%); color: #fff; padding: 10px 22px; font-size: 14px; box-shadow: 0 4px 15px rgba(240,165,0,.3); }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,165,0,.4); }
.nav-cta { margin-left: 8px; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs-wrapper { background: #f8f9fa; padding: 14px 0; border-bottom: 1px solid #eee; }
.breadcrumbs-wrapper nav { font-size: 13px; color: #666; }
.breadcrumbs-wrapper a { color: #162d50; font-weight: 500; }
.breadcrumbs-wrapper a:hover { color: #f0a500; }
.breadcrumbs-wrapper span { margin: 0 8px; color: #ccc; }

/* ===== HERO SECTION ===== */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,.92) 0%, rgba(22,45,80,.82) 50%, rgba(10,22,40,.75) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 80px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero-text { color: #fff; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(240,165,0,.15); border: 1px solid rgba(240,165,0,.3); color: #f0a500; padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 20px; backdrop-filter: blur(10px); }
.hero-title { font-size: 48px; font-weight: 900; line-height: 1.15; margin-bottom: 20px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.6), 0 4px 20px rgba(0,0,0,.4); }
.hero-title .highlight { color: #f0a500; display: block; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 30px; line-height: 1.7; max-width: 520px; }
.hero-stats { display: flex; gap: 30px; margin-bottom: 35px; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 36px; font-weight: 900; color: #f0a500; font-family: 'Montserrat', sans-serif; display: block; line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Form */
.hero-form-card { background: rgba(255,255,255,.97); border-radius: 20px; padding: 32px 28px; box-shadow: 0 20px 60px rgba(0,0,0,.3); backdrop-filter: blur(20px); }
.hero-form-card h3 { font-size: 20px; color: #162d50; margin-bottom: 6px; text-align: center; }
.hero-form-card .form-sub { text-align: center; color: #666; font-size: 13px; margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: #555; margin-bottom: 5px; text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid #e8e8e8; border-radius: 12px; font-size: 14px; font-family: 'Open Sans', sans-serif; transition: border-color .2s; background: #fafafa; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #f0a500; background: #fff; }
.form-group textarea { resize: vertical; min-height: 70px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; padding: 14px; font-size: 16px; margin-top: 4px; }
.form-trust { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; font-size: 12px; color: #888; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: #f8f9fb; }
.section-dark { background: linear-gradient(135deg, #0a1628 0%, #162d50 100%); color: #fff; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.section-header .section-line { width: 60px; height: 4px; background: linear-gradient(90deg, #f0a500, #e08e00); margin: 0 auto 16px; border-radius: 2px; }
.section-header p { font-size: 17px; color: #666; max-width: 600px; margin: 0 auto; }
.section-dark .section-header h2 { color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,.4); }
.section-dark .section-header p { color: rgba(255,255,255,.8); }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #fff; border-radius: 16px; padding: 32px 24px; box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid #f0f0f0; transition: all .3s; position: relative; overflow: hidden; cursor: pointer; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #f0a500, #e08e00); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon { width: 60px; height: 60px; background: linear-gradient(135deg, rgba(240,165,0,.1), rgba(240,165,0,.05)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 18px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #1a1a2e; }
.service-card p { font-size: 14px; color: #666; line-height: 1.6; }
.service-card .card-link { display: inline-flex; align-items: center; gap: 6px; color: #f0a500; font-weight: 600; font-size: 14px; margin-top: 14px; }
.service-card .card-link:hover { gap: 10px; }

/* ===== IMAGE SECTION (Why Choose Us) ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.15); position: relative; }
.why-image img { width: 100%; height: 400px; object-fit: cover; }
.why-image-badge { position: absolute; bottom: 20px; left: 20px; background: linear-gradient(135deg, #f0a500, #e08e00); color: #fff; padding: 12px 20px; border-radius: 12px; font-weight: 700; font-size: 14px; box-shadow: 0 4px 15px rgba(240,165,0,.4); }
.why-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 20px; }
.why-content p { color: #666; margin-bottom: 24px; font-size: 16px; }
.why-features { display: grid; gap: 16px; }
.why-feature { display: flex; gap: 14px; align-items: flex-start; }
.why-feature-icon { width: 44px; height: 44px; background: linear-gradient(135deg, rgba(240,165,0,.12), rgba(240,165,0,.05)); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; }
.why-feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; color: #1a1a2e; }
.why-feature p { font-size: 13px; color: #777; margin: 0; }

/* ===== PROCESS STEPS ===== */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.process-step { text-align: center; position: relative; padding: 24px 16px; }
.process-step-num { width: 56px; height: 56px; background: linear-gradient(135deg, #f0a500, #e08e00); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; margin: 0 auto 16px; box-shadow: 0 4px 15px rgba(240,165,0,.35); font-family: 'Montserrat', sans-serif; }
.process-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.4); }
.process-step p { font-size: 13px; color: rgba(255,255,255,.85); }

/* ===== LOCATION GRID ===== */
.locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.location-tag { display: flex; align-items: center; gap: 8px; padding: 14px 18px; background: #fff; border-radius: 12px; font-size: 14px; font-weight: 500; color: #333; border: 1px solid #eee; transition: all .2s; cursor: pointer; }
.location-tag:hover { border-color: #f0a500; color: #f0a500; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(240,165,0,.15); }
.location-tag svg { width: 16px; height: 16px; color: #f0a500; flex-shrink: 0; }

/* ===== REVIEWS ===== */
.reviews-header-stats { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 40px; }
.reviews-big-rating { font-size: 64px; font-weight: 900; color: #f0a500; font-family: 'Montserrat', sans-serif; line-height: 1; }
.reviews-stars { color: #f0a500; font-size: 24px; display: block; margin-bottom: 4px; }
.reviews-count { font-size: 14px; color: #666; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid #f0f0f0; transition: all .3s; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.review-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar { width: 48px; height: 48px; background: linear-gradient(135deg, #162d50, #1e3a5f); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; font-family: 'Montserrat', sans-serif; }
.review-name { font-weight: 700; font-size: 15px; color: #1a1a2e; }
.review-date { font-size: 12px; color: #999; }
.review-stars { color: #f0a500; font-size: 14px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: #555; line-height: 1.7; font-style: italic; }

/* ===== BLOG CARDS ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid #f0f0f0; transition: all .3s; cursor: pointer; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.blog-card-img { height: 200px; background: linear-gradient(135deg, #162d50, #1e3a5f); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img .blog-icon { font-size: 48px; opacity: .5; }
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 12px; color: #999; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.blog-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #1a1a2e; line-height: 1.4; }
.blog-card p { font-size: 14px; color: #666; line-height: 1.6; }
.blog-card .read-more { display: inline-flex; align-items: center; gap: 6px; color: #f0a500; font-weight: 600; font-size: 14px; margin-top: 12px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 14px; margin-bottom: 12px; box-shadow: 0 2px 10px rgba(0,0,0,.04); border: 1px solid #eee; overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 15px; color: #1a1a2e; font-family: 'Montserrat', sans-serif; transition: background .2s; }
.faq-question:hover { background: #fafafa; }
.faq-question .faq-toggle { width: 32px; height: 32px; background: linear-gradient(135deg, rgba(240,165,0,.1), rgba(240,165,0,.05)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #f0a500; transition: transform .3s; flex-shrink: 0; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 20px; font-size: 14px; color: #666; line-height: 1.7; display: none; }
.faq-item.active .faq-answer { display: block; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, #f0a500 0%, #e08e00 100%); padding: 60px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-banner h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 12px; position: relative; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,.9); margin-bottom: 28px; position: relative; }
.cta-banner .btn { position: relative; }
.cta-banner .btn-white { background: #fff; color: #162d50; font-weight: 700; }
.cta-banner .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.2); }

/* ===== SPECIAL SERVICES GRID ===== */
.special-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.special-card { background: #fff; border-radius: 14px; padding: 24px; border: 1px solid #eee; transition: all .3s; cursor: pointer; display: flex; gap: 16px; align-items: flex-start; }
.special-card:hover { border-color: #f0a500; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(240,165,0,.12); }
.special-card-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #162d50, #1e3a5f); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.special-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: #1a1a2e; }
.special-card p { font-size: 13px; color: #777; }

/* ===== IMAGE GALLERY ROW ===== */
.gallery-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.gallery-item { border-radius: 16px; overflow: hidden; height: 220px; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 16px; }
.gallery-item-overlay span { color: #fff; font-weight: 600; font-size: 14px; }

/* ===== INNER PAGES ===== */
.page-hero { background: linear-gradient(135deg, #0a1628 0%, #162d50 100%); padding: 60px 0 50px; color: #fff; text-align: center; }
.page-hero h1 { font-size: 38px; font-weight: 800; margin-bottom: 12px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto; }
.page-content { padding: 60px 0; }
.page-content h2 { font-size: 28px; font-weight: 700; margin-bottom: 16px; color: #1a1a2e; }
.page-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: #1a1a2e; }
.page-content p { margin-bottom: 16px; color: #555; font-size: 15px; line-height: 1.8; }
.page-content ul { margin-bottom: 16px; padding-left: 20px; }
.page-content ul li { margin-bottom: 8px; color: #555; font-size: 15px; position: relative; padding-left: 20px; }
.page-content ul li::before { content: '✓'; position: absolute; left: 0; color: #f0a500; font-weight: 700; }
.page-sidebar { background: #f8f9fb; border-radius: 16px; padding: 28px; }
.page-sidebar h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: #162d50; }
.page-sidebar ul li { margin-bottom: 10px; }
.page-sidebar ul li a { font-size: 14px; color: #555; display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 8px; transition: all .2s; }
.page-sidebar ul li a:hover { background: #fff; color: #f0a500; }
.page-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.page-image { border-radius: 16px; overflow: hidden; margin-bottom: 24px; }
.page-image img { width: 100%; height: 300px; object-fit: cover; }

/* ===== CONTACT FORM PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card { background: linear-gradient(135deg, #162d50, #1e3a5f); color: #fff; border-radius: 20px; padding: 40px; }
.contact-info-card h2 { color: #fff; margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-item .ci-icon { width: 48px; height: 48px; background: rgba(240,165,0,.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: rgba(255,255,255,.75); }
.contact-form-card { background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid #eee; }

/* ===== ABOUT PAGE ===== */
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 60px; }
.about-image { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.15); }
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.about-stat { text-align: center; padding: 24px; background: #f8f9fb; border-radius: 16px; }
.about-stat .stat-num { font-size: 36px; font-weight: 900; color: #f0a500; font-family: 'Montserrat', sans-serif; display: block; }
.about-stat .stat-label { font-size: 13px; color: #666; margin-top: 4px; }

/* ===== FOOTER ===== */
.footer { background: linear-gradient(135deg, #0a1628 0%, #162d50 100%); color: #ccc; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo-img { height: 50px; width: auto; margin-bottom: 16px; filter: brightness(1.2); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 20px; line-height: 1.7; }
.footer-contact p { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 14px; }
.footer-contact a { color: #f0a500; }
.f-icon { width: 16px; height: 16px; color: #f0a500; flex-shrink: 0; }
.footer h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: #f0a500; border-radius: 2px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.55); transition: all .2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: #f0a500; padding-left: 4px; }
.footer-links a::before { content: '›'; color: #f0a500; font-weight: 700; }
.footer-bottom { padding: 24px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-legal a:hover { color: #f0a500; }
.partner-link a { color: #f0a500; }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.float-btn { display: flex; align-items: center; gap: 10px; padding: 14px 20px; border-radius: 50px; font-weight: 700; font-size: 14px; color: #fff; box-shadow: 0 6px 25px rgba(0,0,0,.25); transition: all .3s; font-family: 'Montserrat', sans-serif; }
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(0,0,0,.35); }
.float-btn svg { flex-shrink: 0; }
.float-phone { background: linear-gradient(135deg, #f0a500, #e08e00); }
.float-phone svg { stroke: #fff; }
.float-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }

/* ===== COOKIE BANNER ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(10,22,40,.97); color: #fff; padding: 18px 0; z-index: 9999; backdrop-filter: blur(10px); }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-inner p { font-size: 13px; color: rgba(255,255,255,.8); }
.cookie-inner a { color: #f0a500; }

/* ===== TRUST BADGES ===== */
.trust-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; padding: 40px 0; }
.trust-badge { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #666; font-weight: 500; }
.trust-badge-icon { width: 44px; height: 44px; background: linear-gradient(135deg, rgba(240,165,0,.1), rgba(240,165,0,.05)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .special-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-row { grid-template-columns: repeat(2, 1fr); }
  .page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-top-inner { gap: 12px; font-size: 12px; }
  .header-info-desktop { display: none; }
  .nav-toggle { display: block; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px; box-shadow: 0 12px 40px rgba(0,0,0,.12); gap: 0; }
  .nav-menu.active { display: flex; }
  .nav-menu > li > a { padding: 14px 16px; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.active .dropdown-menu { display: block; }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .nav-cta a { display: block; text-align: center; }
  .hero { min-height: auto; }
  .hero-content { padding: 60px 0 40px; }
  .hero-title { font-size: 32px; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 28px; }
  .section { padding: 50px 0; }
  .section-header h2 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .special-grid { grid-template-columns: 1fr; }
  .gallery-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .floating-buttons { bottom: 16px; right: 16px; }
  .float-text { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }
  .page-hero h1 { font-size: 28px; }
  .cta-banner h2 { font-size: 26px; }
  .trust-row { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .locations-grid { grid-template-columns: 1fr; }
  .gallery-row { grid-template-columns: 1fr; }
  .reviews-big-rating { font-size: 48px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp .5s ease-out; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.float-btn { animation: pulse 2s infinite; }
.float-btn:hover { animation: none; }