/* ========================================
   CIMENTERIE DE SIGUS - Styles Principaux
   Couleurs: Bleu et Blanc
   ======================================== */

:root {
    --primary-blue: #1a5276;
    --secondary-blue: #2980b9;
    --light-blue: #3498db;
    --accent-blue: #5dade2;
    --dark-blue: #154360;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --text-dark: #2c3e50;
    --success-green: #27ae60;
    --warning-orange: #f39c12;
    --danger-red: #e74c3c;
}

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

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.top-bar {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--accent-blue);
}

.main-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container {
    width: 100px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 0; 
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-container .logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* sécurité */
}

.logo-container i {
    color: var(--white);
    font-size: 1.5rem;
}

.company-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.company-name span {
    display: block;
    font-size: 0.75rem;
    color: var(--secondary-blue);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.8rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--light-blue);
    color: var(--white);
}

/* ========================================
   HERO SLIDER
   ======================================== */

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

.hero-slider .carousel-item {
    position: relative;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 67, 96, 0.8) 0%, rgba(26, 82, 118, 0.6) 100%);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background: #000;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    padding: 0 20px;
    z-index: 10;
}

.carousel-caption.left {
    text-align: left;
}

.carousel-caption.right {
    text-align: right;
}

.carousel-caption.white {
    color: white;
}

.carousel-caption.dark {
    color: var(--text-dark);
}

.carousel-caption .subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.carousel-caption .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.carousel-caption .description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.carousel-caption.left .description,
.carousel-caption.right .description {
    margin-left: 0;
    margin-right: 0;
}

.carousel-caption .btn {
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.carousel-caption .btn-primary {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    border: none;
}

.carousel-caption .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-caption .btn-outline-light:hover {
    background: white;
    color: var(--primary-blue);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

.carousel-indicators button.active {
    background-color: white;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Hero Section (fallback) */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-icon {
    font-size: 15rem;
    opacity: 0.2;
}

.btn-hero {
    background: var(--white);
    color: var(--primary-blue);
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-hero:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   SECTIONS COMMUNES
   ======================================== */

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--accent-blue));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--dark-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 25px auto 0;
}

/* ========================================
   PRESENTATION SECTION
   ======================================== */

.presentation-section {
    background: var(--light-gray);
}

.presentation-content h3 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
}

.presentation-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.stats-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.stats-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-blue);
    display: block;
}

.stats-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   MOT DU PDG
   ======================================== */

.pdg-section {
    background: var(--white);
}

.pdg-image {
    position: relative;
}

.pdg-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.pdg-quote {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-blue);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    opacity: 0.3;
    margin-bottom: 15px;
    display: block;
}

.pdg-name {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 20px;
}

.pdg-title {
    color: var(--dark-gray);
    font-size: 0.9rem;
}
/* ========================================
   MANAGEMENT SECTION
   ======================================== */

.Management-section {
    background: var(--light-gray);
}

.Management-section #print-area p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.Management-section #print-area h3 {
    color: var(--primary-blue);
    font-weight: 700;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid var(--secondary-blue);
}

.Management-section #print-area ul {
    padding-left: 20px;
}

.Management-section #print-area ul li {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 8px;
}
/* ========================================
   POLITIQUE & ENGAGEMENT
   ======================================== */

.engagement-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
}

.engagement-section .section-title {
    color: var(--white);
}

.engagement-section .section-title::after {
    background: var(--accent-blue);
}

.engagement-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.engagement-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.engagement-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.engagement-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-blue);
}

.engagement-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.engagement-card p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========================================
   ACTUALITÉS
   ======================================== */

.news-section {
    background: var(--light-gray);
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 82, 118, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.news-card:hover .news-overlay {
    opacity: 1;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: var(--secondary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   PRODUITS
   ======================================== */

.products-section {
    background: var(--white);
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--medium-gray);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-blue);
}

.product-image {
    height: 250px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 82, 118, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 25px;
}

.product-category {
    color: var(--secondary-blue);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.btn-product {
    background: var(--secondary-blue);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-product:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Fiche Technique */
.technical-sheet {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.technical-sheet h4 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-blue);
}

.specs-table {
    width: 100%;
}

.specs-table tr {
    border-bottom: 1px solid var(--medium-gray);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 12px 0;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--primary-blue);
    width: 40%;
}

/* ========================================
   COMMERCIAL - POINTS DE VENTE
   ======================================== */

.commercial-section {
    background: var(--light-gray);
}

.sales-point-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.sales-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.sales-point-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.sales-point-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.sales-point-info {
    color: var(--dark-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sales-point-info i {
    color: var(--secondary-blue);
    margin-top: 4px;
}

/* Formulaire Devenir Client */
.client-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
    padding: 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 0.2rem rgba(41, 128, 185, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(41, 128, 185, 0.4);
}

/* ========================================
   APPELS D'OFFRES
   ======================================== */

.tenders-section {
    background: var(--white);
}

.tender-card {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.tender-card:hover {
    border-color: var(--secondary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tender-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.tender-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.tender-status {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tender-status.open {
    background: rgba(39, 174, 96, 0.15);
    color: var(--success-green);
}

.tender-status.closed {
    background: rgba(231, 76, 60, 0.15);
    color: var(--danger-red);
}

.tender-deadline {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.tender-deadline i {
    color: var(--warning-orange);
}

.tender-description {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-tender {
    background: var(--secondary-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-tender:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-icon {
    width: 65px;
    height: 50px;
    background: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-logo-icon i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-blue);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--accent-blue);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 25px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ========================================
   BREADCRUMB
   ======================================== */

.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.breadcrumb-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: var(--white);
}

.breadcrumb-nav .active {
    color: var(--accent-blue);
}

/* ========================================
   PAGINATION
   ======================================== */

.pagination {
    justify-content: center;
    margin-top: 50px;
}

.page-link {
    color: var(--primary-blue);
    border: 2px solid var(--medium-gray);
    margin: 0 5px;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    color: var(--white);
}

.page-item.active .page-link {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

/* ========================================
   ALERTS
   ======================================== */

.alert {
    border-radius: 10px;
    padding: 20px;
    border: none;
}

.alert-success {
    background: rgba(39, 174, 96, 0.15);
    color: var(--success-green);
}

.alert-danger {
    background: rgba(231, 76, 60, 0.15);
    color: var(--danger-red);
}

.alert-warning {
    background: rgba(243, 156, 18, 0.15);
    color: var(--warning-orange);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .carousel-caption .hero-title {
        font-size: 2.2rem;
    }
    
    .carousel-caption .description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        box-shadow: none;
        background: var(--light-gray);
        margin-top: 5px;
        border-radius: 8px;
    }
    .navbar-nav .dropend .dropdown-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100%;
    margin-left: 15px;
    border-left: 3px solid var(--secondary-blue);
    }
}
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section .hero-title,
    .carousel-caption .hero-title {
        font-size: 1.8rem;
    }
    
    .breadcrumb-title {
        font-size: 2rem;
    }
    
    .breadcrumb-section {
        padding: 60px 0;
    }
    
    .company-name {
        font-size: 1.1rem;
    }
    
    .client-form {
        padding: 25px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}
.nav-tabs .nav-link {
    border-radius: 25px !important;
    border: 2px solid var(--secondary-blue) !important;
    color: var(--secondary-blue) !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    transition: all 0.3s ease;
    background: white;
    margin: 2px;
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
    background: var(--secondary-blue) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26,35,126,0.25);
}
.nav-tabs {
    border-bottom: none !important;
}
.dossier-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dossier-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--dark-gray);
    line-height: 1.5;
}
.dossier-list li:last-child {
    border-bottom: none;
}
.dossier-list li i {
    color: #28a745;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.badge-optional {
    background: #e8f4fd;
    color: var(--secondary-blue);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
    white-space: nowrap;
}
.badge-urgent {
    background: #fff3cd;
    color: #856404;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
    white-space: nowrap;
}
