:root {
  /* Image Colors */
  --color-navy: #111827;
  --color-orange: #ea580c;
  --color-orange-dark: #c2410c;
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-text: #111827;
  --color-text-muted: #4b5563;
  --color-secondary: #f3f4f6;
  --color-light-gray: #f9fafb;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  
  /* Effects */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
}

/* --- HEADER 3-LAYER DESIGN --- */

.top-bar {
    background-color: var(--color-navy);
    color: #fff;
    padding: 6px 0;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-features {
    display: flex;
    gap: 25px;
}
.top-bar-features span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-bar-features span::before {
    content: '✓';
    color: var(--color-orange);
}

.header-main {
    padding: 10px 0;
    background: #fff;
}
.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-navy);
    letter-spacing: -0.02em;
}
.logo a {
    color: inherit;
    text-decoration: none;
}
.logo span {
    color: var(--color-orange);
    border-bottom: 3.5px solid var(--color-orange);
}

.contact-boxes {
    display: flex;
    gap: 25px;
}
.contact-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-light-gray);
    padding: 8px 18px;
    border-radius: var(--radius-md);
    border: 1px solid #f1f5f9;
}
.contact-icon {
    background: var(--color-navy);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
}
.contact-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
}
.contact-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-navy);
    text-decoration: none;
}

.nav-bar {
    background-color: var(--color-orange);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-content {
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    list-style: none;
}
.nav-list li a {
    display: block;
    padding: 12px 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    border-right: 1px solid rgba(255,255,255,0.1);
}
.nav-list li a:hover {
    background-color: var(--color-orange-dark);
}

/* --- HERO (White Background) --- */
.hero {
    background-color: #fff;
    color: var(--color-navy);
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid var(--color-secondary);
}
.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.1;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}
.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 45px;
    color: var(--color-text-muted);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    max-width: 900px;
    margin: 40px auto 0;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid #fff;
}

/* --- TRUST BAR (Modern & Compact) --- */
.trust-bar {
    background: #fff;
    border: 1px solid var(--color-secondary);
    border-radius: 12px;
    padding: 12px 0;
    margin-top: -32px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-md);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.trust-item h4 {
    font-size: 1.15rem;
    color: var(--color-orange);
    font-weight: 800;
    margin: 0;
    line-height: 1;
}
.trust-item p {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}
.trust-divider {
    width: 1px;
    height: 15px;
    background: var(--color-secondary);
}

/* --- COMPARISON TABLE --- */
.comparison-section {
    padding: 100px 0;
    background: var(--color-light-gray);
}
.comparison-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
}
.comparison-table th {
    background: var(--color-navy);
    color: #fff;
    padding: 20px;
    text-align: left;
}
.comparison-table th.highlight { background: var(--color-orange); }
.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--color-secondary);
}
.comparison-check { color: #10b981; font-weight: bold; }
.comparison-cross { color: #ef4444; font-weight: bold; }

/* --- FAQ ACCORDION --- */
.faq-section { padding: 100px 0; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    background: var(--color-light-gray);
    overflow: hidden;
    transition: var(--transition);
}
.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--color-navy);
}
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--color-text-muted);
}
.faq-item.active { background: #fff; box-shadow: var(--shadow-md); }
.faq-item.active .faq-answer { padding-bottom: 20px; max-height: 500px; }
.faq-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(180deg); }

/* --- WHY US GLASS CARDS --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.feature-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-orange);
    background: #fff;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

/* --- STICKY MOBILE CTA --- */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.mobile-cta .btn {
    padding: 12px;
    font-size: 0.8rem;
    text-align: center;
}

/* Container & Sections */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--color-navy);
}

/* Constrained Width for Descriptive Text (Readability) */
.section-content, .content-wrapper, .intro p, .about p {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Generally centering for elegance */
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.btn-primary {
    background-color: var(--color-orange);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--color-orange-dark);
    transform: translateY(-2px);
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.card {
    background: #fff;
    padding: 35px;
    border-bottom: 5px solid var(--color-orange);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.card h3 {
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--color-navy);
}

/* Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
}
.step-number {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--color-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}
.step-item h3 {
    color: var(--color-navy);
    margin-bottom: 15px;
    font-size: 1.25rem;
}
.step-item p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* --- SECTION IMAGES --- */
.section-image {
    padding: 0 0 60px 0;
}
.full-width-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* --- VALUATION FORM SECTION --- */
.valuation-section {
    padding: 80px 0;
    background: var(--color-light-gray);
    border-top: 1px solid var(--color-secondary);
}
.valuation-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-secondary);
}
.form-header {
    text-align: center;
    margin-bottom: 40px;
}
.form-header h2 {
    color: var(--color-navy);
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.form-header p {
    color: var(--color-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.valuation-form h3 {
    font-size: 1.25rem;
    color: var(--color-navy);
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-secondary);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group.full-width {
    grid-column: span 2;
}
.form-group label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-navy);
}
.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}
.captcha-container {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    background: #f8fafc;
    padding: 15px;
    border-radius: var(--radius-md);
}
.form-submit-btn {
    width: 100%;
    margin-top: 30px;
    padding: 20px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--color-navy);
    color: #fff;
    padding: 80px 0 0;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
}
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

/* --- E-E-A-T EXPERT SECTION --- */
.eeat-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid var(--color-secondary);
}
.expert-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--color-light-gray);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-secondary);
}
.expert-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: var(--shadow-md);
}
.expert-info h3 {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 10px;
}
.expert-badge {
    display: inline-block;
    background: var(--color-orange);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}
.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-muted);
}
.badge-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* --- GEO GRID (Districts) --- */
.district-section {
    padding: 80px 0;
    background: var(--color-navy);
    color: #fff;
}
.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 40px;
}
.district-item {
    background: rgba(255,255,255,0.05);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: default;
}
.district-item:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .header-main-content { flex-direction: column; gap: 30px; }
}
@media (max-width: 768px) {
    .top-bar-features { display: none; }
    .contact-boxes { display: none; }
    .nav-bar { display: none; }
    .header-main { padding: 15px 0; }
    .logo { font-size: 1.5rem; text-align: center; width: 100%; }
    .hero { padding: 60px 0; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 30px; }
    .section-content, .content-wrapper { padding: 0 10px; }
    
    .mobile-cta { display: grid; }
    .hero-image { max-width: 100%; border-width: 4px; }
    .trust-bar { margin-top: 0; border-radius: 0; padding: 20px; }
    .trust-grid { flex-direction: column; gap: 15px; align-items: flex-start; }
    .trust-item::after { display: none; }
    .trust-item { border-bottom: 1px solid var(--color-secondary); width: 100%; padding-bottom: 10px; }
    .trust-item:last-child { border-bottom: none; padding-bottom: 0; }
    .comparison-container { border-radius: 0; }
    .section { padding: 60px 0; }

    .expert-card { flex-direction: column; text-align: center; gap: 20px; }
    .trust-badges { justify-content: center; }
}
