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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #22c55e;
    --background-color: #ffffff;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f9fa;
}

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-link.active {
    color: var(--primary-color);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(37, 211, 102, 0.1);
    transition: all 0.3s;
}

.whatsapp-button:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

.whatsapp-button i {
    font-size: 1.2rem;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .whatsapp-button {
        width: 100%;
        justify-content: center;
    }
}

/* Search Form */
.search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.search-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #eee;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.search-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.search-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-form button:hover {
    background: var(--secondary-color);
}

/* Footer Styles */
.footer {
    background-color: #1a1f2e;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info {
    flex: 2;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-contact {
    flex: 1;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-contact i {
    color: #3b82f6;
    width: 20px;
}

.follow-us {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #fff;
}

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

.social-link {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

/* Platform-specific colors on hover */
.social-link:hover i.fa-facebook {
    color: #4267B2;
}

.social-link:hover i.fa-instagram {
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.social-link:hover i.fa-x-twitter {
    color: #000000;
}

.social-link:hover i.fa-whatsapp {
    color: #25D366;
}

/* Responsive styles for social links */
@media (max-width: 576px) {
    .social-links {
        justify-content: center;
    }

    .social-link {
        width: 2.25rem;
        height: 2.25rem;
    }

    .social-link i {
        font-size: 1.1rem;
    }
}

/* Button arrow alignment fix */
.button i.fa-arrow-right {
    vertical-align: middle;
    margin-left: 12px;
    font-size: 1.1em;
    position: relative;
    top: 0;
    display: inline-flex;
    align-items: center;
}

/* Contact Us button in Additional Services */
.more-services .button.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    background: #2563eb;
    border: none;
    border-radius: 6px;
    color: white;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.more-services .button.button-primary::after {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 4px;
}

/* Laptop Repairs Specific Styles */
.service-hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6rem 0;
}

/* Laptop Repairs Hero */
.laptop-repairs .service-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/FBfn2VVUUAIT5Ya.jpg');
}

/* PC Repairs Hero */
.pc-repairs .service-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/mATX_large_number_of_case_options.jpg');
}

.service-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    color: white !important;
}

.service-hero .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.6;
}

/* Hero Section */



.service-hero .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Button Styles */
.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}

.button-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.button-primary:hover {
    transform: translateY(-2px);
    background-color: var(--secondary-color);
}

.button-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.button-secondary:hover {
    transform: translateY(-2px);
    background-color: #f8f9fa;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.button i {
    font-size: 1.1rem;
}

/* Hero Button Styles */
.button-hero {
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.button-hero:hover {
    background-color: #c0392b;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .service-hero {
        min-height: 40vh;
        padding: 3rem 0;
    }
    
    .service-hero .container {
        padding: 1.5rem;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-hero .hero-slogan {
        font-size: 1.2rem;
    }
}


/* Info Blade Styles */
.info-blade {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.info-blade:hover {
    transform: translateY(-5px);
}

.info-blade h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-blade ul {
    list-style: none;
}

.info-blade ul li {
    margin-bottom: 0.75rem;
}

.info-blade ul li strong {
    color: var(--secondary-color);
}

/* Testimonial Blade Styles */
.testimonial-blade {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.testimonial-blade:hover {
    transform: translateY(-5px);
}

.testimonial-blade h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.testimonial {
    margin-bottom: 2rem;
}

.testimonial img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Service Hero Styles */


.service-hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-hero {
        min-height: 50vh;
        padding: 4rem 0;
    }
    
    .service-hero .container {
        padding: 2rem;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-hero .lead {
        font-size: 1.1rem;
    }
    
    .service-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-hero .hero-slogan {
        font-size: 1.5rem;
    }
    
    .info-blade, .testimonial-blade {
        padding: 1.5rem;
    }
    
    .button {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Main Content Padding */
main {
    padding-top: 6rem;
}

/* Text Colors */
.text-white {
    color: white !important;
}
