: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 3px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.12);
  --glass: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.4);
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    animation: fadeInUp 0.8s ease-out forwards;
}

.section { 
    padding: 80px 0; 
    opacity: 0; /* Handled by JS or intersection observer usually, but for simple reveal we can use direct animation */
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-orange);
    color: white;
    padding: 8px;
    z-index: 10000;
    transition: top 0.3s;
    text-decoration: none;
    font-weight: 700;
}

.skip-link:focus {
    top: 0;
}

/* Focus Indicators */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--color-orange);
    outline-offset: 3px;
}


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

html, body {
  overflow-x: hidden;
  width: 100%;
}

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);
}

/* --- UNIFIED 3D HERO BUTTONS (Glassmorphism Pill) --- */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-btn-pill {
    display: flex;
    align-items: center;
    background: rgba(211, 84, 0, 0.85); /* Dark Orange Transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    padding: 8px 30px 8px 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2), 
        inset 0 1px 1px rgba(255, 255, 255, 0.4),
        inset 0 -3px 6px rgba(0, 0, 0, 0.3);
    width: fit-content;
    min-width: 280px;
}

.hero-btn-pill:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(230, 92, 0, 0.95);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3), 
        inset 0 1px 1px rgba(255, 255, 255, 0.5),
        inset 0 -3px 6px rgba(0, 0, 0, 0.2);
}

.hero-btn-icon-circle {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 18px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.hero-btn-pill span {
    filter: brightness(0) invert(1); /* Force emoji icons to look white/monochrome if possible, or just ensure text is white */
}

.hero-btn-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-btn-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1;
    margin-bottom: 3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-btn-main {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}



/* --- 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-top {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-orange);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    text-transform: uppercase;
}
.hero-subtitle {
    font-size: 1.25rem;
    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; }

/* --- MODERN FAQ SECTION --- */
.faq-section { 
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.faq-container { max-width: 850px; margin: 0 auto; }
.faq-item {
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-orange);
    background: #fff;
}
.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--color-navy);
    position: relative;
    user-select: none;
}
.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--color-text-muted);
    line-height: 1.8;
}
.faq-item.active { 
    background: #fff; 
    box-shadow: var(--shadow-lg);
    border-color: var(--color-orange);
}
.faq-item.active .faq-answer { 
    padding-bottom: 30px; 
    max-height: 800px; /* Increased for longer SEO texts */
}
.faq-icon {
    width: 24px;
    height: 24px;
    background: var(--color-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--color-orange);
    font-size: 14px;
    font-weight: 800;
}
.faq-item.active .faq-icon { 
    transform: rotate(180deg); 
    background: var(--color-orange);
    color: #fff;
}
.faq-icon::before {
    content: '↓';
}
.faq-item.active .faq-icon::before {
    content: '↑';
}

/* --- 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;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-orange), #fb923c, var(--color-orange));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
}

.brand-col {
    grid-column: span 1.5;
}

@media (max-width: 992px) {
    .brand-col { grid-column: span 1; }
}

.footer-logo {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.footer-logo span {
    color: var(--color-orange);
}

.footer-description {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
}

.contact-item .icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--color-orange);
    transform: translateX(5px);
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-orange);
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #94a3b8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-nav a span {
    color: var(--color-orange);
    font-weight: bold;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: #fff;
    transform: translateX(8px);
}

.footer-nav a:hover span {
    transform: translateX(3px);
}

.footer-hours {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.hours-item .day {
    color: #94a3b8;
}

.hours-item .time {
    color: #fff;
    font-weight: 600;
}

.hours-item.special {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-direction: column;
    gap: 5px;
}

.hours-item.special .day {
    color: var(--color-orange);
    font-weight: 700;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.85rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* --- 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; }
}
/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: #fff;
}
.whatsapp-badge {
    display: none; /* User requested to remove text */
}

/* --- SEO LINK GRIDS (Offenbach & Brands) --- */
.seo-grid-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid var(--color-secondary);
}
.seo-grid-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.seo-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}
.seo-link {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.seo-link::before {
    content: '→';
    color: var(--color-orange);
    font-weight: 800;
}
.seo-link:hover {
    color: var(--color-orange);
    padding-left: 5px;
}

/* --- TRUST BADGE GRID --- */
.trust-badges-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.trust-badge-card {
    background: var(--color-light-gray);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--color-secondary);
}
.trust-badge-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}
.trust-badge-text {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--color-navy);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 100px; /* Above mobile sticky CTA */
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}
