/* Add to css/main_drivigo.css */

body {
    /* Basic font, fallback if Drivigo CSS doesn't specify one */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    /* Consider adding a default background color if needed */
}

/* Navbar adjustments if needed - Drivigo's menu-2025.css might handle this */
.navbar {
    /* Example: Add a subtle box-shadow if not already present */
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
}

.navbar-brand img.logo-menu { /* If a logo image is used later */
    max-height: 50px; /* Ensure logo isn't too tall */
}
.navbar-brand { /* For text logo */
    font-weight: bold;
    font-size: 1.5rem; /* Make text logo a bit larger */
}


/* General content styling */
.plan_de_site1 {
    /* This class is used as a main wrapper. 
       Ensure it allows background colors/images from Drivigo's CSS if they use it. */
}

.bg_banniere_drivigo { /* Drivigo's hero section class */
    color: #ffffff; /* Default text color for hero, can be overridden by inline styles */
}
.bg_banniere_drivigo .reservation_bouton a { /* Drivigo's hero button style */
    background-color: #ab7d3f; /* Drivigo's gold color */
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.bg_banniere_drivigo .reservation_bouton a:hover {
    background-color: #896432; /* Darker gold */
}

/* Service cards on homepage and fleet page */
.fusion-column-wrapper, .vehicle-category-item {
    border: 1px solid #dee2e6; /* Standard Bootstrap border color */
    padding: 1.25rem; /* Standard Bootstrap card padding */
    margin-bottom: 1.5rem; /* Spacing between cards */
    background-color: #fff;
    border-radius: 0.25rem; /* Standard Bootstrap card radius */
    display: flex; /* Use flexbox for card layout */
    flex-direction: column; /* Stack items vertically */
    height: 100%; /* Make cards in a row same height if using Bootstrap row > col */
}
.fusion-column-wrapper .reservation_bouton, .vehicle-category-item .reservation_bouton {
    margin-top: auto; /* Push button to the bottom of the card */
}
.fusion-column-wrapper .reservation_bouton a, .vehicle-category-item .reservation_bouton a {
    background-color: #343a40; /* Dark grey, Bootstrap's dark color */
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    display: inline-block;
}
.fusion-column-wrapper .reservation_bouton a:hover, .vehicle-category-item .reservation_bouton a:hover {
    background-color: #23272b; /* Darker grey */
}


/* Styling for FAQ questions to make them look more like buttons */
/* This was previously in faq.html style block, moved here for centralization */
.faq-question {
    display: block;
    width: 100%;
    padding: 10px 15px; /* Adjusted padding */
    margin-bottom: 0; /* Removed bottom margin to connect with answer */
    background-color: #f8f9fa; /* Light background */
    border: 1px solid #dee2e6;
    border-radius: .25rem .25rem 0 0; /* Rounded top corners */
    text-align: left;
    font-weight: bold;
    color: #212529; /* Bootstrap default text color */
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    position: relative; /* For +/- icon positioning */
}
.faq-question:hover {
    background-color: #e9ecef;
}
.faq-question[aria-expanded="true"] {
    background-color: #ab7d3f; /* Drivigo gold color when open */
    color: white;
    border-bottom-color: transparent; /* Hide bottom border when open */
}
.faq-question::after { /* For +/- icons */
    font-family: 'FontAwesome'; /* Assuming FontAwesome is loaded */
    content: "\f067"; /* FA Plus */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight:normal; /* Reset bold from button */
}
.faq-question[aria-expanded="true"]::after {
    content: "\f068"; /* FA Minus */
}

.faq-answer {
    padding: 15px;
    border: 1px solid #dee2e6;
    border-top: none; /* Connects to question button */
    border-radius: 0 0 .25rem .25rem; /* Rounded bottom corners */
    background-color: #fff;
    display: none; /* Initially hidden, JS will show it */
}
.faq-answer.show { /* If Bootstrap's collapse class is used, or manually via JS */
    display: block;
}


/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Specific overrides for .service-detail-item buttons if they use .button-primary */
.service-detail-item .btn-primary {
    background-color: #ab7d3f !important; /* Drivigo gold */
    border-color: #ab7d3f !important; /* Drivigo gold */
}
.service-detail-item .btn-primary:hover {
    background-color: #896432 !important; /* Darker Drivigo gold */
    border-color: #896432 !important;
}

/* Ensure content images like the chauffeur image are styled */
.content-image-style {
    border: 1px solid #dee2e6;
    padding: 4px;
    border-radius: .25rem;
}

/* css/main_drivigo.css - Link Styling */

/* Target links within the main content area. 
   Adjust selector if main content has a more specific wrapper class 
   than just being inside .plan_de_site1 > .container */
.plan_de_site1 .container a, 
.plan_de_site1 .container a:visited { /* Style visited links the same for consistency */
    color: #ab7d3f; /* Drivigo gold color */
    text-decoration: none; /* Optional: remove underline by default */
    transition: color 0.2s ease-in-out, text-decoration 0.2s ease-in-out;
}

.plan_de_site1 .container a:hover,
.plan_de_site1 .container a:focus {
    color: #896432; /* Darker gold for hover/focus */
    text-decoration: underline; /* Optional: add underline on hover/focus */
}

/* Ensure this doesn't override button links that are styled as buttons */
.plan_de_site1 .container .btn a, /* If links are ever wrapped in buttons */
.plan_de_site1 .container a.btn { /* If links themselves are styled as buttons */
    color: #fff; /* Keep button text color (usually white or dark based on button style) */
    text-decoration: none; /* Buttons typically don't have underlines */
}
.plan_de_site1 .container a.btn:hover {
     color: #fff; /* Keep button text color on hover */
     text-decoration: none;
}

/* Exclude links in cards that might have their own specific link styling or act as headers */
.plan_de_site1 .container .card a:not(.btn) { /* Target links in cards that are not buttons */
  /* If card titles are links, they might need their own color,
     this rule makes them gold too. Could be more specific if needed. */
   color: #ab7d3f;
}
 .plan_de_site1 .container .card a:not(.btn):hover {
   color: #896432;
   text-decoration: underline;
}

/* Specificity for service item links on services.html if they are distinct from general text links */
/* (The buttons are already styled, this would be for any text links within .service-detail-item) */
.service-detail-item p a { /* Example if there are text links inside service item paragraphs */
    color: #ab7d3f;
}
.service-detail-item p a:hover {
    color: #896432;
}

/* Ensure text is visible on btn-outline-dark by default */
.plan_de_site1 .container a.btn.btn-outline-dark {
    color: #212529; /* Default Bootstrap dark color for text */
}

/* Ensure hover/focus state for btn-outline-dark maintains Bootstrap's intended behavior */
.plan_de_site1 .container a.btn.btn-outline-dark:hover,
.plan_de_site1 .container a.btn.btn-outline-dark:focus {
    color: #fff; /* White text on hover/focus */
    background-color: #212529; /* Dark background on hover/focus */
    border-color: #212529;
}

/* Add to css/main_drivigo.css */
.bg_banniere_drivigo h1 {
    color: #fff; /* Ensure visibility on dark background */
    font-size: 2.8em; /* Example size, adjust as needed */
    font-weight: bold;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

/* Enhancements for Testimonial Stars on Homepage */
.fusion-column-wrapper.avis h3 strong {
    color: #ab7d3f; /* Drivigo gold color for stars */
    font-weight: normal; /* Assuming the strong tag is just for the stars themselves */
}

/* Drivigo Red Icon Color */
.drivigo-icon-red {
    color: #c00000; /* Deep/elegant red */
}

/* Global Click-to-Call Link Styling */
.drivigo-phone-link-hero,
.drivigo-phone-link-services,
.drivigo-phone-link-fleet,
.drivigo-phone-link-cta {
    /* Base color will be set by more specific rules or inline styles for hero */
    text-decoration: none; /* No underline by default */
    font-weight: bold;
    transition: color 0.2s ease-in-out, text-decoration 0.2s ease-in-out;
}

/* Default gold color for most phone links */
.drivigo-phone-link-services,
.drivigo-phone-link-fleet,
.drivigo-phone-link-cta {
    color: #ab7d3f; /* Drivigo gold */
}

.drivigo-phone-link-hero:hover,
.drivigo-phone-link-services:hover,
.drivigo-phone-link-fleet:hover,
.drivigo-phone-link-cta:hover {
    text-decoration: underline;
}

/* Hover color for gold links */
.drivigo-phone-link-services:hover,
.drivigo-phone-link-fleet:hover,
.drivigo-phone-link-cta:hover {
    color: #896432; /* Darker gold */
}

/* Hero link text is styled inline white, hover for hero link text */
.drivigo-phone-link-hero:hover {
    color: #cccccc; /* Lighter grey for hover on dark background */
}

/* Add phone icon before these links */
.drivigo-phone-link-hero::before,
.drivigo-phone-link-services::before,
.drivigo-phone-link-fleet::before,
.drivigo-phone-link-cta::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* Solid icons */
    content: "\f095"; /* FontAwesome phone icon */
    margin-right: 0.5em;
    /* Icon color will inherit from link color by default, or can be set explicitly */
}

/* Specific icon color for hero to match its text */
.drivigo-phone-link-hero::before {
    color: #f8f9fa; 
}
/* Other icons will take the gold color from their respective link class */
.drivigo-phone-link-services::before,
.drivigo-phone-link-fleet::before,
.drivigo-phone-link-cta::before {
    color: #ab7d3f;
}

/* Drivigo Gold Icon Color */
.drivigo-icon-gold {
    color: #ab7d3f !important; /* Drivigo gold, !important to override potential Bootstrap specificity if needed */
}

/* Styling for Page Hero Banners on Service/Pillar Pages */
.page-hero-banner {
    min-height: 450px; /* Adjust as desired, e.g., 350px or 400px */
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative; /* For overlay positioning if needed */
    color: #fff; /* Default text color for banner content */
    margin-bottom: 2.5rem; /* Space between banner and content below */
}

.page-hero-banner .page-hero-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Padding for overlay content */
}

.page-hero-banner .page-hero-title {
    font-size: 2.8rem; /* Adjust as desired */
    font-weight: bold;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 0; /* Remove default H1 margin if any */
}

/* Responsive adjustments for banner title */
@media (max-width: 768px) {
    .page-hero-banner {
        min-height: 350px; /* Slightly smaller banner on mobile */
    }
    .page-hero-banner .page-hero-title {
        font-size: 2.2rem; /* Adjust H1 font size for smaller screens */
    }
}

@media (max-width: 576px) {
    .page-hero-banner {
        min-height: 300px;
    }
    .page-hero-banner .page-hero-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .bg_banniere_drivigo h1 {
        font-size: 2.2em; /* Adjust for smaller screens */
    }
}

.page-hero-text-wrapper {
    background-color: rgba(255, 255, 255, 0.7); /* 70% translucent white */
    padding: 15px 25px;
    border-radius: 5px;
    display: inline-block; 
}
/* Responsive padding for the text wrapper */
@media (max-width: 768px) {
    .page-hero-text-wrapper {
        padding: 10px 20px;
    }
}
@media (max-width: 576px) {
    .page-hero-text-wrapper {
        padding: 8px 15px;
    }
}

/* Trusted Partners Section Styling */
.drivigo-partners-section {
    /* background-color: #f8f9fa; */ /* Optional: light background for the section */
}

.partner-logo img {
    max-height: 70px; /* Max height for logos */
    /* filter: grayscale(100%); Optional: make logos grayscale by default */
    /* transition: filter 0.3s ease-in-out; */
}

/* Optional: remove grayscale on hover */
/*
.partner-logo img:hover {
    filter: grayscale(0%);
}
*/
