/* ---------------------------------------------------- */
/* GLOBAL FIXES */
/* ---------------------------------------------------- */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background: #ff0000;
}

/* ---------------------------------------------------- */
/* NAVIGATION */
/* ---------------------------------------------------- */
.navbar {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: flex-end;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
}

/* ---------------------------------------------------- */
/* HERO SECTION */
/* ---------------------------------------------------- */
.hero {
    text-align: center;
    padding-top: 60px;
    position: relative;
    overflow-x: hidden;
}

.tagline {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero-box {
    display: inline-block;
    padding: 40px 60px;
    background: rgba(255, 255, 255, 0.05);
}

.hero-box h1 {
    margin: 0;
    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;
}

/* LOWER TEXT */
.lower-text {
    position: absolute;
    font-size: 12px;
    letter-spacing: 1px;
    width: 180px;
}

.lower-text.left { left: 40px; bottom: 50px; }
.lower-text.right { right: 40px; bottom: 50px; }

/* ---------------------------------------------------- */
/* PRODUCTS SECTION */
/* ---------------------------------------------------- */
.products-section {
    padding: 80px 60px;
    background: #f9f9f9;
    color: black;
}

.products-header h2 {
    font-size: 26px;
    font-weight: bold;
    border-bottom: 3px solid #ff0000;
    display: inline-block;
    padding-bottom: 5px;
}

.products-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.products-text,
.products-grid {
    width: 45%;
    min-width: 300px;
}

.products-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.products-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}

.product-item img {
    width: 140px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.product-item p {
    margin-top: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.view-all-btn {
    grid-column: span 2;
    margin-top: 10px;
    padding: 12px 0;
    background: #ff0000;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
}

/* ---------------------------------------------------- */
/* SERVICES SECTION */
/* ---------------------------------------------------- */
.services-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 80px 60px;
    gap: 40px;
    background: #fff;
    color: black;
}

.sec-title {
    font-size: 28px;
    font-weight: 700;
    position: relative;
    margin-bottom: 10px;
}

.sec-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff6b6b;
    border-radius: 50px;
}

.sec-title.smaller { font-size: 22px; }

.services-left p {
    margin-bottom: 18px;
    line-height: 1.6;
    color: #444;
}

.subheading {
    margin: 10px 0 15px;
    font-weight: 600;
}

.expertise-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 10px;
}

.expertise-list li {
    margin-bottom: 10px;
    color: #444;
}

.services-img-container {
    padding: 8px;
    border-radius: 15px;
}

.services-img-container img {
    max-width: 300px; /* smaller image for tech_repair */
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

/* RESPONSIVE SERVICES */
@media (max-width: 1000px) {
    .services-section { grid-template-columns: 1fr 1fr; }
    .services-img-container { grid-column: span 2; }
}

@media (max-width: 700px) {
    .services-section {
        grid-template-columns: 1fr;
        padding: 50px 25px;
    }
}

/* ---------------------------------------------------- */
/* REVIEWS SECTION */
/* ---------------------------------------------------- */
.reviews-section {
    background: #ffffff;
    color: black;
    padding: 90px 0 120px;
    text-align: center;
    font-family: Georgia, serif;
}

.reviews-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 70px;
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 260px);
    justify-content: center;
    gap: 60px;
    padding: 0 40px;
}

@media (max-width: 900px) {
    .reviews-wrapper { grid-template-columns: 1fr; gap: 60px; }
}

.review-card {
    width: 260px;
    text-align: center;
}

.review-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
}

.highlighted {
    display: inline-block;
    padding: 6px 10px;
    background: #ffffff;
    border-radius: 4px;
}

.review-card p {
    font-size: 13px;
    line-height: 1.55;
    color: #444;
    margin-bottom: 18px;
}

.stars {
    font-size: 26px;
    color: #ffcc00;
    letter-spacing: 3px;
}

/* ---------------------------------------------------- */
/* STORE INFORMATION */
/* ---------------------------------------------------- */
.store-info-section {
    background: #f0f0f0;
    color: black;
    padding: 60px 40px 80px;
    position: relative;
    text-align: center;
    font-family: Arial, sans-serif;
}

.corner-block {
    position: absolute;
    top: 20px;
    left: 40px;
    width: 40px;
    height: 60px;
    background: #ff0000;
}

.store-title {
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 5px;
}

.store-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 700;
}

.store-info-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
}

.store-left,
.store-right {
    text-align: center;
    max-width: 250px;
}

.store-map,
.store-photo {
    width: 180px;
    height: auto;
    object-fit: cover;
}

.info-heading {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.store-address {
    font-size: 18px;
    font-weight: 700;
    color: #ff0000;
    line-height: 1.3;
}

.store-hours {
    font-size: 14px;
    line-height: 1.4;
    color: black;
    font-weight: 700;
}

.store-hours strong + br + br,
.store-hours strong + br {
    color: #ff0000;
}

@media (max-width: 700px) {
    .store-info-grid {
        flex-direction: column;
        gap: 40px;
    }
}

/* ---------------------------------------------------- */
/* CONTACT SECTION */
/* ---------------------------------------------------- */
.contact-section {
    background: #ff0000;
    padding: 60px 0 90px;
    text-align: center;
    color: white;
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 70px;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    overflow-x: hidden;
}

.contact-card {
    background: #ffffff;
    width: 240px;
    height: 160px;
    padding: 18px 15px;
    border: 2px dotted black;
    border-radius: 6px;
    color: black;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.contact-card h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
}

.contact-card p {
    margin: 0;
    font-size: 13px;
}

.contact-card p a,
.contact-card p a:visited,
.contact-card p a:hover,
.contact-card p a:focus {
    text-decoration: none;
    color: inherit;
}

/* ---------------------------------------------------- */
/* FOOTER */
/* ---------------------------------------------------- */
.site-footer {
    background: #000000;
    color: white;
    padding: 60px 20px 30px;
    font-family: Arial, sans-serif;
}

.footer-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff0000;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.footer-col ul li a:hover,
.footer-col a:hover { color: #ff6b6b; }

.footer-col p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

/* Social Icons */
.social-icons {
    font-size: 1.5rem; /* ensures visibility */
}

.social-icons i {
    color: #ffffff;
    transition: color 0.3s;
}

.social-icons i:hover {
    color: #e74c3c;
}

.social-icons a {
    display: inline-block;
    margin-right: 12px;
    color: white;
    text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    font-size: 13px;
    margin-top: 40px;
    color: #888;
}

.footer-col a[href^="tel"],
.footer-col a[href^="mailto"] {
    text-decoration: none;
    color: #ff0000; /* keeps the footer link color consistent */
}

.footer-col a[href^="tel"]:hover,
.footer-col a[href^="mailto"]:hover {
    color: #ff6b6b; /* hover color */
}

@media (max-width: 900px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 30px;
    }
}

/* ---------------------------------------------------- */
/* SCROLL ANIMATIONS */
/* ---------------------------------------------------- */
.animate-section { opacity: 0; transition: opacity 1s ease-out; }

.animate-section.visible { opacity: 1; }

@keyframes fadeUp { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes slideLeft { 0% { opacity: 0; transform: translateX(-50px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes slideRight { 0% { opacity: 0; transform: translateX(50px); } 100% { opacity: 1; transform: translateX(0); } }

[data-animate="fade-up"] { opacity: 0; }
[data-animate="slide-left"] { opacity: 0; }
[data-animate="slide-right"] { opacity: 0; }

[data-animate].visible[data-animate="fade-up"] { animation: fadeUp 0.8s forwards; }
[data-animate].visible[data-animate="slide-left"] { animation: slideLeft 0.8s forwards; }
[data-animate].visible[data-animate="slide-right"] { animation: slideRight 0.8s forwards; }

/* Products grid images */
.products-grid img { width: 100%; height: auto; object-fit: cover; }
