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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #107c10 0%, #0f5f0f 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 124, 16, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #107c10;
    border: 2px solid #107c10;
}

.btn-secondary:hover {
    background: #107c10;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
}

/* Hero Phone */
.hero-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px 25px;
    background: linear-gradient(135deg, #107c10 0%, #0f5f0f 100%);
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(16, 124, 16, 0.3);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-phone i {
    color: #ffd700;
    font-size: 1.5rem;
}

.hero-phone a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.hero-phone a:hover {
    color: #ffd700;
}

.phone-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
}

.navbar {
    padding: 0.25rem 0;
}

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

.nav-phone-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 20px;
}

.nav-phone-desktop i {
    color: #107c10;
    font-size: 1.4rem;
}

.nav-phone-desktop a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.nav-phone-desktop a:hover {
    color: #107c10;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #107c10;
    max-width: 300px;
    overflow: hidden;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 2rem;
}

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

.nav-item {
    margin: 0 1rem;
}

.nav-or {
    margin: 0 0.5rem;
    display: none; /* Hidden on desktop */
}

.nav-or-text {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: lowercase;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #107c10;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #107c10;
    transition: width 0.3s ease;
}

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

.appointment-btn {
    background: linear-gradient(135deg, #107c10 0%, #0f5f0f 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 124, 16, 0.3);
}

.appointment-btn::after {
    display: none;
}

.remote-support-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.remote-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.remote-support-btn::after {
    display: none;
}

.call-button {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    display: none; /* Hidden on desktop */
}

.call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    color: white !important;
}

.call-button::after {
    display: none;
}

.text-button {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    border: none !important;
    text-decoration: none !important;
    display: none !important; /* Hidden on desktop */
}

.text-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3) !important;
    color: white !important;
}

.text-button::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: 20px 0 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.title-devices {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin: 10px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #107c10;
    font-weight: 500;
}

.feature i {
    font-size: 1.2rem;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, #107c10 0%, #0f5f0f 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    color: #ffd700;
    flex-shrink: 0;
}

.guarantee-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guarantee-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

.guarantee-text strong {
    color: #ffd700;
    font-weight: 700;
}

/* Guarantee Feature in Hero */
.guarantee-feature {
    background: linear-gradient(135deg, #107c10 0%, #0f5f0f 100%);
    color: white;
    border-radius: 10px;
    padding: 15px 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 124, 16, 0.3);
}

.guarantee-feature i {
    color: #ffd700;
    margin-right: 8px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Service Photo Section */
.service-photo-section {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.service-photo {
    max-width: 500px;
    width: 100%;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-image:hover {
    transform: scale(1.02);
}

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

.service-price {
    background: linear-gradient(135deg, #107c10 0%, #0f5f0f 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 10px 0 15px 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(16, 124, 16, 0.3);
}

.service-price small {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

.priority-service {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    position: relative;
    overflow: hidden;
}

.priority-service::before {
    content: "⚡ PRIORITY";
    position: absolute;
    top: 10px;
    right: -30px;
    background: #ffd700;
    color: #333;
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.priority-service .service-price {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #333;
    font-weight: 700;
}

.priority-service .service-icon i {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}



.service-card:active {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #107c10 0%, #0f5f0f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #107c10;
    font-weight: bold;
}

/* Service Details Toggle */
.details-toggle {
    background: linear-gradient(135deg, #107c10 0%, #0f5f0f 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px auto;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(16, 124, 16, 0.2);
    width: fit-content;
}

.details-toggle:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 124, 16, 0.4);
    background: linear-gradient(135deg, #0f5f0f 0%, #0a4a0a 100%);
}

.toggle-icon {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.service-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e1e5e9;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #107c10 0%, #0f5f0f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

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

.about-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #107c10;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    margin: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Appointment Section */
.appointment {
    padding: 80px 0;
    background: linear-gradient(135deg, #107c10 0%, #0f5f0f 100%);
    color: white;
}

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

.appointment-text h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.appointment-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.appointment-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.appointment-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.appointment-feature i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.appointment-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    cursor: pointer;
}

/* Make date input more clickable */
.form-group input[type="date"] {
    cursor: pointer;
    position: relative;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent;
    cursor: pointer;
}

.form-group input[type="date"]::-webkit-datetime-edit {
    padding: 0;
}

.form-group input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

/* Add visual feedback for date input */
.form-group input[type="date"]:hover {
    border-color: #107c10;
    background-color: #f8f9fa;
}

.form-group input[type="date"]:focus {
    border-color: #107c10;
    box-shadow: 0 0 0 3px rgba(16, 124, 16, 0.1);
}

/* Disable weekend days in date picker */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

/* Auto-selected date input styling */
#preferred-date {
    background-color: #fff;
    color: #333;
}

/* Logo styling */
.logo-image {
    height: 80px !important;
    width: auto !important;
    max-width: 80px !important;
    max-height: 80px !important;
    margin-right: 15px !important;
    vertical-align: middle;
    object-fit: contain;
    display: inline-block;
    flex-shrink: 0;
    font-size: 80px !important;
}

/* Hero badge styling */
.hero-badge {
    text-align: center;
    margin: 20px auto 30px auto;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    width: fit-content;
}

.badge-image {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
    display: block;
}

.badge-image:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* About section badge styling */
.about-badge {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-badge-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.badge-text {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Custom date picker styling to indicate restrictions */
.form-group input[type="date"] {
    position: relative;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #107c10;
}

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

/* Priority Service Slider Styling */
.priority-option {
    margin-top: 1.5rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.priority-slider-container {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 3px solid #ffc107;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.priority-slider-container::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;
}

.priority-slider-container:hover::before {
    left: 100%;
}

.priority-slider-container:hover {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-color: #f39c12;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

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

.priority-header h4 {
    color: #000000 !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff !important;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 2px solid #ffc107 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.priority-header h4 i {
    color: #f39c12;
    font-size: 1.4rem;
}

.price-tag {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(243, 156, 18, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.priority-description {
    color: #000000 !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    background: #ffffff !important;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #ffc107 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.priority-slider {
    display: none !important;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.slider-label {
    display: block !important;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%) !important;
    border: 2px solid #adb5bd !important;
    border-radius: 50px !important;
    height: 60px !important;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 100% !important;
    min-width: 200px !important;
}

.slider-label:hover {
    background: linear-gradient(135deg, #dee2e6 0%, #ced4da 100%);
    border-color: #6c757d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-text {
    position: absolute !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #000000 !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease;
    z-index: 2 !important;
    background: #ffffff !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    border: 1px solid #ffc107 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    visibility: visible !important;
}

.slider-button {
    position: absolute !important;
    right: 5px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #ffc107 0%, #f39c12 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3) !important;
    visibility: visible !important;
}

.slider-button i {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* Checked state */
.priority-slider:checked + .slider-label {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: #28a745;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

.priority-slider:checked + .slider-label .slider-text {
    color: white;
    left: 15px;
    font-weight: 700;
}


.priority-slider:checked + .slider-label .slider-button {
    background: white;
    right: 5px;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.priority-slider:checked + .slider-label .slider-button i {
    color: #28a745;
    transform: rotate(180deg);
}

.priority-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000000 !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    background: #ffffff !important;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #ffc107 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.benefit i {
    color: #f39c12;
    font-size: 1rem;
}

/* Checked state for benefits */
.priority-option:has(.priority-slider:checked) .priority-slider-container {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: #28a745;
}

.priority-option:has(.priority-slider:checked) .priority-header h4 {
    color: #155724;
}

.priority-option:has(.priority-slider:checked) .priority-header h4 i {
    color: #28a745;
}

.priority-option:has(.priority-slider:checked) .priority-description {
    color: #0c5460;
}

.priority-option:has(.priority-slider:checked) .benefit {
    color: #0c5460;
}

.priority-option:has(.priority-slider:checked) .benefit i {
    color: #28a745;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: white;
}

.reviews-content {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.reviews-header h3 {
    color: #107c10;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.refresh-btn {
    background: linear-gradient(135deg, #107c10 0%, #0f5f0f 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 124, 16, 0.3);
}

.refresh-btn:hover {
    background: linear-gradient(135deg, #0f5f0f 0%, #0a4a0a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 124, 16, 0.4);
}

.refresh-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(16, 124, 16, 0.3);
}

.refresh-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.refresh-btn:hover i {
    transform: rotate(180deg);
}

.refresh-btn span {
    font-weight: 500;
}

.google-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .google-reviews {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .google-reviews {
        grid-template-columns: 1fr;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .guarantee-icon {
        font-size: 3rem;
    }
    
    .guarantee-text h2 {
        font-size: 2rem;
    }
    
    .guarantee-text p {
        font-size: 1.1rem;
    }
    
    .hero-phone {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 12px 20px;
        margin: 15px 0;
    }
    
    .hero-phone a {
        font-size: 1.2rem;
    }
    
    .phone-text {
        font-size: 0.9rem;
    }
    
    .call-button {
        display: inline-block !important; /* Show on mobile */
    }
    
    .text-button {
        display: inline-block !important; /* Show on mobile */
    }
}

.review-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #107c10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.review-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.9rem;
    color: #999;
}

.loading-reviews {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px;
}

.review-cta {
    background: linear-gradient(135deg, #107c10 0%, #0f5f0f 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.review-cta h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.review-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    display: block;
    visibility: visible;
}

.review-cta .btn {
    background: white;
    color: #107c10;
    border: none;
}

.review-cta .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #107c10;
}

.faq-item h3 {
    color: #107c10;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #107c10 0%, #0f5f0f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.contact-photo {
    text-align: center;
    margin: 2rem 0;
}

.contact-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-image:hover {
    transform: scale(1.02);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.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: #107c10;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #107c10;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    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: #107c10;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-item {
        margin: 1rem 0;
    }
    
    .nav-or {
        margin: 0.5rem 0;
        display: block; /* Show on mobile */
    }
    
    .nav-or-text {
        color: #999;
        font-size: 0.8rem;
    }
    
    .nav-phone-desktop {
        display: none; /* Hidden on mobile */
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-devices {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content,
    .appointment-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .title-devices {
        font-size: 0.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card,
    .feature-item {
        padding: 1.5rem;
    }
}

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

.service-card,
.feature-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #107c10;
    outline-offset: 2px;
}

/* Image hover dissolve effect */
.image-hover-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: opacity 0.5s ease-in-out;
    display: block;
}

.hover-image {
    position: absolute;
    opacity: 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: opacity 0.5s ease-in-out;
    z-index: 2;
    height: auto;
}

/* Make hover image match main image dimensions exactly */
.image-hover-container:hover .main-image {
    opacity: 0;
}

.image-hover-container:hover .hover-image {
    opacity: 1;
}

/* Hours & Location Section */
.hours-location-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0;
    margin: 0;
}

.hours-location-content {
    display: flex;
    justify-content: space-around;
    align-items: start;
    gap: 40px;
    flex-wrap: wrap;
}

.hours-info,
.location-info {
    flex: 1;
    min-width: 250px;
}

.hours-info h3,
.location-info h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hours-info h3 i,
.location-info h3 i {
    color: #107c10;
    font-size: 1.2rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 3px solid #107c10;
}

.hours-day .day {
    font-weight: 600;
    color: #2c3e50;
}

.hours-day .time {
    color: #107c10;
    font-weight: 500;
}

.location-info .address {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
}

.location-info .phone {
    font-size: 1rem;
    color: #107c10;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.directions-btn {
    background: linear-gradient(135deg, #107c10 0%, #0f5f0f 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(16, 124, 16, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 124, 16, 0.4);
    background: linear-gradient(135deg, #0f5f0f 0%, #0a4a0a 100%);
}

/* Map header styling */
.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 10px;
}

.map-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-header h3 i {
    color: #107c10;
    font-size: 1.2rem;
}

/* Mobile directions button styling */
.nav-link.directions-btn {
    background: linear-gradient(135deg, #107c10 0%, #0f5f0f 100%);
    color: white !important;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(16, 124, 16, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-link.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 124, 16, 0.4);
    background: linear-gradient(135deg, #0f5f0f 0%, #0a4a0a 100%);
    color: white !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hours-location-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .hours-info,
    .location-info {
        min-width: auto;
    }
    
    .hours-day {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .hours-info h3,
    .location-info h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .map-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .map-header h3 {
        font-size: 1.2rem;
    }
}

/* Footer link styling */
.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    color: #107c10;
    border-bottom: 1px solid #107c10;
    text-decoration: none;
}

.footer-hours {
    color: white;
    font-weight: 500;
}

/* Make all footer contact items consistent */
.footer-section p {
    color: white;
    font-weight: 500;
}

.footer-section p i {
    color: #107c10;
    margin-right: 8px;
}

/* Mobile appointment button styling */
.mobile-appointment-btn {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(108, 117, 125, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    text-decoration: none;
}

.mobile-appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    color: white;
    text-decoration: none;
}

/* Hide Remote Support button on mobile only */
@media (max-width: 768px) {
    .nav-item .remote-support-btn {
        display: none;
    }
    
    .mobile-appointment-btn {
        display: flex;
    }
}

/* Hide mobile appointment button on desktop */
@media (min-width: 769px) {
    .mobile-appointment-btn {
        display: none;
    }
}

