/* user/themes/regard-sur/css/agence.css */

/* ===== VARIABLES CSS ===== */
:root {
    --agence-primary-orange: #EE7900;
    --agence-primary-bg: #1c1c1c;
    --agence-text-light: #f9f9f9;
    --agence-text-muted: rgba(249, 249, 249, 0.7);
    --agence-border-radius: 12px;
    --agence-transition: all 0.3s ease;
    --agence-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --agence-shadow-hover: 0 15px 40px rgba(238, 121, 0, 0.2);
	--text-white: #f9f9f9;
    --accent-orange: #EE7900;
}

/* ===== HERO SECTION ===== */
.agence-hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--agence-primary-bg);
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-height, 80px) + 2rem) 2rem 2rem;
}

.agence-hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--agence-text-light);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--agence-text-light) 0%, var(--agence-primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight {
    color: var(--agence-primary-orange);
    -webkit-text-fill-color: var(--agence-primary-orange);
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--agence-primary-orange);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--agence-text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--agence-primary-orange) 0%, #ff8800 100%);
    color: var(--agence-primary-bg);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--agence-transition);
    position: relative;
    overflow: hidden;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--agence-shadow-hover);
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--agence-border-radius);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--agence-transition);
}

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

/* ===== BEHIND THE AGENCY SECTION ===== */
.behind-agency {
    padding: 80px 0;
    background-color: #1c1c1c;
}

.behind-agency .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BACKGROUND ÉTOILES ANIMÉES ===== */

/* Étoiles filantes avec Font Awesome */
.shooting-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shooting-star {
    position: absolute;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4);
    animation: shoot 3s linear infinite;
    opacity: 0;
}

/* Variante étoile orangée */
.shooting-star.orange {
    color: #EE7900;
    text-shadow: 
        0 0 15px rgba(238, 121, 0, 0.9),
        0 0 30px rgba(238, 121, 0, 0.6),
        0 0 45px rgba(238, 121, 0, 0.4);
}

/* Variante grosse étoile */
.shooting-star.big {
    font-size: 28px;
}

/* Positions et délais différents pour chaque étoile */
.shooting-star:nth-child(1) {
    top: 8%;
    right: 15%;
    animation-delay: 0s;
    animation-duration: 2.8s;
}

.shooting-star:nth-child(2) {
    top: 22%;
    right: 45%;
    animation-delay: 1.5s;
    animation-duration: 3.2s;
}

.shooting-star:nth-child(3) {
    top: 12%;
    right: 65%;
    animation-delay: 2.8s;
    animation-duration: 2.5s;
}

.shooting-star:nth-child(4) {
    top: 28%;
    right: 8%;
    animation-delay: 4.2s;
    animation-duration: 3.5s;
}

.shooting-star:nth-child(5) {
    top: 18%;
    right: 82%;
    animation-delay: 5.5s;
    animation-duration: 2.9s;
}

.shooting-star:nth-child(6) {
    top: 35%;
    right: 35%;
    animation-delay: 3.5s;
    animation-duration: 3.1s;
}

/* Animation des étoiles filantes */
@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(-500px) translateY(500px) rotate(-45deg);
        opacity: 0;
    }
}

/* Étoiles fixes en arrière-plan */
.static-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.static-star {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    animation: twinkle 3s ease-in-out infinite;
}

.static-star:nth-child(odd) {
    animation-delay: 1s;
}

.static-star:nth-child(3n) {
    color: rgba(238, 121, 0, 0.3);
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===== ANIMATIONS HERO AGENCE ===== */

/* États initiaux — éléments invisibles avant animation */
.agence-hero .hero-image {
    opacity: 0;
}

/* Titre : glisse depuis la gauche */
.agence-hero .hero-title {
    animation: heroFadeSlideLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
    opacity: 0;
}

/* Tagline : glisse depuis la gauche, décalée */
.agence-hero .hero-tagline {
    animation: heroFadeSlideLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    opacity: 0;
}

/* Description : idem, plus tard */
.agence-hero .hero-description {
    animation: heroFadeSlideLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
    opacity: 0;
}

/* CTA : apparition simple */
.agence-hero .hero-cta {
    animation: heroFadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
    opacity: 0;
}

/* Image : glisse depuis la droite */
.agence-hero .hero-image {
    animation: heroFadeSlideRight 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

@keyframes heroFadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Respect des préférences d'accessibilité */
@media (prefers-reduced-motion: reduce) {
    .agence-hero .hero-title,
    .agence-hero .hero-tagline,
    .agence-hero .hero-description,
    .agence-hero .hero-cta,
    .agence-hero .hero-image {
        animation: none;
        opacity: 1;
    }
}

/* ===== BEHIND THE AGENCY SECTION ===== */
.behind-agency .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.behind-agency .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    position: relative;
}

.behind-agency .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    border-radius: 2px;
}

.behind-agency .section-description {
    margin-top: 1.5rem;
}

.behind-agency .section-description p {
    color: rgba(249, 249, 249, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Bloc derrière l'agence */
.behind-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.behind-block:last-child {
    margin-bottom: 0;
}

/* Image */
.behind-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

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

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

/* Texte */
.behind-text {
    color: #f9f9f9;
    font-size: 1.1rem;
    line-height: 1.8;
}

.behind-text strong {
    color: var(--agence-primary-orange);
    font-weight: 700;
}

.behind-text p {
    margin-bottom: 1.2rem;
}

.behind-text p:last-child {
    margin-bottom: 0;
}

/* Bloc inversé (image à gauche, texte à droite) */
.behind-block-reverse {
    grid-template-columns: 1fr 1fr;
}

/* ===== VALUES SECTION ===== */
.values {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2a2a2a 0%, var(--agence-primary-bg) 100%);
    color: var(--agence-text-light);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    position: relative;
}

.values-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    border-radius: 2px;
}

.values-header .section-description {
    margin-top: 1.5rem;
}

.values-header .section-description p {
    color: rgba(249, 249, 249, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Grid 2x2 */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cartes individuelles */
.value-card {
    position: relative;
    padding: 2.5rem;
    border-radius: var(--agence-border-radius);
    border: 1px solid rgba(238, 121, 0, 0.1);
    transition: var(--agence-transition);
    overflow: hidden;
}

/* Alternance fond en damier */
.value-card.value-1,
.value-card.value-4 {
    background: #252525;
}

.value-card.value-2,
.value-card.value-3 {
    background: #1c1c1c;
}

/* Icône géante en background */
.value-card::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    right: -20px;
    bottom: -20px;
    background-image: var(--icon-bg);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.03;
    pointer-events: none;
    filter: brightness(0) invert(1);
}

/* Icône géante clonée via JS */
.value-card .icon-bg-giant {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 180px;
    color: #ffffff;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

/* Assure que le contenu passe au-dessus */
.value-card .value-icon,
.value-card .value-title,
.value-card .value-description {
    position: relative;
    z-index: 1;
}

/* Afficher seulement quand Font Awesome est chargé */
body.fa-loaded .value-card::after {
    opacity: 0.03;
}

/* Hover effet */
.value-card:hover {
    background: #2a2a2a;
    border-color: rgba(238, 121, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(238, 121, 0, 0.15);
}

/* Icône normale */
.value-card .value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--agence-primary-orange);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: none;
}

.value-card .value-icon::before {
    display: none;
}

.value-card .value-icon i {
    font-size: 1.5rem;
    color: var(--agence-primary-orange);
}

/* Contenu texte */
.value-card .value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--agence-text-light);
    margin-bottom: 1rem;
}

.value-card .value-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    padding: 6rem 2rem;
    background: var(--agence-primary-bg);
    color: var(--agence-text-light);
    overflow: hidden;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 5rem;
}

.why-choose-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    position: relative;
}

.why-choose-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    border-radius: 2px;
}

.why-choose-header .section-description {
    margin-top: 1.5rem;
}

.why-choose-header .section-description p {
    color: rgba(249, 249, 249, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}


/* Timeline horizontale */
.why-choose-timeline {
    display: flex;
    gap: 60px;
    position: relative;
    padding: 40px 20px;
}

/* Ligne horizontale centrale */
.why-choose-timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, 
        transparent 0%, 
        var(--agence-primary-orange) 10%, 
        var(--agence-primary-orange) 90%, 
        transparent 100%);
    z-index: 0;
}

/* Étape individuelle */
.why-choose-step {
    flex: 1;
    min-width: 250px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.why-choose-step:nth-child(1) { animation-delay: 0.2s; }
.why-choose-step:nth-child(2) { animation-delay: 0.4s; }
.why-choose-step:nth-child(3) { animation-delay: 0.6s; }
.why-choose-step:nth-child(4) { animation-delay: 0.8s; }

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

/* Numéro de l'étape */
.choose-number {
    width: 60px;
    height: 60px;
    background: var(--agence-primary-bg);
    border: 3px solid var(--agence-primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--agence-primary-orange);
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Hover uniquement sur desktop */
@media (hover: hover) and (pointer: fine) {
    .why-choose-step:hover .choose-number {
        background: var(--agence-primary-orange);
        color: var(--agence-primary-bg);
        transform: scale(1.1);
    }
}

/* Icône Font Awesome avec couleur dynamique */
.choose-icon {
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.choose-icon i {
    font-size: 4rem;
    transition: all 0.3s ease;
}

/* Couleurs individuelles par étape via data-attribute */
.why-choose-step:nth-child(1) .choose-icon i {
    color: #EE7900;
}

.why-choose-step:nth-child(2) .choose-icon i {
    color: #F59E0B;
}

.why-choose-step:nth-child(3) .choose-icon i {
    color: #10B981;
}

.why-choose-step:nth-child(4) .choose-icon i {
    color: #06B6D4;
}

/* Contenu */
.choose-content {
    text-align: center;
}

.choose-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--agence-primary-orange);
}

.choose-description {
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.7;
}

.choose-description strong {
    color: var(--agence-primary-orange);
    font-weight: 600;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--agence-primary-orange);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--agence-transition);
}

.scroll-indicator:hover {
    color: var(--agence-text-light);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .agence-hero-content,
    .behind-agency-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
	
	.why-choose-timeline {
        flex-direction: column;
        gap: 80px;
        padding: 0;
    }

    .why-choose-timeline::before {
        top: 0;
        left: 30px;
        right: auto;
        bottom: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(to bottom, 
            transparent 0%, 
            var(--agence-primary-orange) 5%, 
            var(--agence-primary-orange) 95%, 
            transparent 100%);
    }

    .why-choose-step {
        padding-left: 80px;
        text-align: left;
    }

    .choose-number {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
    }

    .choose-icon {
        margin-bottom: 16px;
        margin-left: 0;
        justify-content: flex-start;
    }
    
    .choose-icon i {
        font-size: 3rem;
    }

    .choose-content {
        text-align: left;
    }
    
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
	.shooting-star {
        font-size: 16px;
    }
    
    .shooting-star.big {
        font-size: 22px;
    }
    
    .static-star {
        font-size: 8px;
    }
	
    .behind-agency .section-title,
    .values-header .section-title,
    .why-choose-header .section-title {
        font-size: 2.2rem;
    }
    
    .behind-agency .section-description p,
    .values-header .section-description p,
    .why-choose-header .section-description p {
        font-size: 1rem;
    }

    .behind-block,
    .behind-block-reverse {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .behind-block-reverse .behind-text {
        order: 1;
    }
    
    .behind-block-reverse .behind-image {
        order: 2;
    }
    
    /* 2eme image */
    .behind-block-reverse .behind-image {
        height: auto;
        overflow:visible;
        box-shadow: none;
        display: flex;
        justify-content: center;
    }
    
    .behind-block-reverse .behind-image img {
    height: auto;               
    width: 60%;
    object-fit: initial;        
    border-radius: 12px;
    display: block;
    }
    
    .behind-image {
        height: 350px;
    }
    
    .behind-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
	
	.why-choose-section {
        padding: 4rem 1rem;
    }

    .why-choose-header {
        margin-bottom: 4rem;
    }

    .why-choose-step {
        padding-left: 70px;
    }

    .choose-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .choose-icon i {
        font-size: 2.5rem;
    }

    .choose-title {
        font-size: 1.3rem;
    }
    
}

@media (max-width: 480px) {
    .agence-hero {
        padding: 0 1rem;
    }
    
    .values,
    .why-us,
    .expertise-domains {
        padding: 4rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .person-image {
        width: 200px;
        height: 200px;
    }
    
    .value-icon,
    .why-us-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .why-us-icon i {
        font-size: 1.2rem;
    }
    
    .why-us-item {
        padding: 1.5rem;
    }
	
	.behind-agency {
        padding: 50px 0;
    }
    
    .behind-block {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .behind-block-reverse {
        grid-template-columns: 1fr;
    }
    
    .behind-image {
        height: 300px;
    }
    
    .behind-text {
        font-size: 1rem;
    }
}

/* ===== ANIMATIONS AOS ===== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Animation fade-left (depuis la droite) */
[data-aos="fade-left"] {
    opacity: 0;
    transition: opacity 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
}

/* Animation fade-in (simple apparition) */
[data-aos="fade-in"] {
    opacity: 0;
    transition: opacity 0.8s ease;
}

[data-aos="fade-in"].aos-animate {
    opacity: 1;
}

/* Animation zoom-in */
[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

/* Focus states for accessibility */
.hero-cta:focus-visible,
.contact-btn:focus-visible {
    outline: 2px solid var(--agence-primary-orange);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .agence-hero,
    .behind-agency,
    .values,
    .why-us {
        background: white !important;
        color: black !important;
        padding: 2rem 0;
        page-break-inside: avoid;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-cta,
    .contact-btn {
        background: transparent !important;
        color: black !important;
        border: 1px solid black !important;
    }
}