/**
 * Main CSS Styles for TrueCare Handyman Business Website
 * 
 * This stylesheet provides comprehensive styling for a professional
 * handyman business website including responsive design, modern
 * typography, and professional color scheme.
 */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

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

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

/* Color Variables */
:root {
    --primary-color: #e67e22;      /* Orange - trust and energy */
    --secondary-color: #3498db;    /* Blue - reliability */
    --accent-color: #27ae60;       /* Green - success */
    --dark-color: #2c3e50;         /* Dark blue-gray */
    --light-color: #ecf0f1;        /* Light gray */
    --white: #ffffff;
    --gray: #7f8c8d;
    --danger: #e74c3c;
    --warning: #f39c12;
    --success: #27ae60;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--primary-color), #d35400);
    --hero-gradient: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    --card-gradient: linear-gradient(145deg, #ffffff, #f8f9fa);
}

/* Navigation Styles */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-brand i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.brand-logo {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    color: var(--dark-color);
}

.brand-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-area {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 400;
    margin-top: 0.1rem;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-item .nav-link {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-item .nav-link::after {
    display: none;
}

.cta-item .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
    color: var(--white);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border: none;
    background: none;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    transition: transform 0.1s ease;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: all 0.2s ease-in-out;
    border-radius: 2px;
    transform-origin: center;
}

/* Mobile Menu Active States - Faster transitions */
.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Focus state for accessibility */
.nav-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.nav-toggle:hover .bar {
    background: var(--primary-color);
}

/* Main Content */
.main-content {
    margin-top: 80px; /* Account for fixed header */
}

/* Hero Section */
.hero-section {
    background: var(--hero-gradient);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.floating-tools {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.tool-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.tool-icon.hammer { top: 20%; left: 10%; animation-delay: 0s; }
.tool-icon.wrench { top: 30%; right: 15%; animation-delay: 1s; }
.tool-icon.screwdriver { bottom: 30%; left: 20%; animation-delay: 2s; }
.tool-icon.drill { top: 60%; right: 25%; animation-delay: 3s; }
.tool-icon.saw { bottom: 20%; right: 10%; animation-delay: 4s; }

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    display: block;
}

.title-line-1 { color: var(--white); }
.title-line-2 { color: var(--primary-color); }
.title-line-3 { color: var(--white); }

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.service-area-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    margin-top: 0.5rem;
    text-align: left;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--primary-gradient);
    color: var(--white);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Service Icons Grid */
.service-icons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-icon {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.service-icon:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: block;
    position: relative;
    z-index: 2;
}

.service-icon span {
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-top: 0.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Trust Section */
.trust-section {
    background: var(--light-color);
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.trust-feature {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.feature-icon {
    background: var(--primary-gradient);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* Services Overview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-icon {
    background: var(--primary-gradient);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.learn-more:hover {
    gap: 1rem;
    color: var(--dark-color);
}

/* CTA Section */
.cta-section {
    background: var(--primary-gradient);
    color: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.cta-info {
    margin-top: 1rem;
}

.cta-info p {
    margin: 0.5rem 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-section {
    background: var(--light-color);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.testimonial {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 2rem;
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: var(--warning);
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.testimonial cite {
    color: var(--gray);
    font-weight: 600;
    font-style: normal;
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}



.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #bdc3c7;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
}

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

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Page Headers */
.page-header {
    background: var(--hero-gradient);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.header-badges,
.header-benefits,
.header-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.benefit,
.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.stat {
    flex-direction: column;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.2s ease-in-out;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
        border-top: 1px solid #e9ecef;
    }
    
    /* Hero section mobile adjustments */
    .service-area-text {
        font-size: 0.8rem;
        text-align: center;
        margin-top: 0.75rem;
    }
    
    .hero-cta {
        align-items: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        display: block;
        width: 100%;
        transition: all 0.15s ease;
        border-radius: 8px;
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }
    
    .nav-menu .nav-link:active {
        background-color: var(--primary-color);
        color: white;
        transform: scale(0.98);
    }
    
    .nav-menu .nav-link:hover {
        background-color: #f8f9fa;
        color: var(--primary-color);
    }

    .nav-menu .cta-item .nav-link {
        background: var(--primary-gradient);
        color: white;
        border-radius: 8px;
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }
    
    .nav-toggle {
        display: flex;
        padding: 0.5rem;
        z-index: 1001;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    .nav-brand a {
        font-size: 1.3rem;
    }
    
    .service-area {
        font-size: 0.7rem;
    }
    
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Service Icons Grid */
    .service-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-icon {
        padding: 1rem;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    /* Trust Features */
    .trust-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-feature {
        text-align: center;
        padding: 1.5rem;
    }
    
    /* CTA Section */
    .cta-content {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    /* Blog Posts */
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .service-icons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .nav-brand a {
        font-size: 1.1rem;
    }
    
    .service-area {
        font-size: 0.65rem;
    }
    
    /* Form adjustments */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkbox-group-inline {
        flex-direction: column;
        gap: 1rem;
    }
}
    
    .service-icons-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .service-icon {
        padding: 1.5rem;
    }
    
    /* CTA */
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    /* Testimonials */
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-bottom-content {
        text-align: center;
        flex-direction: column;
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .section-title { font-size: 2rem; }
    .page-title { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .trust-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Additional Styles for Forms and Components */

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.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(230, 126, 34, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--danger);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Enhanced Mobile Contact Form */
    .contact-form-container {
        padding: 1.5rem;
        margin: 0 1rem;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }
    
    .form-section {
        margin-bottom: 2.5rem;
        padding: 1.5rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 12px;
        border: 1px solid #e9ecef;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .form-section h3 {
        color: var(--primary-color);
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        text-align: center;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--primary-color);
        display: block;
    }
    
    .form-section h3 i {
        display: block;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }
    
    .form-group {
        margin-bottom: 2rem;
    }
    
    .form-group label {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--dark-color);
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .form-group input,
    .form-group select {
        padding: 1rem 1.25rem;
        font-size: 1.1rem;
        border: 2px solid #dee2e6;
        border-radius: 12px;
        background: white;
        transition: all 0.3s ease;
        min-height: 56px;
    }
    
    .form-group input:focus,
    .form-group select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.15);
        transform: translateY(-2px);
        background: #fffaf7;
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #6c757d;
        font-style: italic;
    }
    
    /* Enhanced textarea for mobile */
    .form-group textarea {
        padding: 1.25rem;
        font-size: 1.1rem;
        border: 2px solid #dee2e6;
        border-radius: 12px;
        background: white;
        transition: all 0.3s ease;
        min-height: 120px;
        resize: vertical;
        font-family: inherit;
        line-height: 1.6;
    }
    
    .form-group textarea:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.15);
        transform: translateY(-2px);
        background: #fffaf7;
        min-height: 150px;
    }
    
    /* Auto-expand textarea */
    .form-group textarea.auto-expand {
        resize: none;
        overflow: hidden;
    }
    
    /* Form progress indicator */
    .form-progress {
        position: sticky;
        top: 0;
        height: 4px;
        background: #e9ecef;
        border-radius: 2px;
        margin-bottom: 2rem;
        z-index: 10;
    }
    
    .form-progress-bar {
        height: 100%;
        background: var(--primary-gradient);
        border-radius: 2px;
        transition: width 0.3s ease;
        width: 0%;
    }
    
    /* Enhanced submit button */
    .submit-btn {
        width: 100%;
        padding: 1.25rem 2rem;
        font-size: 1.2rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 12px;
        background: var(--primary-gradient);
        color: white;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
        margin-top: 2rem;
    }
    
    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    }
    
    .submit-btn:active {
        transform: translateY(0);
    }
    
    .submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }
}

.form-section {
    margin-bottom: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid rgba(230, 126, 34, 0.2);
}

.form-section:last-of-type {
    margin-bottom: 1rem;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 1rem;
}

.form-section h3 i {
    color: var(--primary-color);
}

/* Radio and Checkbox Styles */
.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.radio-option:hover,
.checkbox-option:hover {
    background-color: rgba(230, 126, 34, 0.05);
}

/* Inline Checkbox Group */
.checkbox-group-inline {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.checkbox-option-simple {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-option-simple input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label-simple {
    font-size: 1rem;
    color: var(--dark-color);
    cursor: pointer;
    user-select: none;
}

/* Enhanced Mobile Checkbox Styles */
@media (max-width: 768px) {
    .checkbox-group-inline {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .checkbox-option-simple {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0.5rem;
        background: white;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        transition: all 0.3s ease;
        min-height: 80px;
        justify-content: center;
    }
    
    .checkbox-option-simple:hover,
    .checkbox-option-simple:focus-within {
        border-color: var(--primary-color);
        background: #fffaf7;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(230, 126, 34, 0.15);
    }
    
    .checkbox-option-simple input[type="checkbox"] {
        width: 24px;
        height: 24px;
        margin-bottom: 0.5rem;
        accent-color: var(--primary-color);
    }
    
    .checkbox-option-simple input[type="checkbox"]:checked + .checkbox-label-simple {
        color: var(--primary-color);
        font-weight: 700;
    }
    
    .checkbox-option-simple:has(input[type="checkbox"]:checked) {
        border-color: var(--primary-color);
        background: linear-gradient(135deg, #fffaf7 0%, #ffffff 100%);
        box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
    }
    
    .checkbox-label-simple {
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 0;
    }
}

.radio-custom,
.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-custom {
    border-radius: 4px;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    display: none;
}

.radio-option input[type="radio"]:checked + .radio-custom,
.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.radio-label i,
.checkbox-label i {
    color: var(--primary-color);
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

.alert-error i {
    color: #c33;
    font-size: 1.1rem;
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.4;
}

/* Submit Button */
.submit-btn {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-card h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

/* Blog Styles */
.blog-post-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.post-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.post-read-time {
    color: var(--gray);
    font-size: 0.875rem;
}

.post-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-excerpt {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--light-color);
    padding-top: 1rem;
}

.read-more-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: var(--dark-color);
}

/* Filter Buttons */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--light-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Success Page Styles */
.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 2rem;
}

.success-title {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-time {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Error Page Styles */
.error-icon {
    position: relative;
    margin-bottom: 2rem;
}

.error-icon i {
    font-size: 4rem;
    color: var(--primary-color);
}

.error-number {
    font-size: 6rem;
    font-weight: 900;
    color: var(--dark-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.error-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.search-suggestions h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.suggestion-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestion-links a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.suggestion-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Services Page Specific Styles */
.services-detailed {
    padding: 60px 0;
}

.service-category {
    margin-bottom: 5rem;
    padding: 3rem 0;
    border-bottom: 2px solid var(--light-color);
    position: relative;
}

.service-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.category-icon {
    background: var(--primary-gradient);
    color: var(--white);
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.2);
}

.category-info h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.category-description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 800px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.service-item h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
}

.service-item h3 i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.service-item p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-details {
    list-style: none;
    margin-top: 1.5rem;
}

.service-details li {
    padding: 0.75rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #f5f5f5;
}

.service-details li:last-child {
    border-bottom: none;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.1rem;
    top: 0.75rem;
}

/* Services CTA Section */
.services-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    margin-top: 4rem;
    border-top: 1px solid #dee2e6;
}

.services-cta .cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.services-cta .cta-text {
    text-align: left;
}

.services-cta h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cta-buttons .cta-button {
    min-width: 200px;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Blog Post Styles */
.post-header-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0 3rem 0;
    margin-top: 80px; /* Account for fixed header */
}

.post-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb .separator {
    margin: 0 0.5rem;
    color: var(--gray);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.post-category-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.post-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.safety-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.warning-icon {
    color: #e17055;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.post-content-section {
    padding: 3rem 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.table-of-contents {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Article Content Styles */
.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.article-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 0.5rem;
}

.article-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.article-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.2rem;
}

.article-content ol,
.article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Professional Tips Section */
.pro-tips-section {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.pro-tips-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.pro-tips-section h3 i {
    color: var(--primary-color);
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.tip-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.tip-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* When to Call Professional Section */
.call-pro-section {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.call-pro-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.call-pro-section h3 i {
    color: var(--primary-color);
}

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

.warning-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.warning-list li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 0;
}

.pro-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ffeaa7;
}

.pro-cta h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.pro-cta .cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.pro-cta .cta-button:hover {
    background: #d35400;
    transform: translateY(-2px);
}

/* Responsive adjustments for services */
@media (max-width: 968px) {
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .services-cta .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-cta .cta-text {
        text-align: center;
    }
    
    .services-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        align-items: center;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .post-title {
        font-size: 2rem;
    }
}
    
    .category-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .category-info h2 {
        font-size: 2rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .service-category {
        margin-bottom: 3rem;
        padding: 2rem 0;
    }
    
    .category-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .service-item h3 {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Floating Services Navigation */
.services-floating-nav {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 1rem;
    z-index: 1000;
    border: 1px solid #e9ecef;
    max-width: 200px;
}

.services-floating-nav .nav-header h4 {
    color: var(--dark-color);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-color);
    text-align: center;
}

.services-floating-nav .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-floating-nav .nav-links li {
    margin-bottom: 0.25rem;
}

.services-floating-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    color: var(--gray);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.services-floating-nav .nav-link:hover {
    background: rgba(230, 126, 34, 0.1);
    color: var(--primary-color);
    transform: translateX(3px);
}

.services-floating-nav .nav-link.active {
    background: var(--primary-color);
    color: white;
}

.services-floating-nav .nav-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.services-floating-nav .nav-link span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hide floating nav on mobile */
@media (max-width: 768px) {
    .services-floating-nav {
        display: none;
    }
}
