/* ===== Laptop Repair Page ===== */

.toplead p {
    max-width: 800px;
}

.toplead .phone-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.toplead .phone-link:hover {
    text-decoration: underline;
}

/* Main Page Container */
.laptop-page {
    background-color: #fff;
    padding: 2rem 0;
}

.laptop-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Sections */
.laptop-section {
    margin-bottom: 3rem;
}

.laptop-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #111;
    border-right: 4px solid #007bff;
    padding-right: 0.5rem;
}

/* Grid Cards */
.laptop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.laptop-card {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.laptop-card:hover {
    transform: translateY(-4px);
}

/* Images and Videos */
.laptop-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ===== Square Reels for Video Section ===== */
#videos .laptop-card video {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* makes video perfectly square */
    object-fit: cover;
    border-radius: 0.8rem 0.8rem 0 0;
    background-color: #000;
    display: block;
}

#videos .laptop-card {
    border: 1px solid #ddd;
    border-radius: 1rem;
    background: #fafafa;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#videos .laptop-card-content {
    padding: 1rem;
}

/* Card Text */
.laptop-card-content h3 {
    margin-bottom: 0.5rem;
    color: #222;
    font-size: 1.1rem;
}

.laptop-card-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

/* Brand Logos */
.brand-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.brand-logos img {
    width: 100px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.brand-logos img:hover {
    opacity: 1;
}

/* Issue List */
.issue-list {
    margin: 1rem 0 2rem 1rem;
    color: #333;
    line-height: 2;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.call-box {
    margin: 1.5rem 0;
}

.phone-call-btn {
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s;
}

.phone-call-btn:hover {
    background-color: #0056b3;
}