/* Southern Surplus Buyers - Exact Homepage Clone Styles */
/* 
   EXACT COLOR PALETTE FROM ORIGINAL SITE:
   - Dark Background: #1c242b (rgb(28, 36, 43))
   - Orange/CTA: #ff9902 (rgb(255, 153, 2))
   - Header Button Gray: #dcdfe2 (rgb(220, 223, 226))
   - White: #ffffff
   - Light Gray Section: #dcdfe2
*/

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

:root {
    --dark-bg: #1c242b;
    --accent-orange: #ff9902;
    --header-btn-gray: #dcdfe2;
    --white: #ffffff;
    --light-gray: #dcdfe2;
    --text-dark: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: var(--dark-bg);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 65px;
    width: auto;
}

.header-cta {
    display: inline-block;
    background: var(--header-btn-gray);
    color: var(--dark-bg);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #cdd0d3;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-orange);
}

.nav-link.active {
    background: var(--accent-orange);
    color: #fff;
}

/* Header scrolled state */
.header.scrolled {
    background: rgba(28, 36, 43, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.header.scrolled .logo img {
    height: 55px;
    transition: height 0.3s ease;
}

/* Header for specialized pages */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: var(--dark-bg);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    height: 60px;
    width: auto;
}

.btn-quote {
    display: inline-block;
    background: var(--header-btn-gray);
    color: var(--dark-bg);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background: #cdd0d3;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Exact gradient from original: rgba(28, 36, 43, 0.48) to rgb(28, 36, 43) */
    background: linear-gradient(rgba(28, 36, 43, 0.48) 0%, rgb(28, 36, 43) 100%),
                url('hero-bg.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
}

.hero-content {
    max-width: 800px;
    color: var(--white);
}

.hero-pretitle {
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 30px;
}

.hero-cta {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #e88a00;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--dark-bg);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    color: var(--white);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--white);
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.step-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #e88a00;
}

/* ============================================
   WHAT WE BUY SECTION
   ============================================ */
.what-we-buy {
    padding: 80px 0;
    background: var(--dark-bg);
}

.what-we-buy .section-header {
    margin-bottom: 40px;
}

.what-we-buy .section-title {
    color: var(--white);
}

.what-we-buy .section-subtitle {
    color: var(--accent-orange);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.service-icon {
    color: var(--accent-orange);
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.and-more {
    text-align: center;
    margin-top: 30px;
}

.and-more span {
    color: var(--accent-orange);
    font-size: 24px;
    font-weight: 700;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-us {
    padding: 80px 0;
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   TEXAS CITIES SECTION
   ============================================ */
.texas-section {
    padding: 80px 0;
    background: var(--dark-bg);
    text-align: center;
}

.texas-section .section-title {
    color: var(--white);
}

.texas-section .section-subtitle {
    color: var(--accent-orange);
    margin-bottom: 40px;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.city-pill {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.city-pill:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 80px 0;
    background: var(--accent-orange);
    text-align: center;
}

.cta-banner h2 {
    font-size: 36px;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 18px;
    color: var(--dark-bg);
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--dark-bg);
}

.cta-phone-icon {
    width: 50px;
    height: 50px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
}

.cta-phone-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-bg);
}

.cta-details {
    display: flex;
    gap: 40px;
    color: var(--dark-bg);
    font-size: 14px;
    margin-top: 20px;
}

.cta-details span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-bg);
    padding: 40px 0;
    text-align: center;
}

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

.footer-copyright {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-credit {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

.footer-credit a {
    color: var(--accent-orange);
}

/* ============================================
   INTERIOR PAGE STYLES
   ============================================ */

/* Hero Variations */
.hero-carbide {
    background: linear-gradient(rgba(28, 36, 43, 0.75) 0%, rgb(28, 36, 43) 100%),
                url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1920') center/cover no-repeat;
    min-height: 80vh;
}

.hero-xray {
    background: linear-gradient(rgba(28, 36, 43, 0.70) 0%, rgb(28, 36, 43) 100%),
                url('https://images.unsplash.com/photo-1631653355789-3e32dcce22db?w=1920') center/cover no-repeat;
    min-height: 80vh;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--dark-bg);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-list a {
    color: var(--accent-orange);
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb-list span {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* Hero Tag */
.hero-tag {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Primary Button */
.btn-primary {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e88a00;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--light-gray);
}

/* Card Grids */
.carbide-types,
.film-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.carbide-type-card,
.film-type-card {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.carbide-type-card:hover,
.film-type-card:hover {
    transform: translateY(-5px);
}

.carbide-type-card .icon,
.film-type-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.carbide-type-card h3,
.film-type-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 20px;
}

.carbide-type-card p,
.film-type-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* Price Callout */
.price-callout {
    background: linear-gradient(135deg, var(--accent-orange), #ff6600);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
}

.price-callout h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.price-callout p {
    font-size: 18px;
    opacity: 0.95;
}

/* Process Section */
.process-section {
    background: var(--light-gray);
    padding: 80px 0;
}

/* Why Section (Carbide/Xray) */
.why-carbide {
    background: var(--dark-bg);
    padding: 80px 0;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-item .icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 153, 2, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 22px;
}

.benefit-item h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 18px;
}

.benefit-item p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* CTA Sections */
.cta-carbide,
.cta-xray {
    background: linear-gradient(135deg, var(--accent-orange), #ff6600);
    padding: 80px 0;
    text-align: center;
}

.cta-carbide h2,
.cta-xray h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-carbide p,
.cta-xray p {
    color: rgba(255,255,255,0.95);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-carbide .btn-primary,
.cta-xray .btn-primary {
    background: var(--dark-bg);
    color: white;
}

.cta-carbide .btn-primary:hover,
.cta-xray .btn-primary:hover {
    background: #000;
}

/* HIPAA Banner */
.hipaa-banner {
    background: linear-gradient(135deg, #1a5f2a, #2d8a3e);
    color: white;
    padding: 30px 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

.hipaa-banner .icon {
    font-size: 48px;
    flex-shrink: 0;
}

.hipaa-banner h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.hipaa-banner p {
    opacity: 0.95;
    line-height: 1.6;
}

/* Silver Recovery Section */
.silver-section {
    background: linear-gradient(135deg, #2a3a4a, #1c242b);
    padding: 80px 0;
}

.silver-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.silver-text h2 {
    color: white;
    margin-bottom: 20px;
}

.silver-text p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.silver-features {
    margin-top: 30px;
}

.silver-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.silver-feature .icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 153, 2, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
}

.silver-feature span {
    color: white;
}

.silver-image {
    background: linear-gradient(135deg, var(--accent-orange), #ff6600);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.silver-image .big-number {
    font-size: 72px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.silver-image .label {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-top: 10px;
}

/* Weight Guide */
.weight-guide {
    background: var(--dark-bg);
    padding: 80px 0;
}

.weight-guide .section-header h2 {
    color: var(--accent-orange);
}

.weight-guide .section-header p {
    color: var(--accent-orange);
}

.weight-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.weight-table th,
.weight-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.weight-table th {
    background: rgba(255, 153, 2, 0.2);
    color: var(--accent-orange);
    font-weight: 600;
}

.weight-table td {
    color: rgba(255,255,255,0.8);
}

.weight-table tr:hover td {
    background: rgba(255,255,255,0.05);
}

.pickup-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Who We Serve */
.who-serve {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.serve-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.serve-card .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 153, 2, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 22px;
    flex-shrink: 0;
}

.serve-card h4 {
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.serve-card p {
    color: #666;
    font-size: 14px;
}

/* Cities Section */
.cities-section {
    padding: 80px 0;
    background: var(--dark-bg);
    text-align: center;
}

.cities-section .section-header h2 {
    color: var(--accent-orange);
}

.cities-section .section-header p {
    color: var(--accent-orange);
}

.star-text {
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 153, 2, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
}

.info-item strong {
    display: block;
    color: var(--dark-bg);
    margin-bottom: 3px;
}

.info-item a,
.info-item span {
    color: #666;
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #e88a00;
}

/* Light Background Utility */
.light-bg {
    background: var(--light-gray);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .header-nav.active {
        transform: translateX(0);
    }
    
    .header-nav .nav-link {
        font-size: 24px;
        padding: 15px 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-banner h2 {
        font-size: 28px;
    }
    
    .cta-phone-number {
        font-size: 22px;
    }
    
    .cta-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .header-cta {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Interior Page Responsive */
@media (max-width: 768px) {
    .hipaa-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .silver-content {
        grid-template-columns: 1fr;
    }
    
    .silver-image {
        order: -1;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-carbide,
    .hero-xray {
        min-height: 70vh;
    }
}