/* ========================================
   DIVIN CONCEPT - STYLES PRINCIPALS
   ======================================== */

:root {
    --primary-color: #0055a4;
    --primary-light: #0077cc;
    --accent-color: #e8f4ff;
    --accent-light: #f5fbff;
    --dark-color: #1a3a4a;
    --light-color: #f5fbff;
    --text-color: #2c3e50;
    --text-light: #4a5f6f;
    --border-color: #d0e8ff;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 2px 8px rgba(0, 85, 164, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 85, 164, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 85, 164, 0.16);
}

/* Breakpoints supplémentaires Tailwind */
@supports (-webkit-touch-callout: none) {
    /* Mobile optimizations */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Extra small screens (xs) */
@media (max-width: 374px) {
    html {
        font-size: 13px;
    }
}

/* Small screens (sm) */
@media (min-width: 375px) and (max-width: 640px) {
    html {
        font-size: 14px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', 'Raleway', sans-serif;
    color: var(--text-color);
    background: #ffffff;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* HERO SECTION */
.hero-modern {
    background: linear-gradient(135deg, rgba(0, 85, 164, 0.75) 0%, rgba(0, 119, 204, 0.75) 100%), url('../assets/images/wedding.jpg');
    background-position: center;
    background-size: cover;
    color: white;
    padding: 6rem 2rem;
    min-height: 750px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content-modern h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-content-modern p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.btn-primary {
    background: linear-gradient(135deg, #0077cc 0%, #0099ff 100%);
    color: white;
    border: 2px solid #0077cc;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 119, 204, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid #0077cc;
}

.slider-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.slider-image.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot.active {
    background: #0077cc;
    width: 32px;
    border-radius: 6px;
}

/* INFO SECTION */
.info-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e8f4ff 100%);
}

.info-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.info-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
}

/* HOW SECTION */
.how-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.step-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 119, 204, 0.2);
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 85, 164, 0.15);
    border-color: #0077cc;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 85, 164, 0.25);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* SERVICES SECTION */
.services-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #e8f4ff 0%, #ffffff 100%);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 119, 204, 0.15);
    border-top: 4px solid #0077cc;
    box-shadow: 0 10px 30px rgba(0, 85, 164, 0.08);
    transition: var(--transition);
    text-align: center;
}

.service-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 119, 204, 0.15);
    border-top: 4px solid #0099ff;
}

.service-icon-modern {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-card-modern h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-card-modern p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-link {
    color: #0077cc;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link:hover {
    color: #0099ff;
    transform: translateX(5px);
}

/* EVENTS SECTION */
.events-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #e8f4ff 100%);
}

.events-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.event-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border: 1px solid rgba(0, 119, 204, 0.15);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 85, 164, 0.08);
    transition: var(--transition);
}

.event-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 119, 204, 0.15);
}

.event-image-modern {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
}

.event-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card-modern:hover .event-image-modern img {
    transform: scale(1.08);
}

.event-content-modern {
    padding: 2rem;
}

.event-date-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0077cc 0%, #0099ff 100%);
    color: white;
    padding: 0.7rem 1.3rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 119, 204, 0.25);
}

.event-content-modern h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.event-content-modern p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 119, 204, 0.2);
}

/* FAQ SECTION */
.faq-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e8f4ff 0%, #ffffff 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 119, 204, 0.15);
    border-left: 5px solid #0077cc;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(0, 119, 204, 0.1);
    border-left: 5px solid #0099ff;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* STATS SECTION */
.stats-section {
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    color: white;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 119, 204, 0.2);
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #00bfff;
}

.stat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 700;
}

.stat-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* CONTACT SECTION */
.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #e8f4ff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 85, 164, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 119, 204, 0.15);
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 119, 204, 0.15);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content-modern h1 {
        font-size: 3.2rem;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .steps-grid,
    .services-grid-modern,
    .events-grid-modern,
    .faq-grid,
    .stats-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* ========== OBSOLETE - MOVED TO header.php ========== */
    /* All header/navigation CSS has been moved to includes/header.php */
    /* These classes are no longer used */

    .hero-modern {
        padding: 3rem 1.5rem;
        min-height: 600px;
    }

    .hero-page {
        padding: 5rem 1.5rem;
        min-height: 320px;
    }

    .hero-page-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-page-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-content-modern h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-content-modern p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .slider-container {
        height: 280px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }

    .steps-grid,
    .services-grid-modern,
    .events-grid-modern,
    .faq-grid,
    .stats-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .info-content h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .hero-modern {
        padding: 2rem 1rem;
    }

    .hero-page {
        padding: 3rem 1rem;
        min-height: 280px;
    }

    .hero-page-content h1 {
        font-size: 1.8rem;
    }

    .hero-page-content p {
        font-size: 1rem;
    }

    .hero-content-modern h1 {
        font-size: 1.8rem;
    }
    
    .hero-content-modern p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .slider-container {
        height: 220px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-card h3 {
        font-size: 1.3rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO PAGES */
.hero-page {
    background: url('../assets/images/event-planning.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-page {
        height: 550px;
        background-attachment: scroll;
        background-size: contain;
    }
}

.hero-page::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 0;
    height: 0;
    background: transparent;
    border-radius: 50%;
}

.hero-page::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 0;
    height: 0;
    background: transparent;
    border-radius: 50%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-page-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-page-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.hero-page-content p {
    font-size: 1.4rem;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, #e8f4ff 0%, #f5fbff 100%);
    color: #1a3a4a;
    padding: 4rem 2rem 1.5rem;
    margin-top: 4rem;
    border-top: 3px solid #0077cc;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #0077cc;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-section p {
    color: #4a5f6f;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #0055a4;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-section a:hover {
    color: #0077cc;
    text-decoration: underline;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #0077cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 119, 204, 0.2);
    color: #4a5f6f;
    font-size: 0.9rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* SERVICE DETAIL SECTION */
.service-detail-section {
    padding: 4rem 2rem;
}

.service-detail-box {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(0, 119, 204, 0.15);
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
    transition: var(--transition);
}

.service-detail-box:hover {
    box-shadow: 0 15px 40px rgba(0, 85, 164, 0.12);
    border-color: #0077cc;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.service-detail-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.2);
}

.service-detail-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.service-detail-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.service-detail-content ul {
    list-style: none;
}

.service-detail-content ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    color: #555;
    position: relative;
    font-size: 1rem;
}

.service-detail-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #0077cc;
}

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-image {
        height: 250px;
        order: -1;
    }

    .service-detail-box {
        padding: 1.5rem;
    }
}
.detail-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
}

.detail-main {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
    border: 1px solid rgba(0, 119, 204, 0.1);
}

.detail-hero-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 85, 164, 0.2);
    overflow: hidden;
}

.detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 119, 204, 0.2);
}

.detail-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 800;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.detail-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-meta i {
    color: #0077cc;
}

.detail-content {
    line-height: 1.8;
    color: #555;
}

.detail-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.detail-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 119, 204, 0.15);
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
}

.sidebar-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.sidebar-card a {
    display: block;
    padding: 1rem;
    margin-bottom: 0.5rem;
    color: #0055a4;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    border-left: 4px solid #0077cc;
    padding-left: 1.2rem;
}

.sidebar-card a:hover {
    background: rgba(0, 119, 204, 0.1);
    color: #0077cc;
    transform: translateX(5px);
}

/* CONTACT INFO SECTION */
.contact-info-section {
    padding: 4rem 2rem;
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 119, 204, 0.15);
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 119, 204, 0.15);
    border-color: #0077cc;
}

.info-icon {
    font-size: 3rem;
    color: #0077cc;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.info-card p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* FORM SECTION */
.form-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #e8f4ff 0%, #ffffff 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 119, 204, 0.15);
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0, 119, 204, 0.2);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0077cc;
    box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: linear-gradient(135deg, #0077cc 0%, #0099ff 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 119, 204, 0.3);
}

@media (max-width: 768px) {
    .detail-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .detail-hero-image {
        height: 300px;
    }

    .detail-header h1 {
        font-size: 1.8rem;
    }

    .detail-main {
        padding: 1.5rem;
    }

    .sidebar-card {
        padding: 1.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SERVICE DETAIL STYLES
   ======================================== */
.service-detail-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-box {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(0, 119, 204, 0.15);
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
    transition: var(--transition);
}

.service-detail-box:hover {
    box-shadow: 0 15px 40px rgba(0, 85, 164, 0.12);
    border-color: #0077cc;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.service-detail-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.2);
}

.service-detail-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.service-detail-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    color: #555;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.service-detail-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #0077cc;
    font-size: 1.2rem;
}

/* ========================================
   WRAPPER & CONTENT SECTIONS
   ======================================== */
.section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-wrapper.section-light {
    background: #f5fbff;
}

.content-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
}

.content-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

/* ========================================
   TEAM CARDS STYLES
   ======================================== */
.team-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
    border: 1px solid rgba(0, 119, 204, 0.1);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 85, 164, 0.15);
    border-color: #0077cc;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.2);
}

.team-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-role {
    color: #0077cc;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-wrapper {
        padding: 2rem 1rem;
    }

    .content-box {
        padding: 1.5rem;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }

    .team-card h3 {
        font-size: 1.1rem;
    }
}
.detail-page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 2.5rem;
}

.detail-featured-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 85, 164, 0.15);
    margin-bottom: 2rem;
}

.detail-main-content {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
}

.detail-main-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.detail-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e8f4ff;
    flex-wrap: wrap;
}

.detail-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.detail-meta-item i {
    color: #0077cc;
    font-size: 1.1rem;
}

.detail-main-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.detail-main-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.detail-main-content h3 {
    color: #0077cc;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.detail-main-content ul, .detail-main-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.detail-main-content li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-side-card {
    background: linear-gradient(135deg, rgba(0, 85, 164, 0.95) 0%, rgba(0, 119, 204, 0.95) 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.15);
    transition: var(--transition);
}

.detail-side-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 85, 164, 0.2);
}

.detail-side-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.detail-side-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.detail-side-card ul {
    list-style: none;
}

.detail-side-card ul li {
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
}

.detail-side-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e8f4ff;
}

.detail-side-card-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1rem;
}

.detail-side-card-button:hover {
    background: #e8f4ff;
    transform: translateX(5px);
}

.related-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e8f4ff;
}

.related-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-featured-image {
        height: 300px;
    }

    .detail-main-content h1 {
        font-size: 2rem;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .detail-page-wrapper {
        padding: 1.5rem 1rem;
    }

    .service-detail-section {
        padding: 2rem 1rem;
    }

    .detail-featured-image {
        height: 250px;
    }

    .detail-main-content {
        padding: 1.5rem;
    }

    .detail-main-content h1 {
        font-size: 1.5rem;
    }

    .detail-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .detail-sidebar {
        gap: 1.5rem;
    }

    .detail-side-card {
        padding: 1.5rem;
    }

    .service-detail-image {
        height: 250px;
        font-size: 3rem;
    }

    .service-detail-grid {
        gap: 1.5rem;
    }

    .service-detail-box {
        padding: 1.5rem;
    }
}

/* ========================================
   CTA & QUICK CONTACT SECTIONS
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 100%;
}

.cta-section .section-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.quick-contact-section {
    padding: 3rem 2rem;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.quick-contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
    border: 1px solid rgba(0, 119, 204, 0.1);
    transition: var(--transition);
    color: #333;
}

.quick-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 85, 164, 0.15);
    border-color: #0077cc;
}

.quick-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
}

.quick-contact-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.quick-contact-card p {
    color: #666;
    font-size: 1rem;
}

/* ========================================
   EVENT/BLOG DETAIL PAGES
   ======================================== */
.event-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.event-status.upcoming {
    background: #e3f2fd;
    color: #1976d2;
}

.event-status.past {
    background: #f5f5f5;
    color: #999;
}

.back-link {
    margin-bottom: 2rem;
    font-size: 1rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.back-link a {
    color: #0055a4;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.back-link a:hover {
    transform: translateX(-5px);
    color: #0077cc;
}

.error-message {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.error-message h2 {
    color: #e74c3c;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.error-message p {
    color: #666;
    font-size: 1.1rem;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #ddd;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left-color: #27ae60;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border-left-color: #e74c3c;
}

.event-hero-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.15);
    overflow: hidden;
}

.event-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e8f4ff;
}

.event-detail-header h1 {
    font-size: 2.5rem;
    color: #0055a4;
    margin-bottom: 1rem;
    font-weight: 800;
}

.event-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.event-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.event-detail-meta-item i {
    color: #0077cc;
}

.event-detail-main {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
}

.event-detail-content {
    line-height: 1.9;
    color: #555;
    margin-bottom: 2rem;
}

.event-detail-content h3 {
    color: #0055a4;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.event-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card-primary {
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.15);
}

.sidebar-card-primary h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.info-value {
    color: white;
    text-align: right;
    font-weight: 700;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    padding: 1rem;
    background: white;
    color: #0055a4;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    background: #e8f4ff;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.share-btn {
    padding: 0.7rem 1rem;
    background: #f0f0f0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    color: #0055a4;
    font-weight: 600;
}

.share-btn:hover {
    background: #0055a4;
    color: white;
}

@media (max-width: 768px) {
    .quick-contact-section {
        padding: 2rem 1rem;
    }

    .event-hero-image {
        height: 300px;
        font-size: 3rem;
    }

    .event-detail-header h1 {
        font-size: 1.8rem;
    }

    .event-detail-main {
        padding: 1.5rem;
    }

    .event-detail-meta {
        flex-direction: column;
        gap: 1rem;
        font-size: 0.95rem;
    }

    .event-detail-sidebar {
        gap: 1.5rem;
    }

    .sidebar-card-primary {
        padding: 1.5rem;
    }

    .back-link {
        padding: 0 1rem;
    }

    .error-message {
        padding: 2rem 1rem;
    }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */
.about-story-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.story-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.story-content h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.story-text {
    margin-top: 2rem;
}

.story-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.story-text p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(0, 85, 164, 0.95) 0%, rgba(0, 119, 204, 0.95) 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.15);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 85, 164, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #e8f4ff;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-section {
    background: #f5fbff;
    padding: 4rem 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
    border: 1px solid rgba(0, 119, 204, 0.1);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 85, 164, 0.15);
    border-color: #0077cc;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 85, 164, 0.2);
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* ========================================
   TEAM CARDS IMPROVEMENTS
   ======================================== */
.team-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
    border: 1px solid rgba(0, 119, 204, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 85, 164, 0.15);
    border-color: #0077cc;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.2);
}

.team-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-role {
    color: #0077cc;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-story-section {
        padding: 2rem 1rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .why-choose-section {
        padding: 2rem 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
}

/* ========================================
   BLOG & EVENTS GRID STYLES
   ======================================== */
.blog-grid,
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card,
.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
    border: 1px solid rgba(0, 119, 204, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover,
.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 85, 164, 0.15);
    border-color: #0077cc;
}

.blog-image,
.event-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    overflow: hidden;
    position: relative;
}

.blog-image img,
.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img,
.event-card:hover .event-image img {
    transform: scale(1.08);
}

.blog-content,
.event-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta,
.event-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #0077cc;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-meta span,
.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-card h3,
.event-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-excerpt,
.event-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e8f4ff;
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: #f0f8ff;
    color: #0077cc;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.badge-primary {
    background: linear-gradient(135deg, rgba(0, 119, 204, 0.15) 0%, rgba(0, 153, 255, 0.15) 100%);
}

.cta-button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    align-self: flex-start;
    margin-top: auto;
}

.cta-button:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 85, 164, 0.3);
}

/* ========================================
   EVENTS SPECIFIC STYLES
   ======================================== */
.events-section {
    padding: 3rem 2rem;
}

.events-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid #0077cc;
    background: white;
    color: #0077cc;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0077cc;
    color: white;
    transform: translateY(-3px);
}

.event-status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.event-status-upcoming {
    background: #e3f2fd;
    color: #1976d2;
}

.event-status-ended {
    background: #f5f5f5;
    color: #999;
}

.event-capacity,
.event-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0077cc;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
    background: linear-gradient(135deg, #f5fbff 0%, #e8f4ff 100%);
    text-align: center;
    padding: 3rem 2rem;
}

.newsletter-section .section-title {
    color: var(--primary-color);
}

.newsletter-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 85, 164, 0.1);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 85, 164, 0.2);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 85, 164, 0.3);
}

@media (max-width: 1024px) {
    .blog-grid,
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-grid,
    .events-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .events-filters {
        margin-bottom: 1.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .blog-image,
    .event-image {
        height: 200px;
    }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */
.services-overview {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-overview-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
    border: 1px solid rgba(0, 119, 204, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 85, 164, 0.15);
    border-color: #0077cc;
}

.service-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-overview-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-overview-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.learn-more {
    color: #0077cc;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.learn-more:hover {
    color: #0055a4;
    transform: translateX(5px);
}

.services-details-section {
    padding: 0 2rem 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-item {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.08);
    border: 1px solid rgba(0, 119, 204, 0.1);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-image-large {
    font-size: 6rem;
    text-align: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.service-detail-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.service-detail-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-detail-content > p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    color: #555;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.service-detail-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #0077cc;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .services-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-overview {
        padding: 2rem 1rem;
    }

    .services-details-section {
        padding: 0 1rem 2rem 1rem;
    }

    .service-detail-item {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-detail-image-large {
        font-size: 4rem;
        height: 300px;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   MISSION & VALEURS SECTION
   ======================================== */

.mission-values-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 85, 164, 0.05) 0%, rgba(245, 251, 255, 0.8) 100%);
}

.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid transparent;
    border-left: 5px solid var(--primary-light);
    box-shadow: 0 8px 24px rgba(0, 85, 164, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Premier card - Mission (Primary) */
.mission-card-primary {
    grid-column: auto;
    background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%);
    color: white;
    border-left: 5px solid #ff6b6b;
    box-shadow: 0 15px 40px rgba(0, 85, 164, 0.2);
}

.mission-card-primary .card-icon {
    color: #ffeb99;
}

.mission-card-primary h3 {
    color: white;
}

.mission-card-primary p {
    color: rgba(255, 255, 255, 0.9);
}

/* Hover effects */
.mission-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 85, 164, 0.15);
    border-color: var(--primary-light);
}

.mission-card-primary:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 85, 164, 0.25);
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-light);
    background: linear-gradient(135deg, rgba(0, 85, 164, 0.1) 0%, rgba(0, 119, 204, 0.05) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.mission-value-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(0, 85, 164, 0.2) 0%, rgba(0, 119, 204, 0.15) 100%);
    transform: rotate(10deg) scale(1.1);
}

/* Card Heading */
.mission-value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a3a4a;
    font-weight: 700;
    transition: color 0.3s ease;
}

.mission-value-card p {
    font-size: 0.95rem;
    color: #4a5f6f;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .mission-values-section {
        padding: 3rem 0;
    }

    .mission-values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-value-card {
        padding: 2rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .mission-value-card h3 {
        font-size: 1.1rem;
    }

    .mission-value-card p {
        font-size: 0.9rem;
    }
}