/* Laptop & Computer Repairs Page Styles */

/* Prevent horizontal scrolling and ensure proper box model */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

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

.repairs-hero,
.repair-services,
.mobile-service,
.supported-brands,
.repair-contact,
.service-areas-section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Hero Section */
.repairs-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.repairs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/services/repair-hero-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.repairs-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.repairs-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.repairs-hero .hero-highlight {
    color: #E31B48;
}

.repairs-hero .hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.repairs-hero .hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.repairs-hero .stat-item {
    text-align: center;
}

.repairs-hero .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E31B48;
    margin-bottom: 8px;
}

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

.repairs-hero .hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.repairs-hero .btn {
    padding: 16px 32px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.repairs-hero .btn-primary,
.repairs-hero a.btn-primary,
a.btn.btn-primary {
    background: #E31B48 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(227, 27, 72, 0.4) !important;
    border: 2px solid #E31B48 !important;
}

.repairs-hero .btn-primary:hover,
.repairs-hero a.btn-primary:hover,
a.btn.btn-primary:hover {
    background: #c1164a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 27, 72, 0.5) !important;
    border-color: #c1164a !important;
}

.repairs-hero .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.repairs-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.repairs-hero .btn svg {
    width: 18px;
    height: 18px;
}

/* Hero Visual */
.repairs-hero .hero-visual {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.repair-showcase {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.device-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 500px;
    width: 100%;
}

.device-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
}

.device-item.laptop {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.device-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.device-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.device-overlay h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.device-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Services Section */
.repair-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.repair-services .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.repair-services .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.repair-services .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-category {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.category-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #E31B48, #c1164a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    position: relative;
    padding-left: 20px;
}

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

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E31B48;
    font-weight: 600;
}

/* Mobile Service Section */
.mobile-service {
    padding: 100px 0;
    background: white;
}

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

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(227, 27, 72, 0.1);
    color: #E31B48;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.mobile-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.mobile-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.mobile-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E31B48, #c1164a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
    stroke: white;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-content p {
    color: #666;
    font-size: 1rem;
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-hours {
    color: #666;
    font-size: 0.9rem;
}

.technician-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.tech-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    color: #1a1a1a;
}

/* Supported Brands Section */
.supported-brands {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.supported-brands .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.supported-brands .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.supported-brands .section-header p {
    font-size: 0.95rem;
    color: #666;
}

.brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.brand-category h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #E31B48;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.brand-category h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #E31B48, #c1164a);
    border-radius: 1px;
}

.brand-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}

.brand-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 12px 8px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(227, 27, 72, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 27, 72, 0.1), transparent);
    transition: left 0.5s ease;
}

.brand-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 27, 72, 0.15);
    color: #E31B48;
    border-color: #E31B48;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
}

.brand-item:hover::before {
    left: 100%;
}

/* Contact Section */
.repair-contact {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.contact-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
}

/* Force two columns on screens larger than mobile */
@media (min-width: 769px) {
    .contact-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 80px !important;
    }
}

/* Force single column on mobile */
@media (max-width: 768px) {
    .contact-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .repair-contact {
        padding: 60px 0 !important;
    }
}

/* Contact Form Section - Professional Design */
.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-info-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.service-features,
.quick-pricing {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Form Header with Badge */
.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.form-badge svg {
    width: 16px;
    height: 16px;
}

.form-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    line-height: 1.2;
}

.form-header p {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 35px;
    color: white;
    line-height: 1.6;
}

/* Form Sections */
.form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 25px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(227, 27, 72, 0.3);
}

.section-title svg {
    width: 20px;
    height: 20px;
}

/* Enhanced Form Fields */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(227, 27, 72, 0.1);
}

.form-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.form-group input:focus + .form-focus-line,
.form-group select:focus + .form-focus-line,
.form-group textarea:focus + .form-focus-line {
    width: 100%;
}

/* Character Counter */
.character-count {
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Form Actions */
.form-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.form-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(46, 125, 50, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(46, 125, 50, 0.3);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-notice svg {
    width: 18px;
    height: 18px;
    color: #4CAF50;
    flex-shrink: 0;
}

/* Enhanced Submit Button */
.submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(227, 27, 72, 0.3);
}

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

.btn-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon svg {
    transform: translateX(3px);
}

.btn-loading svg {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Contact Info Section - Compact Design */
.contact-info-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Info Header with Badge */
.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(46, 125, 50, 0.15);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4CAF50;
    margin-bottom: 25px;
    border: 1px solid rgba(46, 125, 50, 0.3);
}

.info-badge svg {
    width: 18px;
    height: 18px;
}

.info-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    line-height: 1.2;
}

.info-header p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 25px;
    color: white;
    line-height: 1.5;
}

/* Quick Contact */
.quick-contact {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.contact-details .contact-link {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details .contact-link:hover {
    color: var(--secondary-color);
}

/* Service Hours */
.service-hours {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-hours h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    text-align: center;
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.hours span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.hours span:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

/* Features and Contact Sections */
.features-section,
.contact-section {
    margin-bottom: 40px;
}

.features-section:last-child,
.contact-section:last-child {
    margin-bottom: 0;
}

/* Enhanced Contact Cards */
.contact-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-card:hover::before {
    opacity: 1;
}

/* Feature Cards */
.feature-card .card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Location Cards */
.location-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2196F3, #21CBF3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Emergency Card */
.emergency-card .card-icon.emergency {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF5722, #FF9800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 87, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.card-content h3,
.card-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Enhanced Contact Links */
.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(227, 27, 72, 0.1);
    border: 1px solid rgba(227, 27, 72, 0.2);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-link:hover {
    background: rgba(227, 27, 72, 0.2);
    color: white;
    transform: translateX(5px);
}

.contact-link.emergency {
    background: rgba(255, 87, 34, 0.15);
    border-color: rgba(255, 87, 34, 0.3);
    color: #FF5722;
}

.contact-link.emergency:hover {
    background: rgba(255, 87, 34, 0.25);
    color: white;
}

.contact-link.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.contact-link.whatsapp:hover {
    background: rgba(37, 211, 102, 0.25);
    color: white;
}

/* Business Hours */
.business-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.day {
    color: white;
    font-weight: 500;
}

.time {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.emergency-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(227, 27, 72, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(227, 27, 72, 0.3);
}

.emergency-notice svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.emergency-notice span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}



.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #E31B48, #c1164a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.method-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.method-content a {
    color: #E31B48;
    text-decoration: none;
    font-weight: 500;
}

.method-content a:hover {
    color: #c1164a;
}

/* Office Locations */
.office-locations {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.office-locations h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.locations-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(227, 27, 72, 0.2);
    transition: all 0.3s ease;
}

.location-item:hover {
    background: rgba(227, 27, 72, 0.1);
    border-color: rgba(227, 27, 72, 0.3);
}

.location-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E31B48, #c1164a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.location-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: white;
}

.location-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 4px;
    line-height: 1.4;
}

.location-phone a {
    color: #E31B48;
    text-decoration: none;
    font-weight: 500;
}

.location-phone a:hover {
    color: #c1164a;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.repair-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E31B48;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

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

.submit-btn {
    background: linear-gradient(135deg, #E31B48, #c1164a);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 27, 72, 0.4);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

/* Service Features */
.service-features {
    margin-top: 50px;
    padding: 30px;
    border: 2px solid rgba(227, 27, 72, 0.5);
    background: rgba(227, 27, 72, 0.1);
    border-radius: 12px;
}

.service-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
    text-align: center;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(227, 27, 72, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.feature-item:hover {
    background: rgba(227, 27, 72, 0.1);
    border-color: rgba(227, 27, 72, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E31B48, #c1164a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Quick Pricing */
.quick-pricing {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(227, 27, 72, 0.5);
}

.quick-pricing h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    word-break: break-word;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row span:first-child {
    flex: 1;
    padding-right: 10px;
}

.pricing-row .price {
    font-weight: 600;
    color: #E31B48;
    white-space: nowrap;
}

.pricing-row span:first-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.pricing-row .price {
    color: #E31B48;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.4;
    margin-top: 16px;
}



/* Footer */
.footer {
    background: 
        linear-gradient(135deg, rgba(10, 15, 26, 0.85) 0%, rgba(26, 31, 46, 0.85) 50%, rgba(10, 15, 26, 0.85) 100%),
        url('../images/bg.png');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #E31B48;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #E31B48;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #E31B48;
    transform: translateY(-2px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: white;
}

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

.contact-item svg {
    width: 18px;
    height: 18px;
    fill: #E31B48;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.contact-item a:hover {
    color: #E31B48;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #E31B48;
}

/* Service Areas Section Styles */
.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
}

.location-card a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.location-card a:hover {
    color: #c1164a !important;
}

/* Responsive Design */

/* Ensure container has proper padding on mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .repairs-hero .hero-content {
        gap: 40px;
    }
    
    .device-grid {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .repairs-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .repairs-hero .hero-text {
        order: 1;
    }
    
    .repairs-hero .hero-visual {
        order: 2;
    }
    
    .mobile-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    /* Contact Section Mobile Styles */
    .contact-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .contact-form-section {
        padding: 30px 20px;
        order: 1;
    }
    
    .contact-info-section {
        order: 2;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .form-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    .form-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .service-features,
    .quick-pricing {
        padding: 25px 20px !important;
        margin: 20px 0 !important;
    }
    
    .service-features h3,
    .quick-pricing h3 {
        font-size: 1.3rem !important;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-text h4 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    .pricing-row {
        font-size: 0.95rem;
        padding: 12px 0;
    }
    
    .pricing-note {
        font-size: 0.8rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    /* Make device grid images smaller on mobile */
    .device-grid {
        max-width: 100%;
        gap: 15px;
    }
    
    .device-item {
        min-height: 150px !important;
    }
    
    .device-item.laptop {
        min-height: 180px !important;
    }
    
    .device-overlay {
        padding: 15px;
    }
    
    .device-overlay h3 {
        font-size: 0.95rem;
    }
    
    .device-overlay p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .repairs-hero {
        padding: 100px 0 60px;
    }
    
    .repairs-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .repairs-hero .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .repairs-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .device-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .device-item.laptop {
        grid-column: span 1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-category {
        padding: 30px 20px;
    }
    
    .category-header {
        flex-direction: row;
        text-align: left;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .category-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .category-header h3 {
        font-size: 1.3rem;
    }
    
    .mobile-service,
    .repair-services,
    .supported-brands,
    .repair-contact {
        padding: 60px 0;
    }
    
    .mobile-text h2,
    .repair-services .section-header h2,
    .supported-brands .section-header h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .repair-services .section-header p,
    .supported-brands .section-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .brand-list {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }
    
    .brand-item {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    /* Service Areas Mobile Styles */
    .service-areas-section {
        padding: 60px 0 !important;
    }
    
    .service-areas-section .container {
        padding: 0 15px;
    }
    
    .service-areas-section .section-header h2 {
        font-size: 28px !important;
        padding: 0 10px;
    }
    
    .service-areas-section .section-header p {
        font-size: 16px !important;
        padding: 0 15px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0;
    }
    
    .location-card {
        padding: 25px !important;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .location-card h3 {
        font-size: 20px !important;
    }
    
    .location-card p {
        font-size: 15px !important;
    }
    
    .service-areas-section .cta-banner {
        padding: 30px 20px !important;
        margin: 0;
    }
    
    .service-areas-section .cta-banner h3 {
        font-size: 24px !important;
    }
    
    .service-areas-section .cta-banner p {
        font-size: 16px !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    .repairs-hero {
        padding: 80px 0 50px;
    }
    
    .repairs-hero .hero-text h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .repairs-hero .hero-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .repairs-hero .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .repairs-hero .stat-number {
        font-size: 1.5rem;
    }
    
    .repairs-hero .stat-label {
        font-size: 0.85rem;
    }
    
    .repairs-hero .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .repairs-hero .hero-cta {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }
    
    .device-grid {
        gap: 10px;
    }
    
    .device-item {
        min-height: 120px !important;
    }
    
    .device-item.laptop {
        min-height: 150px !important;
    }
    
    .device-overlay {
        padding: 12px;
    }
    
    .device-overlay h3 {
        font-size: 0.85rem;
    }
    
    .device-overlay p {
        font-size: 0.75rem;
    }
    
    .repair-services,
    .mobile-service,
    .supported-brands,
    .repair-contact {
        padding: 50px 0;
    }
    
    .repair-services .section-header h2,
    .supported-brands .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .repair-services .section-header p,
    .supported-brands .section-header p {
        font-size: 0.9rem;
    }
    
    .service-category {
        padding: 25px 15px;
    }
    
    .category-header h3 {
        font-size: 1.1rem;
    }
    
    .service-list li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .contact-methods {
        gap: 20px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 15px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .contact-form-section {
        padding: 25px 15px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .form-header p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .form-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 1rem;
        gap: 8px;
    }
    
    .section-title svg {
        width: 18px;
        height: 18px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 12px;
    }
    
    .service-features,
    .quick-pricing {
        padding: 20px 15px !important;
        margin: 15px 0 !important;
    }
    
    .service-features h3,
    .quick-pricing h3 {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }
    
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-text h4 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .feature-text p {
        font-size: 0.85rem;
    }
    
    .pricing-items {
        gap: 8px;
    }
    
    .pricing-row {
        font-size: 0.9rem;
        padding: 10px 0;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .pricing-row .price {
        font-size: 0.95rem;
    }
    
    .pricing-note {
        font-size: 0.75rem;
        margin-top: 12px;
        line-height: 1.4;
    }
    
    .btn-submit {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .btn.btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    /* Contact items */
    .contact-item {
        padding: 12px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
    }
    
    .contact-details .contact-link {
        font-size: 0.85rem;
    }
    
    /* Service Areas Mobile Styles - Small Screens */
    .service-areas-section {
        padding: 50px 0 !important;
    }
    
    .service-areas-section .container {
        padding: 0 10px;
    }
    
    .service-areas-section .section-header {
        margin-bottom: 30px !important;
    }
    
    .service-areas-section .section-header h2 {
        font-size: 22px !important;
        line-height: 1.3;
    }
    
    .service-areas-section .section-header p {
        font-size: 14px !important;
    }
    
    .locations-grid {
        gap: 15px !important;
        margin-bottom: 30px !important;
    }
    
    .location-card {
        padding: 20px !important;
    }
    
    .location-card div:first-child {
        width: 45px !important;
        height: 45px !important;
        margin-bottom: 15px !important;
    }
    
    .location-card h3 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    
    .location-card p {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
    
    .location-card a {
        font-size: 14px !important;
    }
    
    .service-areas-section .cta-banner {
        padding: 25px 15px !important;
    }
    
    .service-areas-section .cta-banner h3 {
        font-size: 20px !important;
        line-height: 1.3;
        margin-bottom: 12px !important;
    }
    
    .service-areas-section .cta-banner p {
        font-size: 14px !important;
        margin-bottom: 18px !important;
    }
    
    .service-areas-section .btn {
        padding: 12px 25px !important;
        font-size: 14px !important;
        width: 100%;
    }
}

/* Force red button color - highest priority */
.btn-primary,
a.btn-primary,
.btn.btn-primary,
.repairs-hero .btn-primary,
.repairs-hero a.btn-primary {
    background: #E31B48 !important;
    color: white !important;
    border: 2px solid #E31B48 !important;
}

.btn-primary:hover,
a.btn-primary:hover,
.btn.btn-primary:hover {
    background: #c1164a !important;
    border-color: #c1164a !important;
    color: white !important;
}