/* ===== VARIABLES ===== */
:root {
    --primary-color: #0f172a;
    --secondary-color: #334155;
    --accent-color: #3b82f6;
    --text-color: #334155;
    --light-bg: #f8fafc;
    --dark-bg: #0f172a;
    --border-color: #e2e8f0;
    --back-navbar: #eae7f2;
}

/* ===== GENERAL ===== */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark-bg);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.contact-info span {
    display: inline-block;
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--accent-color);
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.social-links {
    display: inline-flex;
    gap: 10px;
}

.social-link {
    color: white;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
.navbar {

    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-height: auto !important;
}

.navbar .container {
    
    background: var(--back-navbar);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

    border-radius: 20px;
    box-shadow: 11px 10px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 11px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 11px 10px 5px 0px rgba(0,0,0,0.75);
}

.logo-container {
    flex: 0 0 auto;
}

.logo-container .navbar-brand {
    padding: 0;
    margin: 0;
    display: block;
}

.site-logo {
    height: 100px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.nav-menu-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    display: block;
}

.brand-text small {
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-color);
    display: block;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 8px 15px !important;
    transition: color 0.3s;
    font-size: 15px;
    line-height: 1.5 !important;
}

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

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

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

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.btn-quote {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5 !important;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-quote:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: white;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    height: 700px;
    position: relative;
    overflow: hidden;
}

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

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomEffect 10s infinite alternate;
}

@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(30,41,59,0.8) 100%);
}

.hero-slider .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.slide-subtitle {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.slide-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
}

.slide-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
}

.slide-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* ===== STATISTIQUES ===== */
.stats-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 30px;
    color: white;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--secondary-color);
    margin: 0;
}

/* ===== SECTIONS ===== */
.section-header {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

/* ===== SERVICES ===== */
.services-section {
    background: #ffffff;
    padding: 60px 0;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15,23,42,0.1);
}

.service-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #f5f5f5;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

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

.service-icon-wrapper {
    padding: 40px 0 20px;
    text-align: center;
    background: #f8fafc;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: var(--accent-color);
}

.service-icon i {
    font-size: 40px;
    color: white;
}

.service-content {
    padding: 25px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: var(--accent-color);
}

.service-content p {
    color: var(--secondary-color);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    gap: 12px;
    color: var(--accent-color);
}

.service-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== PROJETS ===== */
.projects-section {
    background: var(--light-bg);
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(30,41,59,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.project-info {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h5 {
    font-size: 20px;
    margin-bottom: 5px;
    color: white;
}

.project-info p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.project-content {
    padding: 25px;
}

.project-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* ===== ÉQUIPE ===== */
.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--secondary-color);
}

.team-info {
    padding: 20px;
}

.team-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* ===== TÉMOIGNAGES ===== */
.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    margin-right: 2px;
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image,
.author-image-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-image-placeholder {
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 24px;
}

.author-info h6 {
    font-size: 16px;
    margin-bottom: 5px;
}

.author-info small {
    color: var(--secondary-color);
}

/* ===== APPEL À L'ACTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 30px;
}

/* ===== PARTENAIRES ===== */
.partner-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.partner-item img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-item:hover img {
    filter: grayscale(0);
}

/* ===== ABOUT ===== */
.about-section {
    padding: 80px 0;
}

.about-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    min-width: 150px;
}

.experience-badge .years {
    font-size: 48px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.feature-item i {
    font-size: 20px;
}

/* ===== FOOTER ===== */
.footer-section {
    background: var(--dark-bg);
    color: white;
}

.footer-widget h5 {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

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

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.footer-contact i {
    color: var(--accent-color);
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    font-size: 14px;
    padding: 15px 0;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

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

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    z-index: 99;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 50px;
    }
}

@media (max-width: 992px) {
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-container {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .site-logo {
        height: 70px;
    }
    
    .nav-menu-container {
        width: 100%;
        justify-content: flex-start;
    }
    
    .navbar-collapse {
        background: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-top: 10px;
    }
    
    .hero-slider {
        height: 600px;
    }
    
    .slide-title {
        font-size: 40px;
    }
    
    .service-image-container {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .site-logo {
        height: 60px;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slide-title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stats-section {
        margin-top: 30px;
    }
    
    .service-image-container {
        height: 180px;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-content h3 {
        font-size: 18px;
    }
    
    .service-content p {
        font-size: 14px;
    }
    
    .experience-badge {
        right: 0;
        padding: 15px;
        min-width: 120px;
    }
    
    .experience-badge .years {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .site-logo {
        height: 50px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-title {
        font-size: 24px;
    }
    
    .slide-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .slide-buttons .btn.me-3 {
        margin-right: 0 !important;
    }
    
    .service-image-container {
        height: 160px;
    }
}

/* ========== VIDEO GALLERY STYLES ========== */

.video-gallery-section {
    background: #f8f9fa;
}

.main-video-container {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.main-video-wrapper iframe,
.main-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
}

.video-info-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.video-info-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.video-thumbnail-card {
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 12px;
    overflow: hidden;
}

.video-thumbnail-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail-card.active .thumbnail-image {
    box-shadow: 0 0 0 3px #1e3c72;
}

.thumbnail-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a2e;
    aspect-ratio: 16/9;
}

.thumbnail-image img,
.thumbnail-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-thumbnail-card:hover .thumbnail-image img,
.video-thumbnail-card:hover .thumbnail-image video {
    transform: scale(1.05);
}

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

.video-thumbnail-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 30px;
    color: white;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.thumbnail-info {
    padding: 10px 0;
    text-align: center;
}

.thumbnail-title {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .video-info-overlay h3 { font-size: 14px; }
    .video-info-overlay p { font-size: 11px; }
    .thumbnail-title { font-size: 11px; }
    .play-overlay i { width: 35px; height: 35px; font-size: 20px; }
}


/*=================   PAGE HEADER   =================*/

.page-header-animated {
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 100px 0;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle-1 { width: 300px; height: 300px; top: -100px; right: -100px; animation-delay: 0s; }
.particle-2 { width: 200px; height: 200px; bottom: -50px; left: -80px; animation-delay: 1s; }
.particle-3 { width: 150px; height: 150px; top: 50%; left: 20%; animation-delay: 2s; }
.particle-4 { width: 100px; height: 100px; bottom: 20%; right: 15%; animation-delay: 3s; }
.particle-5 { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.page-header-animated .header-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.page-header-animated .header-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-header-animated .header-underline {
    width: 80px;
    height: 3px;
    background: #ffd700;
    margin: 0 auto 20px;
}

.page-header-animated .header-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}
