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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #222222;
}

a {
    text-decoration: none;
    color: inherit;
}

.site-logo {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.site-header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-toggle {
    display: none;
}

.site-brand a {
    display: flex;
    align-items: center;
}

.brand-main {
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 3px;
    color: #777777;
}

.main-nav {
    display: flex;
    gap: 38px;
    align-items: center;
}

.main-nav a {
    position: relative;

    padding: 14px 2px 10px;

    color: #333333;

    font-size: 17px;
    font-weight: 500;

    transition: color 0.25s ease;
}

/* Trait au-dessus du menu */

.main-nav a::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 0;
    height: 4px;

    background-color: #b79a6b;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}


/* Survol : trait doré */

.main-nav a:hover::before {
    width: 100%;
}


/* Page actuellement affichée */

.main-nav a.active {
    color: #132d46;
}

.main-nav a.active::before {
    width: 100%;
    background-color: #132d46;
}


/* La page active reste bleue même au survol */

.main-nav a.active:hover::before {
    background-color: #132d46;
}

.hero {
    position: relative;
    min-height: 620px;

    background-image: url("../images/accueil/intro/intro-06.webp");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 30, 50, 0.92) 0%,
            rgba(10, 30, 50, 0.75) 45%,
            rgba(10, 30, 50, 0.25) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
    padding: 80px 30px;
}

.hero-content {
    max-width: 650px;
    color: #ffffff;
}

.hero-kicker {
    display: inline-block;

    margin-bottom: 20px;

    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;

    color: #d6c29f;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.08;
    font-weight: 500;

    margin-bottom: 25px;
}

.hero p {
    max-width: 580px;

    font-size: 18px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    gap: 15px;

    margin-top: 35px;
}

.btn {
    display: inline-block;

    padding: 14px 24px;

    border-radius: 3px;

    font-size: 14px;
    font-weight: 500;

    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #b79a6b;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #a4885c;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.intro {
    padding: 100px 30px;
    background-color: #ffffff;
}

.intro-container {
    display: block;
    max-width: 1100px;
    margin: 0 auto;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}


.intro-content h2 {
    margin-bottom: 25px;

    color: #132d46;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
}

.intro-content p {
    margin-bottom: 18px;

    color: #555555;

    font-size: 16px;
    line-height: 1.8;
}

.section-kicker {
    display: block;

    margin-bottom: 15px;

    color: #a4885c;

    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.text-link {
    display: inline-block;

    margin-top: 12px;

    color: #9b7d4e;

    font-size: 15px;
    font-weight: 500;
}

.text-link:hover {
    color: #132d46;
}

.services-home {
    padding: 100px 30px;
    background-color: #f5f6f7;
}

.services-home-header {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.services-home-header h2 {
    color: #132d46;
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 18px;
}

.services-home-header p {
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    background-color: #ffffff;
    padding: 40px 35px;

    border-bottom: 3px solid transparent;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(19, 45, 70, 0.10);

    border-bottom-color: #b79a6b;
}

.service-number {
    margin-bottom: 25px;

    color: #b79a6b;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.service-card h3 {
    margin-bottom: 18px;

    color: #132d46;

    font-size: 21px;
    font-weight: 500;
}

.service-card p {
    min-height: 115px;

    margin-bottom: 25px;

    color: #666666;

    font-size: 15px;
    line-height: 1.7;
}

.service-card a {
    color: #9b7d4e;

    font-size: 14px;
    font-weight: 500;
}

.service-card a:hover {
    color: #132d46;
}

.approach {
    padding: 100px 30px;
    background-color: #132d46;
}

.approach-container {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 90px;
    align-items: center;
}

.approach .section-kicker {
    color: #d6c29f;
}

.approach-content h2 {
    margin-bottom: 25px;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
}

.approach-content > p {
    max-width: 600px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;
    line-height: 1.8;
}

.approach-points {
    margin-top: 40px;
}

.approach-point {
    display: flex;
    gap: 22px;

    padding: 22px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.approach-point > span {
    color: #d6c29f;

    font-size: 13px;
    letter-spacing: 2px;
}

.approach-point h3 {
    margin-bottom: 6px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 500;
}

.approach-point p {
    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;
    line-height: 1.6;
}

.approach-visual {
    display: flex;
    justify-content: center;
}

.approach-box {
    max-width: 360px;

    padding: 45px;

    border: 1px solid rgba(214, 194, 159, 0.5);
}

.approach-quote {
    display: block;

    margin-bottom: 15px;

    color: #d6c29f;

    font-family: Georgia, serif;
    font-size: 65px;
    line-height: 0.7;
}

.approach-box p {
    color: #ffffff;

    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 1.6;
}

.contact-cta {
    padding: 80px 30px;
    background-color: #ffffff;
}

.contact-cta-container {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.contact-cta h2 {
    max-width: 700px;

    margin-bottom: 18px;

    color: #132d46;

    font-size: 34px;
    line-height: 1.25;
    font-weight: 500;
}

.contact-cta p {
    max-width: 650px;

    color: #666666;

    font-size: 16px;
    line-height: 1.7;
}

.contact-cta-action {
    flex-shrink: 0;
}

.site-footer {
    background-color: #0d2235;
    color: #ffffff;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;

    padding: 55px 30px;

    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-title {
    display: block;

    margin-bottom: 10px;

    font-size: 20px;
    font-weight: 500;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);

    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;
}

.footer-links a:hover {
    color: #d6c29f;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    margin: 0;

    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    font-size: 13px;

    color: rgba(255, 255, 255, 0.65);

    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #d6c29f;
}

/* =========================================
   INTRO CINEMATIQUE
   ========================================= */

.site-intro {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    background-color: #0d2235;

    z-index: 9999;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 1.3s ease,
        visibility 1.3s ease;
}

.site-intro.intro-hidden {
    opacity: 0;
    visibility: hidden;
}

.intro-slides {
    position: absolute;
    inset: 0;
}

.intro-slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    opacity: 0;

    transform: scale(1.02);

    transition:
        opacity 1.6s ease,
        transform 1.6s ease;
}

.intro-slide::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(5, 20, 35, 0.25);
}

.intro-slide.active {
    opacity: 1;
    transform: scale(1);
}

.intro-message {
    position: absolute;

    left: 50%;
    bottom: 15%;

    transform: translateX(-50%) translateY(20px);

    z-index: 2;

    width: 90%;
    max-width: 850px;

    text-align: center;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(28px, 3vw, 48px);
    font-weight: 400;
    line-height: 1.3;

    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.5);

    opacity: 0;
    filter: blur(4px);

    transition:
        opacity 1.2s ease,
        transform 1.2s ease;
  
}

.intro-slide.active .intro-message {
    opacity: 1;
    filter: blur(0);

    transform: translateX(-50%) translateY(0);
}

.skip-intro {
    position: absolute;

    top: 30px;
    right: 35px;

    z-index: 5;

    padding: 10px 16px;

    border: 1px solid rgba(255, 255, 255, 0.6);

    background: rgba(0, 0, 0, 0.18);

    color: #ffffff;

    font-size: 13px;

    cursor: pointer;

    transition: background 0.2s ease;
}

.skip-intro:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* =========================================
   PAGE MON HISTOIRE
   ========================================= */

.page-hero {
    position: relative;

    min-height: 360px;

    display: flex;
    align-items: center;

    background-color: #132d46;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(13, 34, 53, 0.96),
            rgba(19, 45, 70, 0.78)
        );
}

.page-hero-container {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
    padding: 70px 30px;

    color: #ffffff;
}

.page-hero h1 {
    max-width: 760px;

    margin-bottom: 18px;

    font-size: 44px;
    line-height: 1.15;
    font-weight: 500;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
}

.story-intro {
    padding: 100px 30px;
    background-color: #ffffff;
}

.story-container {
    max-width: 1050px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 70px;
    align-items: center;
}

.story-photo img {
    display: block;
    width: 100%;
    height: auto;
}

.story-content h2 {
    margin-bottom: 25px;

    color: #132d46;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
}

.story-content p {
    margin-bottom: 18px;

    color: #555555;

    font-size: 16px;
    line-height: 1.8;
}

/* Valeurs */

.story-values {
    padding: 100px 30px;
    background-color: #f5f6f7;
}

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

.story-values-header {
    max-width: 700px;
    margin-bottom: 55px;
}

.story-values-header h2 {
    margin-bottom: 18px;

    color: #132d46;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
}

.story-values-header p {
    color: #666666;

    font-size: 16px;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.value-item {
    padding: 35px 30px;

    background-color: #ffffff;

    border-top: 3px solid #b79a6b;
}

.value-number {
    display: block;

    margin-bottom: 22px;

    color: #b79a6b;

    font-size: 12px;
    letter-spacing: 2px;
}

.value-item h3 {
    margin-bottom: 15px;

    color: #132d46;

    font-size: 20px;
    font-weight: 500;
}

.value-item p {
    color: #666666;

    font-size: 14px;
    line-height: 1.7;
}

/* Cadre professionnel */

.professional-framework {
    padding: 100px 30px;
    background-color: #132d46;
}

.professional-framework-container {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}

.professional-framework .section-kicker {
    color: #d6c29f;
}

.professional-framework-content h2 {
    margin-bottom: 25px;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
}

.professional-framework-content p {
    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.8;
}

.professional-framework-details {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.framework-item {
    display: flex;
    gap: 25px;

    padding: 25px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.framework-item > span {
    color: #d6c29f;

    font-size: 12px;
    letter-spacing: 2px;
}

.framework-item h3 {
    margin-bottom: 7px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 500;
}

.framework-item p {
    color: rgba(255, 255, 255, 0.62);

    font-size: 14px;
    line-height: 1.6;
}

/* =========================================
   PAGE MES SERVICES
   ========================================= */

.services-intro {
    padding: 90px 30px;
    background-color: #ffffff;
}

.services-intro-container {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.services-intro h2 {
    margin-bottom: 25px;

    color: #132d46;

    font-size: 38px;
    font-weight: 500;
}

.services-intro p {
    margin-bottom: 15px;

    color: #606060;

    font-size: 16px;
    line-height: 1.8;
}


/* Services détaillés */

.services-detail {
    padding: 30px 30px 100px;

    background-color: #f5f6f7;
}

.services-detail-container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail {
    display: grid;
    grid-template-columns: 90px 1fr;

    padding: 55px 0;

    border-bottom: 1px solid #dddddd;
}

.service-detail:first-child {
    border-top: 1px solid #dddddd;
}

.service-detail-number {
    color: #b79a6b;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

.service-detail h2 {
    margin-bottom: 18px;

    color: #132d46;

    font-size: 30px;
    font-weight: 500;
}

.service-detail p {
    max-width: 700px;

    margin-bottom: 22px;

    color: #606060;

    font-size: 16px;
    line-height: 1.8;
}

.service-detail ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 10px 40px;

    list-style: none;
}

.service-detail li {
    position: relative;

    padding-left: 18px;

    color: #555555;

    font-size: 15px;
    line-height: 1.6;
}

.service-detail li::before {
    content: "";

    position: absolute;

    top: 10px;
    left: 0;

    width: 5px;
    height: 5px;

    background-color: #b79a6b;

    border-radius: 50%;
}

/* =========================================
   DEROULEMENT DE L'ACCOMPAGNEMENT
   ========================================= */

.process {
    padding: 100px 30px;
    background-color: #132d46;
}

.process-container {
    max-width: 1100px;
    margin: 0 auto;
}

.process-header {
    max-width: 850px;
    margin-bottom: 55px;
}

.process .section-kicker {
    color: #d6c29f;
}

.process-header h2 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
}

.process-header p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 16px;
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-step {
    padding: 35px 30px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: #d6c29f;
}

.process-step > span {
    display: block;

    margin-bottom: 25px;

    color: #d6c29f;

    font-size: 13px;
    letter-spacing: 2px;
}

.process-step h3 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 500;
}

.process-step p {
    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    line-height: 1.7;
}

/* =========================================
   PAGE CONTACT
   ========================================= */

.contact-page {
    padding: 100px 30px;
    background-color: #f5f6f7;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
}

.contact-info h2 {
    margin-bottom: 22px;

    color: #132d46;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
}

.contact-info > p {
    color: #606060;

    font-size: 16px;
    line-height: 1.8;
}

.contact-details {
    margin-top: 40px;
}

.contact-details > div {
    padding: 20px 0;

    border-bottom: 1px solid #dddddd;
}

.contact-details span {
    display: block;

    margin-bottom: 7px;

    color: #b79a6b;

    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-details p {
    color: #444444;

    font-size: 15px;
}


/* Formulaire */

.contact-form-wrapper {
    padding: 45px;

    background-color: #ffffff;

    box-shadow: 0 12px 35px rgba(19, 45, 70, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #132d46;

    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d8d8d8;

    background-color: #ffffff;

    color: #333333;

    font-family: inherit;
    font-size: 15px;

    outline: none;

    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #b79a6b;
}

.form-group textarea {
    resize: vertical;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 25px;
}

.form-consent input {
    margin-top: 4px;
}

.form-consent label {
    color: #666666;

    font-size: 13px;
    line-height: 1.5;
}

.contact-result {
    margin-top: 18px;

    font-size: 14px;
}

.contact-result.success {
    color: #237a45;
}

.contact-result.error {
    color: #a73737;
}

/* =========================================
   MENTIONS LEGALES
   ========================================= */

.legal-page {
    padding: 90px 30px;
    background-color: #f5f6f7;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    padding: 35px 0;
    border-bottom: 1px solid #dddddd;
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section h2 {
    margin-bottom: 18px;

    color: #132d46;

    font-size: 25px;
    font-weight: 500;
}

.legal-section p {
    margin-bottom: 14px;

    color: #5a5a5a;

    font-size: 15px;
    line-height: 1.8;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: #9b7d4e;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-section a:hover {
    color: #132d46;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
}

.legal-section li {
    margin-bottom: 8px;

    color: #5a5a5a;

    font-size: 15px;
    line-height: 1.7;
}

/* Honeypot anti-spam */

.form-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* =========================================
   PAGE 404
   ========================================= */

.error-page {
    min-height: 65vh;

    display: flex;
    align-items: center;

    padding: 100px 30px;

    background-color: #f5f6f7;
}

.error-container {
    width: 100%;
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.error-code {
    display: block;

    margin-bottom: 10px;

    color: #d6c29f;

    font-size: 110px;
    line-height: 1;
    font-weight: 600;
}

.error-container h1 {
    margin-bottom: 20px;

    color: #132d46;

    font-size: 42px;
    line-height: 1.2;
    font-weight: 500;
}

.error-container p {
    margin-bottom: 35px;

    color: #666666;

    font-size: 17px;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-outline-dark {
    border: 1px solid #132d46;
    color: #132d46;
}

.btn-outline-dark:hover {
    background-color: #132d46;
    color: #ffffff;
}

/* =========================================
   AVIS GOOGLE
   ========================================= */

.reviews-home {
    padding: 100px 30px;
    background-color: #f5f6f7;
}

.reviews-container {
    max-width: 1150px;
    margin: 0 auto;
}

.reviews-header {
    margin-bottom: 50px;
    text-align: center;
}

.reviews-header h2 {
    margin-bottom: 15px;

    color: #132d46;

    font-size: 38px;
    font-weight: 500;
}

.reviews-google-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    color: #555555;
    font-size: 14px;
}

.reviews-stars,
.review-stars {
    color: #e6ad22;
    letter-spacing: 2px;
}

.reviews-carousel {
    position: relative;

    display: flex;
    align-items: center;
    gap: 20px;
}

.reviews-viewport {
    width: 100%;
    overflow: hidden;
}

.reviews-track {
    display: flex;

    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 20px);

    margin-right: 30px;
    padding: 32px;

    background-color: #ffffff;

    border-top: 3px solid #d6c29f;

    box-shadow: 0 8px 30px rgba(19, 45, 70, 0.07);
}

.review-stars {
    margin-bottom: 20px;

    font-size: 17px;
}

.review-text {
    display: -webkit-box;
    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;

    color: #555555;

    font-size: 15px;
    line-height: 1.8;
}

.review-text.expanded {
    display: block;
}

.review-more {
    margin-top: 12px;
    padding: 0;

    border: 0;
    background: none;

    color: #b08c55;

    font-family: inherit;
    font-size: 13px;

    cursor: pointer;
}

.review-more:hover {
    color: #132d46;
}

.review-author {
    margin-top: 25px;
    padding-top: 20px;

    border-top: 1px solid #eeeeee;
}

.review-author strong {
    display: block;

    margin-bottom: 4px;

    color: #132d46;

    font-size: 15px;
}

.review-author span {
    color: #888888;

    font-size: 12px;
}

.reviews-arrow {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    border: 1px solid #d6c29f;
    border-radius: 50%;

    background-color: transparent;

    color: #132d46;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    transition: all 0.2s ease;
}

.reviews-arrow:hover {
    background-color: #132d46;
    border-color: #132d46;
    color: #ffffff;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;

    margin-top: 35px;
}

.review-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background-color: #cccccc;

    cursor: pointer;
}

.review-dot.active {
    background-color: #b79a6b;
}

.footer-location {
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}