/* ============================================
   TAMPA BAY DRYWOOD TERMITE - STYLES
   Trusted Resource Website | Creepy Creatures Inc.
   ============================================ */

/* ============================================
   VARIABLES & RESET
   ============================================ */

:root {
    --primary-color: #1a5632;
    --primary-dark: #0f3820;
    --secondary-color: #d4872c;
    --secondary-light: #e59d3d;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --drywood-color: #8B4513;
    --subterranean-color: #2c5f2d;
    --formosan-color: #b8860b;
    --ants-color: #4a4a4a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--primary-color);
}

h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--text-dark);
}

h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}

ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

ol li {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--secondary-light);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.brand-main {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.brand-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.phone-header {
    display: none;
}

.phone-header a {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #1a5632 0%, #0f3820 100%);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 135, 44, 0.2);
    color: var(--secondary-light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 135, 44, 0.3);
}

.hero h1 {
    color: var(--bg-white);
    margin-bottom: 20px;
    font-size: 48px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lead-form {
    background: rgba(255, 255, 255, 0.97);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    margin-top: 30px;
    text-align: left;
}

.form-heading {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
}

.form-row-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.1);
}

.lead-form .form-group {
    margin-bottom: 0;
}

.lead-form button {
    width: 100%;
    margin-top: 15px;
}

.form-notice {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 12px;
    text-align: center;
    font-style: italic;
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
    background-color: var(--bg-light);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-bar-item {
    text-align: center;
}

.trust-bar-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.trust-bar-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 4px;
}

.trust-bar-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.credential-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.credential-card h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.credential-card p {
    margin-bottom: 0;
    font-size: 14px;
}

/* ============================================
   SECTION INTRO TEXT
   ============================================ */

.section-intro {
    font-size: 17px;
    color: var(--text-light);
    max-width: 700px;
    margin-bottom: 40px;
}

/* ============================================
   PAGE SECTIONS
   ============================================ */

.page-header {
    background: linear-gradient(135deg, #1a5632 0%, #0f3820 100%);
    color: var(--bg-white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--bg-white);
    font-size: 42px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 0;
}

.content-section {
    background-color: var(--bg-white);
}

/* ============================================
   EDUCATION PREVIEW CARDS (Homepage)
   ============================================ */

.education-preview {
    background-color: var(--bg-light);
}

.edu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.edu-card {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.edu-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.edu-card-header {
    padding: 15px 20px;
    color: var(--bg-white);
    font-weight: 700;
    font-size: 16px;
}

.edu-card-header.drywood { background-color: var(--drywood-color); }
.edu-card-header.subterranean { background-color: var(--subterranean-color); }
.edu-card-header.formosan { background-color: var(--formosan-color); }
.edu-card-header.ants { background-color: var(--ants-color); }

.edu-card-body {
    padding: 20px;
}

.edu-card-body p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.edu-card-body p:last-child {
    margin-bottom: 0;
}

.edu-action {
    font-weight: 600;
    color: var(--text-dark) !important;
}

/* ============================================
   PHOTO ID CTA SECTION
   ============================================ */

.photo-id-cta {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.photo-id-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.photo-id-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   TRUST SIGNALS SECTION
   ============================================ */

.trust-section {
    background-color: var(--bg-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.trust-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.trust-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.trust-card p {
    font-size: 15px;
    margin-bottom: 0;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */

.services-overview {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.service-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: var(--shadow-md);
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item p {
    margin-bottom: 15px;
}

.service-item .btn-secondary {
    padding: 8px 20px;
    font-size: 14px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   AREA OVERVIEW
   ============================================ */

.area-overview {
    background-color: var(--bg-white);
    text-align: center;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
}

.stars {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonial p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color) !important;
    font-style: normal !important;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, #1a5632 0%, #0f3820 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-section h2 {
    color: var(--bg-white);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.phone-cta {
    margin-top: 20px;
    font-size: 18px;
}

.phone-cta a {
    color: var(--secondary-color);
}

/* ============================================
   PEST SECTIONS (Services Page)
   ============================================ */

.pest-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.pest-section.alt-bg {
    background-color: var(--bg-light);
}

.pest-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--border-color);
}

.pest-header h2 {
    margin-bottom: 10px;
}

.pest-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bg-white);
}

.drywood-header .pest-tag { background-color: var(--drywood-color); }
.drywood-header h2 { color: var(--drywood-color); }
.subterranean-header .pest-tag { background-color: var(--subterranean-color); }
.subterranean-header h2 { color: var(--subterranean-color); }
.formosan-header .pest-tag { background-color: var(--formosan-color); }
.formosan-header h2 { color: var(--formosan-color); }
.ants-header .pest-tag { background-color: var(--ants-color); }
.ants-header h2 { color: var(--ants-color); }
.lookalike-header .pest-tag { background-color: #c0392b; }
.lookalike-header h2 { color: #c0392b; }

.pest-image {
    margin-bottom: 30px;
    text-align: center;
}

.pest-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.image-caption {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 0;
}

.pest-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.pest-content h3 {
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-callout {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 30px;
}

.process-callout h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.callout-box {
    background: linear-gradient(135deg, rgba(26, 86, 50, 0.05), rgba(212, 135, 44, 0.05));
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
    margin-top: 30px;
}

.callout-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.callout-box p {
    margin-bottom: 0;
}

/* ============================================
   SERVICES PAGE SPECIFICS
   ============================================ */

.process-section {
    background-color: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step h3 {
    color: var(--primary-color);
}

.step p {
    margin-bottom: 0;
}

.expect-section {
    background-color: var(--bg-white);
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.expect-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.expect-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 12px;
}

.expect-card p {
    font-size: 14px;
    margin-bottom: 0;
}

.service-types {
    background-color: var(--bg-light);
}

.service-type-card {
    background: var(--bg-white);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--secondary-color);
}

.service-type-card h3 {
    color: var(--primary-color);
}

.service-type-card p {
    margin-bottom: 15px;
}

.comparison-section {
    background-color: var(--bg-white);
}

.comparison-table {
    margin-top: 30px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    line-height: 1.5;
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) {
    background-color: var(--bg-light);
}

/* ============================================
   SERVICE AREA PAGE
   ============================================ */

.service-areas-grid {
    background-color: var(--bg-white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.area-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.area-card:hover {
    box-shadow: var(--shadow-md);
}

.area-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 12px;
}

.area-card p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.7;
}

.map-section {
    background-color: var(--bg-light);
}

.map-placeholder {
    margin-top: 30px;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.7;
}

.benefits-list li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-section {
    background-color: var(--bg-white);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    color: var(--primary-color);
    font-size: 20px;
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-arrow {
    font-size: 24px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-question.active .faq-arrow {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 20px 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    margin-bottom: 15px;
    font-size: 15px;
}

.faq-answer ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    font-size: 15px;
}

.faq-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.faq-table th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.faq-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.faq-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form-wrapper h2 {
    margin-bottom: 10px;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
}

.contact-form button {
    width: 100%;
    margin-top: 20px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-info {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.info-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-info ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.contact-info li {
    margin-bottom: 5px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works,
.how-it-works-home {
    background-color: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    background: var(--bg-white);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-item h3 {
    color: var(--primary-color);
    font-size: 18px;
}

.step-item p {
    font-size: 14px;
    margin-bottom: 0;
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges-section {
    background-color: var(--bg-white);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.badge {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--secondary-color);
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.badge p {
    margin-bottom: 0;
    font-size: 14px;
}

/* ============================================
   UPLOAD / IDENTIFY PAGE
   ============================================ */

.id-intro {
    max-width: 800px;
}

.photo-tips-section {
    background-color: var(--bg-light);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tip-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.tip-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tip-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.tip-card p {
    font-size: 14px;
    margin-bottom: 0;
}

.upload-section {
    background-color: var(--bg-white);
}

.upload-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.upload-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.upload-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.upload-form input,
.upload-form select,
.upload-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.upload-form input:focus,
.upload-form select:focus,
.upload-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.1);
}

.file-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: var(--bg-white);
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(26, 86, 50, 0.02);
}

.file-upload-area.dragover {
    border-color: var(--secondary-color);
    background: rgba(212, 135, 44, 0.05);
}

.upload-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.file-upload-area p {
    margin-bottom: 5px;
    color: var(--text-light);
}

.upload-hint {
    font-size: 13px !important;
    color: #999 !important;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-list {
    margin-top: 10px;
}

.file-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 5px;
    font-size: 14px;
}

.file-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 16px;
    padding: 0 5px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 15px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.6 !important;
    margin-top: 15px !important;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    section {
        padding: 60px 0;
    }

    /* Navigation Mobile */
    .navbar-container {
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        padding: 12px 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        font-size: 15px;
    }

    .phone-header {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .lead-form {
        padding: 25px;
    }

    .form-row-inline {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row-inline .form-group {
        margin-bottom: 12px;
    }

    /* Trust Bar Mobile */
    .trust-bar-inner {
        gap: 20px;
    }

    .trust-bar-divider {
        display: none;
    }

    .trust-bar-number {
        font-size: 26px;
    }

    /* About Grid Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Photo ID Grid Mobile */
    .photo-id-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Forms Mobile */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-wrapper {
        order: 2;
    }

    /* Grid Mobile */
    .trust-grid,
    .services-grid,
    .areas-grid,
    .process-steps,
    .expect-grid,
    .testimonials-grid,
    .steps-grid,
    .badges-grid,
    .edu-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    /* Table Mobile */
    table {
        font-size: 12px;
    }

    th, td {
        padding: 10px 8px;
    }

    /* Footer Mobile */
    .footer-grid {
        gap: 30px;
    }

    .page-header h1 {
        font-size: 30px;
    }

    /* Upload Area Mobile */
    .file-upload-area {
        padding: 25px;
    }

    .upload-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .lead-form {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-info {
        padding: 20px;
    }

    .trust-card,
    .service-item,
    .area-card,
    .testimonial,
    .step,
    .expect-card,
    .badge,
    .edu-card,
    .tip-card {
        padding: 20px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 26px;
    }

    .phone-header {
        display: block;
    }

    .brand-main {
        font-size: 16px;
    }

    .brand-sub {
        font-size: 10px;
    }

    .nav-menu {
        gap: 10px;
    }

    p {
        font-size: 14px;
    }

    .trust-bar-inner {
        flex-direction: column;
        gap: 15px;
    }

    .trust-bar-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .trust-bar-number {
        font-size: 24px;
    }
}

/* ============================================
   BLOG LISTING & POST PAGES
   ============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
    border-top: 4px solid var(--secondary-color);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.blog-card-body {
    padding: 30px;
}

.blog-card-date {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.blog-card-body h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-body h3 a {
    color: var(--primary-color);
}

.blog-card-body h3 a:hover {
    color: var(--secondary-color);
}

.blog-card-body p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card .btn-secondary {
    padding: 8px 20px;
    font-size: 14px;
}

/* Blog Post Article */
.blog-article {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.blog-article-inner {
    max-width: 780px;
    margin: 0 auto;
}

.blog-meta {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.blog-meta span {
    color: var(--secondary-color);
    font-weight: 600;
}

.blog-article-inner h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.blog-article-inner h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
}

.blog-article-inner p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.blog-article-inner ul,
.blog-article-inner ol {
    margin-bottom: 18px;
    padding-left: 25px;
}

.blog-article-inner li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.blog-callout {
    background: var(--bg-light);
    padding: 25px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin: 30px 0;
}

.blog-callout p {
    margin-bottom: 0;
    font-weight: 500;
}

.blog-cta-box {
    background: linear-gradient(135deg, rgba(26, 86, 50, 0.05), rgba(212, 135, 44, 0.05));
    padding: 35px;
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
    margin-top: 40px;
    text-align: center;
}

.blog-cta-box h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.blog-cta-box p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-back-link {
    display: inline-block;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.blog-back-link:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-article-inner h2 {
        font-size: 24px;
    }

    .blog-cta-box {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .blog-card-body {
        padding: 20px;
    }

    .blog-card-body h3 {
        font-size: 19px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Print Styles */
@media print {
    .navbar,
    .cta-section,
    .footer {
        display: none;
    }
}
