/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 8px 0;
    transition: all 0.3s ease;
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1001;
    height: 60px; /* Match the nav-container height */
}

.nav-logo a {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.nav-logo .logo {
    height: 130px;
    width: 130px;
    object-fit: cover;
    transform: scale(1.0);
    border-radius: 50%;
    top: 50px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-logo h2 {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: #333;
}

.nav-link:hover {
    color: #dc2626;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc2626;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.phone-btn {
    background: rgba(220, 38, 38, 0.9);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar.scrolled .phone-btn {
    background: #dc2626;
}

.phone-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.phone-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Disable any background scrolling effects */
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    /* Disable transforms and animations */
    transform: none !important;
    animation: none !important;
    transition: none !important;
    will-change: auto !important;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    /* Disable any scrolling effects */
    transform: none !important;
    animation: none !important;
    transition: none !important;
    will-change: auto !important;
}

.hero-image {
    /* Disable any scrolling effects on the image container */
    transform: none !important;
    animation: none !important;
    transition: none !important;
    will-change: auto !important;
    backface-visibility: visible !important;
    perspective: none !important;
}

.hero-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #dc2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-secondary:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-1px);
}

.hero-features {
    display: flex;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
}

.feature i {
    color: #dc2626;
    font-size: 1.2rem;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Disable all animations and transforms */
    transform: none !important;
    animation: none !important;
    transition: none !important;
    will-change: auto !important;
    backface-visibility: visible !important;
    perspective: none !important;
}

/* Global rules to disable hero scrolling effects */
.hero *,
.hero::before,
.hero::after,
.hero-container *,
.hero-container::before,
.hero-container::after,
.hero-image *,
.hero-image::before,
.hero-image::after {
    transform: none !important;
    animation: none !important;
    transition: none !important;
    will-change: auto !important;
    backface-visibility: visible !important;
    perspective: none !important;
    background-attachment: scroll !important;
}

/* Disable any CSS3D transforms on hero elements */
.hero,
.hero-container,
.hero-image,
.hero-content {
    transform-style: flat !important;
    transform-origin: initial !important;
    transform: translate3d(0, 0, 0) !important;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #666;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f8f8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-item i {
    font-size: 1.5rem;
    color: #dc2626;
    margin-top: 5px;
    min-width: 30px;
}

.detail-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 8px;
}

.detail-item p {
    color: #666;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: #dc2626;
    margin-top: 5px;
    min-width: 30px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 8px;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #dc2626;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

/* Contact Form */
.contact-form {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px; /* Prevent zoom on iOS by using 16px+ */
    transition: border-color 0.3s ease;
    font-family: inherit;
    /* Prevent mobile zoom issues */
    -webkit-appearance: none;
    appearance: none;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc2626;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

/* Emoji Bug CAPTCHA styling */
.captcha-group {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 30px 20px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.captcha-group h3 {
    color: #dc2626;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.emoji-bug-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
    position: relative;
}

.emoji-bug-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #dc2626, #b91c1c, #991b1b);
    border-radius: 18px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(1px);
}

.emoji-bug-display {
    font-size: 72px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: 4px solid #dc2626;
    border-radius: 20px;
    min-width: 140px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 32px rgba(220, 38, 38, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.emoji-bug-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.emoji-bug-display:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 
        0 12px 40px rgba(220, 38, 38, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.9);
    border-color: #b91c1c;
}

.emoji-bug-display:hover::before {
    left: 100%;
}

#refresh-emoji-bug {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 20px rgba(220, 38, 38, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

#refresh-emoji-bug::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

#refresh-emoji-bug:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: rotate(360deg) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(220, 38, 38, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

#refresh-emoji-bug:hover::before {
    width: 100%;
    height: 100%;
}

#refresh-emoji-bug:active {
    transform: rotate(360deg) scale(0.95);
}

/* Bug options styling */
.bug-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 25px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.bug-option {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: 3px solid transparent;
    padding: 16px 12px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 
        0 4px 15px rgba(220, 38, 38, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.bug-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.bug-option:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(220, 38, 38, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.bug-option:hover::before {
    left: 100%;
}

.bug-option:active {
    transform: translateY(-1px) scale(0.98);
}

.bug-option.selected {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    box-shadow: 
        0 0 0 4px rgba(5, 150, 105, 0.6) !important,
        0 8px 25px rgba(5, 150, 105, 0.4) !important,
        inset 0 1px 3px rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-4px) scale(1.05) !important;
    border: 3px solid #065f46 !important;
    color: white !important;
    font-weight: 800 !important;
    z-index: 10 !important;
    position: relative !important;
}

.bug-option.selected::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    left: 100%;
}

/* Selection pulse animation for mobile feedback */
@keyframes selectPulse {
    0% {
        transform: translateY(-2px) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.1);
    }
    100% {
        transform: translateY(-2px) scale(1.05);
    }
}

@media (max-width: 600px) {
    .captcha-group {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .captcha-group h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .emoji-bug-container {
        gap: 15px;
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .emoji-bug-display {
        font-size: 56px;
        min-width: 100px;
        min-height: 100px;
        padding: 20px;
    }
    
    #refresh-emoji-bug {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .bug-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 350px;
    }
    
    .bug-option {
        font-size: 12px;
        padding: 14px 10px;
        min-height: 50px;
        border: 2px solid transparent;
    }
    
    .bug-option.selected {
        background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
        box-shadow: 
            0 0 0 5px rgba(5, 150, 105, 0.6) !important,
            0 6px 20px rgba(5, 150, 105, 0.4) !important,
            inset 0 1px 3px rgba(255, 255, 255, 0.3) !important;
        transform: translateY(-3px) scale(1.05) !important;
        border: 3px solid #065f46 !important;
        color: white !important;
        font-weight: 800 !important;
        z-index: 10 !important;
        position: relative !important;
    }
    
    #captcha-answer {
        width: 240px !important;
        max-width: 240px !important;
        font-size: 16px !important;
        padding: 12px !important;
    }
    
    .captcha-group small {
        font-size: 13px;
        padding: 8px 12px;
        max-width: 320px;
        margin-top: 12px;
    }
}

#captcha-answer {
    width: 260px !important;
    max-width: 260px !important;
    margin: 15px auto !important;
    text-align: center;
    font-size: 18px !important;
    font-weight: 700;
    border: 3px solid #dc2626 !important;
    border-radius: 12px !important;
    padding: 15px !important;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    box-shadow: 
        0 4px 15px rgba(220, 38, 38, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
}

#captcha-answer:focus {
    border-color: #b91c1c !important;
    box-shadow: 
        0 0 0 4px rgba(220, 38, 38, 0.3),
        0 6px 20px rgba(220, 38, 38, 0.25),
        inset 0 1px 3px rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    outline: none;
}

#captcha-answer::placeholder {
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.captcha-group small {
    color: #6b7280;
    font-style: italic;
    margin-top: 10px;
    display: block;
    font-size: 14px;
    line-height: 1.5;
    background: rgba(220, 38, 38, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}

#captcha-answer:focus {
    border-color: #b91c1c !important;
    box-shadow: 
        0 0 0 4px rgba(220, 38, 38, 0.3),
        0 6px 20px rgba(220, 38, 38, 0.25),
        inset 0 1px 3px rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    outline: none;
}

#captcha-answer::placeholder {
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.captcha-group small {
    color: #6b7280;
    font-style: italic;
    margin-top: 10px;
    display: block;
    font-size: 14px;
    line-height: 1.5;
    background: rgba(220, 38, 38, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    font-weight: normal !important;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.form-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

.form-result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.form-result.success {
    background: #d1fae5;
    border: 2px solid #10b981;
    color: #065f46;
}

.form-result.error {
    background: #fee2e2;
    border: 2px solid #dc2626;
    color: #991b1b;
}

/* Snackbar Notifications */
.snackbar {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(0.8);
    background: #333;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10001 !important;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.snackbar.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1);
    pointer-events: auto;
}

.snackbar.success {
    background: #10b981;
    color: white;
}

.snackbar.error {
    background: #dc2626;
    color: white;
}

.snackbar .close-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    float: right;
    margin-left: 15px;
    margin-top: -2px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.snackbar .close-btn:hover {
    opacity: 1;
}

/* Mobile snackbar adjustments */
@media (max-width: 768px) {
    .snackbar {
        top: auto;
        bottom: 20px;
        left: 20px;
        right: 20px;
        min-width: auto;
        max-width: none;
        transform: translateY(100px);
    }
    
    .snackbar.show {
        transform: translateY(0);
    }
}

.btn-large {
    font-size: 18px;
    padding: 18px 30px;
    min-height: auto;
}

.checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-group .checkmark {
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.checkbox-group label:hover .checkmark {
    border-color: #dc2626;
    background-color: #fef2f2;
}

.checkbox-group input[type="checkbox"]:checked ~ .checkmark {
    background-color: #dc2626;
    border-color: #dc2626;
}

.checkbox-group .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-group input[type="checkbox"]:checked ~ .checkmark:after {
    display: block;
}

.checkbox-group input[type="checkbox"]:focus ~ .checkmark {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    outline: none;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Removed chat widget rules - now in chat-widget.css */
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Keep logo small on mobile */
    .nav-logo .logo {
        height: 60px !important;
        width: 60px !important;
        top: 0 !important;
        position: relative !important;
        transform: scale(1.0) !important;
    }
    
    /* Remove any background effects and fix moving images on mobile */
    .hero {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
        will-change: auto !important;
    }
    
    /* Stop hero image from moving/floating on mobile */
    .hero-image,
    .hero-image img {
        transform: none !important;
        animation: none !important;
        transition: none !important;
        will-change: auto !important;
        backface-visibility: visible !important;
        perspective: none !important;
    }
    
    /* Ensure hero container is also static */
    .hero-container {
        transform: none !important;
        animation: none !important;
        transition: none !important;
        will-change: auto !important;
    }
    
    /* Fix hero image movement on mobile */
    .hero-image img {
        transform: none !important;
        animation: none !important;
        position: static !important;
        transition: none !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu .nav-link {
        color: #333 !important;
    }

    .nav-menu .phone-btn {
        color: white !important;
        background: rgba(220, 38, 38, 0.9) !important;
    }

    .nav-menu .phone-btn:hover {
        color: white !important;
        background: #b91c1c !important;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    /* Keep logo small on smallest screens too */
    .nav-logo .logo {
        height: 50px !important;
        width: 50px !important;
        top: 0 !important;
        position: relative !important;
        transform: scale(1.0) !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .contact-form {
        padding: 25px;
    }

    .chat-window {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        bottom: auto;
        right: auto;
        max-height: none;
    }

    .chat-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

/* Mobile zoom prevention and touch optimization */
@media (max-width: 768px) {
    /* Specifically target truck.png and hero images to prevent animation */
    .hero-image img,
    img[src*="truck.png"],
    img[alt*="truck" i],
    img[alt*="service truck" i] {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        will-change: auto !important;
        backface-visibility: visible !important;
        perspective: none !important;
        transform-style: flat !important;
        position: static !important;
    }
    
    /* Prevent all inputs from causing zoom on mobile */
    input, textarea, select {
        font-size: 16px !important;
        -webkit-text-size-adjust: 100% !important;
        text-size-adjust: 100% !important;
        -webkit-appearance: none !important;
        appearance: none !important;
    }
    
    /* Prevent double-tap zoom on buttons */
    button, .btn, a[role="button"] {
        touch-action: manipulation !important;
        -webkit-touch-callout: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    /* Optimize touch targets */
    .btn {
        min-height: 44px !important; /* Apple's recommended minimum touch target */
        min-width: 44px !important;
    }
    
    /* Prevent scroll bounce when modals or overlays are open */
    body.no-scroll {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }
}

/* Global touch optimization */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Allow text selection only where needed */
input, textarea, [contenteditable] {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
    -webkit-touch-callout: default !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.navbar.scrolled .nav-logo .logo {
    height: 72px;
    width: 72px;
    object-fit: cover;
    transform: scale(1.0);
    border-radius: 50%;
    top: 0;
    position: relative;
}

/* Force truck image to be completely static on mobile */
@media (max-width: 768px) {
    img[src*="truck.png"] {
        transform: none !important;
        animation: none !important;
        transition: none !important;
        position: static !important;
        will-change: auto !important;
    }
}

/* Override any JavaScript transforms on mobile */
@media (max-width: 768px) {
    .hero-image img[style*="transform"] {
        transform: none !important;
    }
}

/* Body class to force static images on mobile */
body.mobile-static .hero-image img,
body.mobile-static img[src*="truck.png"] {
    transform: none !important;
    animation: none !important;
    transition: none !important;
    position: static !important;
    will-change: auto !important;
}
