/* ========== RESET & BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, Helvetica, sans-serif; line-height: 1.6; color: #212529; background-color: #f9f9f9; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========== COLOR VARIABLES ========== */
:root {
  --primary-color: #007BFF;
  --primary-dark: #0056b3;
  --secondary-color: #2c3e50;
  --accent-color: #28a745;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --border-radius: 10px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

h1, h2, h3, h4 { font-weight: 600; margin-bottom: 1rem; }
h1 { font-size: 2.8rem; line-height: 1.2; }
h2 { font-size: 2.2rem; color: var(--primary-color); position: relative; padding-bottom: 15px; margin-bottom: 2rem; text-align: center; }
h2:after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(--accent-color); }
h3 { font-size: 1.5rem; color: var(--primary-dark); }
p { margin-bottom: 1rem; font-size: 1rem; }

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,123,255,0.2);
}
.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.btn-secondary {
  background-color: var(--accent-color);
}
.btn-secondary:hover {
  background-color: #218838;
}
.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}
.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { font-size: 1.2rem; color: var(--gray-color); max-width: 700px; margin: 0 auto; }

/* Header */
header { background-color: white; padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { background-color: var(--primary-color); color: white; width: 50px; height: 50px; border-radius: var(--border-radius); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.logo-text h1 { font-size: 1.8rem; margin: 0; color: var(--dark-color); }
.logo-text span { color: var(--primary-color); }
.phone { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--primary-color); white-space: nowrap; }
.phone a { color: var(--primary-color); text-decoration: none; }
nav ul { display: flex; list-style: none; align-items: center; gap: 15px; }
nav a { color: var(--dark-color); text-decoration: none; font-weight: 500; transition: var(--transition); padding: 5px 0; white-space: nowrap; }
nav a:hover { color: var(--primary-color); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--dark-color); }
.nav-btn { padding: 8px 18px; font-size: 0.9rem; }

/* Hero Slider (homepage only) */
.hero-slider { position: relative; height: 600px; overflow: hidden; background: #2c3e50; }
.hero-slider:before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(60,60,60,0.35); z-index: 0; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease; z-index: 1; }
.slide.active { opacity: 1; }
.slide-video video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.slide-video:after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(60,60,60,0.35); z-index: 1; }
.slide-video .slide-content { position: relative; z-index: 2; }
.slide-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; color: white; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 20px; }
.slide-content h1 { font-size: 3rem; margin-bottom: 20px; }
.slide-content p { font-size: 1.3rem; margin-bottom: 30px; max-width: 700px; }
.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 2; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; }
.dot.active { background: white; transform: scale(1.2); }

/* Simple hero for inner pages */
.simple-hero { background: #2c3e50; padding: 60px 0; text-align: center; color: white; }
.simple-hero h1 { color: white; font-size: 2.5rem; margin-bottom: 1rem; }
.simple-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; }

/* How It Works, Services, Pricing, etc. (same as before) */
.how-it-works { background: white; }
.steps { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.step { flex: 1; min-width: 220px; text-align: center; padding: 35px 25px; background: var(--light-color); border-radius: var(--border-radius); transition: var(--transition); }
.step-number { width: 70px; height: 70px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: bold; margin: 0 auto 20px; }

.service-highlights { background: var(--light-color); }
.highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.highlight { background: white; padding: 35px 25px; border-radius: var(--border-radius); text-align: center; box-shadow: var(--box-shadow); height: 100%; }

.services-detailed { background: white; }
.service-item { display: flex; align-items: center; gap: 50px; margin-bottom: 80px; flex-wrap: wrap; }
.service-image { flex: 1; border-radius: var(--border-radius); overflow: hidden; min-height: 300px; background: var(--light-color); display: flex; align-items: center; justify-content: center; }
.service-image img { width: 100%; height: auto; min-height: 300px; object-fit: cover; }
.service-content { flex: 1; }
.service-content ul { list-style: none; margin: 20px 0; column-count: 2; column-gap: 20px; }
.service-content li { padding: 8px 0; padding-left: 30px; position: relative; }
.service-content li:before { content: '✓'; color: var(--accent-color); position: absolute; left: 0; }

.property-types { background: var(--light-color); }
.property-types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.property-category { background: white; padding: 40px 30px; border-radius: var(--border-radius); box-shadow: var(--box-shadow); }

.service-area { background: white; }
.area-container { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
.area-map { flex: 1; border-radius: var(--border-radius); overflow: hidden; }
.area-map img { width: 100%; height: 400px; object-fit: cover; }
.area-content { flex: 1; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.area-cities { background: white; padding: 25px; border-radius: var(--border-radius); box-shadow: var(--box-shadow); border: 2px solid var(--light-gray); }
.area-cities ul { list-style: none; padding-left: 0; }
.area-cities li { padding: 6px 0; }
.area-cities a { color: var(--primary-color); text-decoration: none; }
.area-cities a:hover { text-decoration: underline; }

.pricing { background: white; }
.pricing-options { display: flex; justify-content: center; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.pricing-card { background: white; padding: 40px 30px; border-radius: var(--border-radius); box-shadow: var(--box-shadow); border: 2px solid var(--light-gray); flex: 1; min-width: 280px; max-width: 380px; text-align: center; display: flex; flex-direction: column; }
.pricing-card.featured { border-color: var(--accent-color); position: relative; }
.pricing-card.featured:before { content: 'MOST POPULAR'; position: absolute; top: 15px; right: -30px; background: var(--accent-color); color: white; padding: 5px 30px; font-size: 0.8rem; font-weight: 600; transform: rotate(45deg); }
.price { font-size: 2.5rem; font-weight: 700; color: var(--primary-color); margin: 20px 0; }
.pricing-card ul { margin: 20px 0; text-align: left; flex-grow: 1; }
.pricing-card li { list-style: none; padding: 8px 0 8px 28px; position: relative; }
.pricing-card li:before { content: '✓'; color: var(--accent-color); position: absolute; left: 0; }
.no-contract-badge { text-align: center; background: #e8f5e9; padding: 12px 20px; border-radius: 50px; display: inline-block; margin: 30px auto 0; font-weight: 600; color: var(--accent-color); }
.pricing-note { text-align: center; font-size: 0.9rem; color: var(--gray-color); margin-top: 20px; }
.pricing-media { margin-top: 50px; border-radius: var(--border-radius); overflow: hidden; }

.company-about { background: white; }
.company-about p { max-width: 850px; margin-left: auto; margin-right: auto; line-height: 1.7; }

.faq { background: var(--light-color); }
.faq-item { background: white; margin-bottom: 15px; border-radius: var(--border-radius); padding: 20px; box-shadow: var(--box-shadow); }
.faq-question { font-weight: 700; font-size: 1.2rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { display: none; margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--light-gray); color: var(--gray-color); }
.faq-answer.show { display: block; }

/* Contact Section (single form) */
.contact-info-simple { background: var(--light-color); text-align: center; }
.contact-form-wrap { max-width: 900px; margin: 0 auto; background: white; padding: 30px; border-radius: var(--border-radius); box-shadow: var(--box-shadow); text-align: left; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 18px; }
.contact-form .form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.contact-form label { font-weight: 600; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 16px; border-radius: 10px; border: 1.5px solid #cfd6df; font-family: inherit; font-size: 1rem; }
.contact-form textarea { min-height: 120px; }
.form-status { margin-bottom: 14px; padding: 12px; border-radius: 10px; display: none; }
.form-status.success { display: block; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-status.error { display: block; background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.contact-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.contact-item { background: white; padding: 30px; border-radius: var(--border-radius); box-shadow: var(--box-shadow); text-decoration: none; color: inherit; display: block; text-align: center; }
.contact-item i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.contact-link:hover { transform: translateY(-5px); }

footer { background: var(--secondary-color); color: white; padding: 40px 0 30px; text-align: center; }
.footer-info { margin-top: 20px; color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 992px) {
  .service-item, .area-container { flex-direction: column; }
  .area-grid { grid-template-columns: 1fr; }
  .service-content ul { column-count: 1; }
  .contact-items { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav ul { display: none; position: fixed; top: 80px; left: 0; width: 100%; background: white; flex-direction: column; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); z-index: 1000; gap: 15px; }
  nav ul.active { display: flex; }
  .mobile-menu-btn { display: block; }
  .slide-content h1 { font-size: 2rem; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .header-container { flex-direction: column; }
  .phone { white-space: normal; }
  .pricing-options { flex-direction: column; align-items: center; }
}
