:root {
    --primary-blue: #3BB1D9;
    --dark-gradient: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(40,40,40,0.4) 100%);
}

* {
    font-family: 'Geist', sans-serif;
}

.public-site .py-5 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
}

.public-site .py-4 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
}

.public-site .my-5 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
}

.public-site .my-4 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
}

.public-site .mt-5 { margin-top: 2.25rem !important; }
.public-site .mb-5 { margin-bottom: 2.25rem !important; }
.public-site .mt-4 { margin-top: 1.75rem !important; }
.public-site .mb-4 { margin-bottom: 1.75rem !important; }

.public-site .pt-5 {
    padding-top: 2.25rem !important;
}

.public-site .pb-5 {
    padding-bottom: 2.25rem !important;
}

.public-site .pt-4 {
    padding-top: 1.75rem !important;
}

.public-site .pb-4 {
    padding-bottom: 1.75rem !important;
}

@media (min-width: 992px) {
    .public-site .py-lg-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .public-site .py-lg-4 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}
.active{
 background-color: white !important; 
}

.phone-link {
    color: var(--primary-blue); /* Uses the blue from your brand */
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #2ea0c7; /* A slightly darker blue for the hover effect */
    text-decoration: underline; /* Optional: adds underline on hover */
}

/* Specific styling for the phone icon inside the link */
.phone-link i {
    margin-right: 8px;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* 1. Top Bar Centered */
.top-bar {
    background-color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 500;
}
.separator {
    opacity: 0.5;
}

/* 2. Navbar Styling */
.nav-link {
    color: #1a1a1a !important;
}
.nav-link:hover {
    color: var(--primary-blue) !important;
}
.btn-info-custom {
    background-color: var(--primary-blue);
    border: none;
    transition: 0.3s;
}
.btn-info-custom:hover {
    background-color: #2ea0c7;
}
.text-info-custom {
    color: var(--primary-blue);
}

/* Dropdown Animation Background */
.dropdown-custom:hover .dropdown-menu {
    display: block;
    animation: slideIn 0.3s ease-out;
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Center the Navigation Parent */
.navbar-nav {
    display: flex;
    justify-content: center;
    width: auto;
}

/* Mega Dropdown Centering Logic */
.mega-dropdown {
    position: relative; /* Necessary for the menu to align to this item */
}

.mega-menu {
    min-width: 1200px;
    max-width: 95vw; /* Prevents overflow on smaller screens */
    position: absolute;
    
    /* Centering Math */
    left: 141% !important;
    right: auto !important;
    
    /* Initial State: Centered + Slightly Below for Animation */
    visibility: hidden;
    opacity: 0;
    display: block; 
    transform: translateX(-50%) translateY(20px); 
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    border-radius: 20px;
    z-index: 1000;
}

/* Hover State: Centered + Slid Up to Position */
.mega-dropdown:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Arrow pointer at the top (Optional but looks great) */
.mega-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #F8F9FA; /* Matches sidebar bg color */
}

/* Adjust Sidebar to match the height of the model list */
.menu-sidebar {
    background-color: #F8F9FA;
    border-radius: 20px 0 0 20px; /* Smooth rounded left side */
}

/* Mobile Fix: Disable centering on small screens */
@media (max-width: 991px) {
    .mega-menu {
        min-width: 100%;
        left: 0 !important;
        transform: none !important;
        position: static;
        display: none;
    }
    .mega-dropdown.show .mega-menu {
        display: block;
    }
}
/* Hero Section Start */
/* 3. Hero Video Background */
.hero-container {
    position: relative;
    height: 650px;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: center center;
    background-color: #000;
}

/* 4. Hero Content Card */
.hero-card {
    background: var(--dark-gradient);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.hero-card h1 {
    line-height: 1.1;
    letter-spacing: -2px;
}

/* 5. Search Bar Bordered & Same Line */
.search-bar-wrapper {
    border: 1px solid #ddd !important;
    max-width: 500px;
}
.search-bar-wrapper input:focus {
    box-shadow: none;
    outline: none;
}
.text-nowrap {
    white-space: nowrap;
}

/* 6. Bottom Center Logo */
.bottom-logo-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px; /* Adjust size as needed */
    opacity: 0.7;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 20px 0;
        text-align: center;
    }
    .hero-card {
        padding: 30px !important;
        border-radius: 20px;
    }
    .bottom-logo-overlay {
        display: none; /* Hide on mobile to save space */
    }
}
/* Hero Section Start End */

/* Feature Highlights Bar Start*/
.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Apple Certified Card */
.apple-card {
    background-color: var(--primary-blue); /* Your #3BB1D9 color */
    border-radius: 40px;
    position: relative;
    overflow: hidden; /* Keeps the card clean */
}

.apple-card h2 {
    letter-spacing: -1px;
}

.apple-card .opacity-90 {
    opacity: 0.9;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Outline White Button */
.btn-outline-white {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary-blue);
    border-color: white;
}

/* Certified Badge Positioning */
.certified-badge {
    position: absolute;
    bottom:10px;
    left: -90px;
    width: 180px; /* Adjust based on your image size */
    z-index: 9;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .apple-card {
        border-radius: 25px;
        text-align: center;
    }
    .apple-card .row {
        flex-direction: column;
    }
    .certified-badge {
        width: 130px;
        left: 50%;
        bottom: -20px;
        transform: translateX(-50%);
    }
    .feature-item {
        flex-direction: column;
        gap: 10px;
    }
    .feature-item p {
        margin-left: 0 !important;
    }
}
/* Feature Highlights Bar End*/

/* Repare Services Section Start */
/* Card Container */
.repair-card {
    background-color: #f8f9fa; /* Off-white background from image */
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.repair-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

/* Content Area */
.repair-content {
    position: relative;
    z-index: 2;
    max-width: 65%; /* Leave space for the image on the right */
}

.repair-card h3 {
    font-family: 'Geist', sans-serif;
    color: #1a1a1a;
}

.repair-card p {
    line-height: 1.6;
}

/* List with Blue Checkmarks */
.repair-list li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #4a5568;
}

.repair-list i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-right: 12px;
}

/* Link Style */
.more-info {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.more-info:hover {
    opacity: 0.8;
    color: var(--primary-blue);
}

/* Image Positioning */
.repair-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%; /* Adjust width depending on your image aspect ratio */
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.repair-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* This makes the image sit perfectly at the bottom-right */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .repair-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .repair-image {
        position: relative;
        width: 100%;
        height: auto;
        justify-content: center;
    }
    .repair-card {
        border-radius: 30px;
    }
}
/* Repare Services Section End */

/* Why Choose Us Custom Styles Start*/
.bg-light {
    background-color: #f8f9fa !important;
}

/* Custom Outline Button */
.btn-outline-info-custom {
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    background-color: #f0f9ff; /* Very light blue tint */
    transition: all 0.3s ease;
}

.btn-outline-info-custom:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Info Cards */
.info-card {
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
}

/* Rounded square icons */
.info-icon {
    background-color: var(--primary-blue);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    font-size: 1.4rem;
}

.info-card h5 {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.info-card p {
    line-height: 1.6;
}

/* Ensure font consistency */
.why-choose-us h2 {
    letter-spacing: -1.5px;
}

.onmobile {
    display: inline;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .onmobile {
        display: block;
        
    }

    .why-choose-us {
        text-align: center;
    }
    /* .info-icon {
        margin: 0 auto 20px auto;
    } */
    .btn-outline-info-custom {
        width: 100%;
    }
}

/* Why Choose Us Custom Styles End*/

/* Background Gradient for this section Start*/
.info-banners {
    background: linear-gradient(to bottom, #8ed6eb 0%, #e6f7fd 100%);
}

/* The Split Card Wrapper */
.split-card {
    background-color: #ffffff;
    border-radius: 30px; /* Large rounded corners from image */
    display: flex;
    overflow: hidden; /* Ensures image doesn't break rounded corners */
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Left Content Side */
.split-card-body {
    flex: 1.2; /* Takes slightly more space than the image */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-card h3 {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Right Image Side */
.split-card-image {
    flex: 1;
    overflow: hidden;
}

.split-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes image fill the height perfectly */
    display: block;
}

/* List with checkmarks (smaller version) */
.repair-list-small li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: #4a5568;
}

.repair-list-small i {
    color: var(--primary-blue);
    margin-right: 10px;
}

/* Styled Underline Link */
.info-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    border-bottom: 2px solid var(--primary-blue);
    width: fit-content;
    padding-bottom: 2px;
}

.info-link:hover {
    color: #2ea0c7;
    border-color: #2ea0c7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .split-card {
        flex-direction: column; /* Stacks image below text on mobile */
    }
    .split-card-image {
        height: 250px; /* Give image a fixed height on mobile */
    }
    .split-card-body {
        padding: 30px !important;
    }
}
/* Background Gradient for this section End*/
/* Brands Section Styling Start*/
.brands-section h5 {
    font-family: 'Geist', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.brand-logo {
    max-width: 110px; /* Limits the size so they look uniform */
    height: auto;
    /* Optional grayscale effect for a professional look */
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* Hover effect: Logos turn to color and brighten up */
.brand-item:hover .brand-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
    .brand-logo {
        max-width: 80px;
    }
    .brands-section h5 {
        font-size: 1rem;
    }
}
/* Brands Section Styling End*/
/* Review Cards Styling Start*/
.review-card {
    background-color: #F8F9FB; /* Light grey background from your image */
    border: none;
    transition: all 0.3s ease;
}

.review-card p {
    line-height: 1.6;
    color: #4A5568;
}

.text-warning {
    color: #FFB800 !important; /* Google Star Yellow */
}

/* Google Badge */
.google-rating-badge {
    border-color: #eee !important;
}

/* Custom Slider Buttons */
.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #3BB1D9; /* Your primary blue */
    background: transparent;
    color: #3BB1D9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: #3BB1D9;
    color: white;
}

/* Custom Indicators (Dots) */
/* Override Bootstrap Indicators to be Dots */
.carousel-indicators .dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    border: none !important;
    background-color: #D1D5DB !important; /* Grey color */
    opacity: 1 !important;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}

/* Style for the active dot */
.carousel-indicators .dot.active {
    background-color: #1a1a1a !important; /* Black color */
    transform: scale(1.2);
}

/* Ensure the container doesn't hide them */
.carousel-indicators {
    bottom: 0;
}

/* Circular Arrow Buttons Styling */
.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #3BB1D9;
    background: white;
    color: #3BB1D9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: #3BB1D9;
    color: white;
}

/* Animation */
.carousel-item {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Review Cards Styling End*/

/* Insurance Section Styles Start*/
.insurance-section {
    overflow: hidden;
}

/* The small "Verzekering" tag */
.insurance-tag {
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.insurance-tag i {
    font-size: 1.2rem;
}

/* Heading Typography */
.insurance-section h2 {
    line-height: 1.2;
    letter-spacing: -1.5px;
    color: #1a1a1a;
}

/* Body Text */
.lead-text {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 90%;
}

/* Image Styling */
.insurance-image-wrapper img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px !important; /* Large rounded corners from Figma */
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .insurance-section {
        text-align: center;
    }
    
    .insurance-tag {
        justify-content: center;
    }
    
    .lead-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .insurance-section h2 {
        font-size: 2rem;
    }
}
/* Insurance Section Styles End*/
/* Insurance Partners Section Start*/
.insurance-partners {
    background-color: #ffffff;
}

.partner-logo {
    max-height: 70px; /* Keeps all logos at a uniform height */
    width: auto;
    /* filter: grayscale(100%);  */
    opacity: 1;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Subtle border to separate from the content above */
.border-top {
    border-top: 1px solid #f0f0f0 !important;
}
.border-bottom {
    border-bottom: 1px solid #f0f0f0 !important;
}

/* Tablet and Mobile adjustments */
@media (max-width: 991px) {
    .partner-logo {
        max-height: 30px;
        margin: 10px 0;
    }
}
/* Insurance Partners Section End*/

/* Final CTA Styling Start*/
.final-cta {
    position: relative;
    /* Gradient overlay: Blue on the left, transparent on the right */
    background: linear-gradient(to right, 
        rgba(59, 177, 217, 0.9) 0%, 
        rgba(59, 177, 217, 0.6) 30%, 
        rgba(59, 177, 217, 0) 70%), 
        url('../images/cta-man-phone.png'); /* Replace with your exported image */
    background-size: cover;
    background-position: center;
    border-radius: 0; /* Keep it full width or add 30px for a card look */
    min-height: 830px;
    display: flex;
    align-items: center;
}

/* Heading tweak */
.final-cta h2 {
    line-height: 1.1;
    letter-spacing: -2px;
}

/* Custom White Button */
.btn-white-pill {
    background-color: #ffffff;
    color: #1a1a1a;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.btn-white-pill:hover {
    background-color: transparent;
    color: #ffffff;
}

.opacity-90 {
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .final-cta {
        /* On mobile, make the gradient cover the whole area for readability */
        background: linear-gradient(to bottom, 
            rgba(59, 177, 217, 0.85) 0%, 
            rgba(59, 177, 217, 0.85) 100%), 
            url('assetscta-man-phone.jpg');
        background-position: 70% center;
        text-align: center;
        min-height: auto;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .final-cta .btn-white-pill {
        width: 100%;
    }
}
/* Final CTA Styling End*/
/* FAQ Accordion Styling Start*/
.faq-section {
    font-family: 'Geist', sans-serif;
}

.accordion-item {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #eee; /* Light line between questions */
    background-color: transparent;
}

.accordion-button {
    background-color: transparent !important;
    color: #1a1a1a !important;
    font-size: 1.1rem;
    padding: 25px 0;
    box-shadow: none !important;
}

.accordion-body {
    padding: 0 0 25px 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Custom + and - Icons */
.accordion-button::after {
    content: '+'; /* Default icon */
    background-image: none;
    font-family: 'Geist', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    transition: none;
}

.accordion-button:not(.collapsed)::after {
    content: '—'; /* Expanded icon (long dash) */
    transform: none;
    background-image: none;
    color: #1a1a1a;
}

/* Hover Effect */
.accordion-button:hover {
    color: var(--primary-blue) !important;
}

/* Spacing tweak for the title */
.faq-section h2.display-5 {
    letter-spacing: -1.5px;
}

/* Map Section Styling */
.map-wrapper {
    position: relative;
    border-radius: 30px; /* Matches the rounded look of your other cards */
    overflow: hidden;    /* This is critical to make the iframe corners round */
    line-height: 0;      /* Removes tiny gap at bottom of iframe */
    border: 1px solid #eee;
}

.map-wrapper iframe {
    filter: grayscale(10%) contrast(110%); /* Subtle professional color grading */
    display: block;
}

/* Positioning the 'View larger map' button manually if needed */
.map-label {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
}

.btn-white {
    background-color: white;
    color: #0066ff; /* Google's blue link color */
    border: none;
    padding: 8px 15px;
    font-size: 0.85rem;
    border-radius: 5px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .map-wrapper {
        border-radius: 20px;
    }
    .map-wrapper iframe {
        height: 350px; /* Shorter map on mobile */
    }
}
/* FAQ Accordion Styling End*/
/* Footer Styles Start*/
.footer-section {
    background: linear-gradient(180deg, #0a0c14 0%, #05060a 100%);
    color: #ffffff;
    font-family: 'Geist', sans-serif;
}

.footer-disclaimer {
    line-height: 1.6;
    font-size: 0.85rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-blue);
}

.footer-section h6 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

/* Contact Icon Boxes */
.icon-box {
    background-color: var(--primary-blue);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Horizontal separators color */
.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.opening-hours li {
    font-size: 0.9rem;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .footer-section {
        text-align: left;
    }
    .social-links {
        justify-content: flex-start;
    }
    .icon-box {
        /* margin: 0 auto 10px auto; */
    }
    .contact-info .d-flex {
        flex-direction: row;
        align-items: flex-start !important;
    }

    /* Show bullet dots on footer links on mobile */
    .footer-links {
        padding-left: 18px !important;
    }
    .footer-links li {
        list-style-type: disc !important;
        text-align: left;
    }
    .footer-links li::marker {
        color: var(--primary-blue);
    }

    /* Ensure footer headings and text are left-aligned on mobile */
    .footer-section h6 {
        text-align: left;
    }
    .footer-disclaimer {
        text-align: left;
    }
    .opening-hours li {
        text-align: left;
    }
}

/* Footer Styles End*/
/* ------------------- Category Page ------------------- */
/* Device Selection Styling Start*/
.bg-light-subtle {
    background-color: #F8F9FB !important;
}

/* Header Text Tweak */
.device-selection h2 {
    letter-spacing: -1px;
    line-height: 1.2;
}

/* Search Bar on Category Page */
.search-container {
    max-width: 600px;
    margin-left: auto;
}
.search-container input:focus {
    box-shadow: none;
    outline: none;
}

/* Device Card Styling */
.device-card {
    background-color: #ffffff;
    border-radius: 12px; /* Smaller rounding than banners */
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.device-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.device-img {
    height: 150px; /* Fixed area for images to align titles */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.device-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .device-selection h2 {
        text-align: center;
        font-size: 1.8rem;
    }
    .search-container {
        margin-left: 0;
        width: 100%;
    }
    .device-img {
        height: 100px;
    }
}
/* Device Selection Styling End*/
/* All Repairs Info Styling Start */
.all-repairs-info {
    font-family: 'Geist', sans-serif;
}

.all-repairs-info h2 {
    letter-spacing: -1.5px; /* Matches previous bold headings */
}

.all-repairs-info .lead {
    font-size: 1.15rem;
    font-weight: 500;
}

.repair-description {
    color: #4a5568; /* Slightly muted dark grey for readability */
    font-size: 0.95rem;
    line-height: 1.8; /* Increased line height for better reading experience */
    text-align: justify; /* Optional: matches the clean block look of the image */
}

/* Adjustments for mobile */
@media (max-width: 768px) {
    .repair-description {
        text-align: left; /* Better for mobile screens */
        font-size: 0.9rem;
    }
    
    .all-repairs-info h2 {
        font-size: 2rem;
    }
}
/* All Repairs Info Styling End */

/* --------------------- Repairs Page  ------------------- */
/* Repair Hero Section Styling Start */
/* Breadcrumb Styling */
.breadcrumb-wrapper {
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
     margin:0px;
}

.breadcrumb-item a:hover {
    color: var(--primary-blue);
}

/* Custom separator (the > icon) */
.breadcrumb-item + .breadcrumb-item::before {
    content: "\F285"; /* Bootstrap Icon code for chevron-right */
    font-family: "bootstrap-icons";
    font-size: 0.9rem;
    vertical-align: middle;
    color: #adb5bd;
    padding: 0px !important;
   
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: 0px !important;
}

.breadcrumb-item.active {
    color: var(--primary-blue);
    font-weight: 500;
}

/* Repair Hero Typography */
.repair-hero h1 {
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.repair-hero .lead-text {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 580px;
}

/* Device Image Shadow/Glow */
.hero-device-img img {
    /* Optional: adds a soft shadow to the phone to match the image */
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
    max-height: 450px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .repair-hero {
        text-align: center;
    }
    .repair-hero .lead-text {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-device-img {
        margin-bottom: 30px;
    }
    .repair-hero h1 {
        font-size: 2.5rem;
    }
}
/* Repair Hero Section Styling End */
/* Repair Details Styling Start */
/* Layout Background */
.bg-light-gray { background-color: #F8F9FB; }

/* Icon Box */
.icon-box-blue {
    color: var(--primary-blue);
    font-size: 1.25rem;
    width: 30px;
}

/* Custom Accordion Header */
.cursor-pointer { cursor: pointer; }
.repair-card { border: 1px solid transparent; transition: all 0.2s; }
.repair-card .card-header { background: white; border: none; }
.border-orange { border: 2px solid #E44E23 !important; }

/* Info Note */
.info-note {
    background-color: #EBF8FF;
    color: #3182CE;
}

/* Custom Buttons */
.btn-danger-custom {
    background-color: #E44E23;
    border: none;
}
.btn-danger-custom:hover { background-color: #c93d18; color: white; }

/* Sticky Sidebar Fix */
@media (min-width: 992px) {
    .sticky-top {
        z-index: 10;
    }
}

/* Small Utility */
.x-small { font-size: 0.75rem; }

/* Adjustments for closed headers */
.card-header.collapsed .bi-chevron-up {
    transform: rotate(180deg);
}
/* Repair Details Styling End */
/* Detailed Info Styling  Start*/
.detailed-info {
    font-family: 'Geist', sans-serif;
}

.detailed-info p, 
.detailed-info li {
    font-size: 0.92rem;
    line-height: 1.7;
}

.italic-text {
    font-style: italic;
    font-weight: 500;
}

/* Extra Services List Styling */
.extra-services-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #6c757d;
}

.extra-services-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #adb5bd;
    font-weight: bold;
}

/* Specific link underline style */
.info-link-underline {
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 1.5px solid var(--primary-blue);
    padding-bottom: 2px;
    font-size: 0.9rem;
    display: inline-block;
}

/* Icon Grid in Right Column */
.detailed-info .bi {
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Header Spacing */
.detailed-info h3 {
    letter-spacing: -0.5px;
    color: #1a1a1a;
}
/* Detailed Info Styling  End*/
/* Benefits Bar Styling Start*/
.benefits-dark-bar {
    background-color: #05060a; /* Deep midnight black */
    font-family: 'Geist', sans-serif;
}

.benefit-icon i {
    font-size: 3rem; /* Large icons like the image */
    color: #ffffff;
    font-weight: 100; /* Thin stroke style */
}

.benefit-text h6 {
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.benefit-text p {
    line-height: 1.5;
    opacity: 0.8;
}

/* Vertical Divider Lines */
@media (min-width: 768px) {
    .border-end-custom {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .benefit-item {
        text-align: left;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 20px !important;
    }
    .benefit-item:last-child {
        border-bottom: none;
        margin-bottom: 0 !important;
    }
    .benefit-icon i {
        font-size: 2.5rem;
    }
}
/* Benefits Bar Styling End*/

/* Testimonials Section Styling Start */
/* Section Typography */
.testimonials-slider-section {
    font-family: 'Geist', sans-serif;
}

.testimonials-slider-section h2 {
    letter-spacing: -1.5px;
    color: #1a1a1a;
}

/* Card Styling */
.testimonial-card {
    background-color: #F8F9FB; /* Light grey/blue background */
    border: none;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.x-small {
    font-size: 0.75rem;
}

.text-warning {
    color: #FFB800 !important; /* Google Review Gold */
}

/* Custom Arrows */
.slider-arrow {
    width: 45px;
    height: 45px;
    border: 1px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Custom Dots (Indicators) */
.carousel-indicators .dot-indicator {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    border: none !important;
    background-color: #D1D5DB !important; /* Inactive grey */
    opacity: 1 !important;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}

.carousel-indicators .dot-indicator.active {
    background-color: #1a1a1a !important; /* Active dark grey/black */
    width: 10px !important;
    height: 10px !important;
}

/* Fix Bootstrap default indicator styles */
.carousel-indicators {
    bottom: 0;
}
.testimonial-slider-container {
    overflow: hidden; /* Hide the cards that aren't in view */
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 24px; /* Space between cards */
}

/* On Desktop: Show ~2.5 cards to make 2 full and 2 halves visible */
.testimonial-card-wrapper {
    flex: 0 0 35%; /* 35% ensures roughly 2.8 cards are visible */
    min-width: 320px;
}

.testimonial-card {
    background-color: #F8F9FB;
    border: none;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D1D5DB;
    cursor: pointer;
    transition: 0.3s;
}

.dot-indicator.active {
    background-color: #1a1a1a;
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .testimonial-card-wrapper {
        flex: 0 0 80%; /* Only one full and a hint of the next on mobile */
    }
}
/* Testimonials Section Styling End */

/* ------------------- Contact Page ------------------- */
.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(var(--info-rgb), 0.1);
}

/* ------------- Brand Templates --------------------- */
   .x-small {
    font-size: 0.75rem;
}

.icon-box-blue {
    width: 60px;
    height: 60px;
    background: rgba(0, 209, 178, 0.1);
    color: #00d1b2;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.brand-seo-content h2, .brand-seo-content h3 {
    color: #2d3436;
}

.brand-seo-content p {
    line-height: 1.7;
}

/* =========================================
   LANGUAGE SWITCHER STYLES
   ========================================= */
.lang-switcher-wrapper {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 99999;
}

@media (max-width: 991px) {
    .lang-switcher-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        margin-left: auto;
        margin-right: 10px;
        z-index: 1060;
    }
}

/* The Trigger Button */
.lang-current-trigger {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 16px;
    border-radius: 8px; /* Mac-Medic 8px Radius */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

@media (max-width: 991px) {
    .lang-current-trigger {
        padding: 6px 10px;
        gap: 8px;
        font-size: 0.8rem;
    }

    .lang-current-trigger img {
        width: 18px;
    }

    #langChevron {
        font-size: 0.7rem;
    }
}

.lang-current-trigger:hover {
    border-color: var(--mac-blue);
    transform: translateY(-2px);
}

/* The Menu Box (Opens above the button) */
.lang-dropdown-menu {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    min-width: 170px;
    display: none;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

@media (max-width: 991px) {
    .lang-dropdown-menu {
        top: calc(100% + 10px);
        bottom: auto;
        left: auto;
        right: 0;
        transform: none;
        z-index: 1070;
    }
}

.lang-dropdown-menu.show {
    display: block;
    animation: menuFadeUp 0.3s ease-out;
}

@keyframes menuFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Menu Options */
.lang-option {
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
    color: #333;
    font-weight: 500;
}

.lang-option:hover {
    background-color: var(--mac-gray-input);
}

.lang-option img {
    width: 22px;
    border-radius: 2px;
}

/* Clean up Google's auto-injected UI */
body { top: 0 !important; }
.skiptranslate iframe{ display: none !important; }
.goog-te-gadget { display: none !important; }

/* --- Repair Template Utilities --- */
.text-primary-custom {
    color: var(--primary-blue) !important;
}

.bg-primary-soft {
    background-color: rgba(59, 177, 217, 0.1) !important;
}

.bg-primary-custom {
    background-color: var(--primary-blue) !important;
}

.rounded-4 {
    border-radius: 1.5rem !important;
}

.rounded-5 {
    border-radius: 2.5rem !important;
}

.hero-image-wrapper {
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover {
    transform: scale(1.02);
}

.map-container {
    border-radius: 0 0 1.5rem 1.5rem;
    overflow: hidden;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(59, 177, 217, 0.05);
    color: var(--primary-blue);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(59, 177, 217, 0.1);
}

.brand-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.brand-item:hover {
    border-color: var(--primary-blue);
    background-color: #fff !important;
    transform: translateY(-3px);
}
