@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 1.5rem;
    padding-left: 1.2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.header-scrolled .lang-switcher {
    border-left-color: rgba(0, 0, 0, 0.15);
}

.lang-btn {
    display: block;
    width: 42px;
    height: 28px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: none;
    text-decoration: none;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding: 0;
    line-height: 0;
}

.lang-btn:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.lang-btn.active {
    opacity: 1;
    box-shadow: 0 0 0 2px #c9a227, 0 4px 15px rgba(201, 162, 39, 0.5);
    transform: scale(1.05);
}

.lang-btn img {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    object-fit: fill;
    display: block;
    border-radius: 0;
    margin: 0;
    padding: 0;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 450px;
    transform: translateX(120%);
    transition: transform 0.4s ease;
    border-left: 4px solid #c9a227;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: #27ae60;
}

.toast.error {
    border-left-color: #e74c3c;
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
}

.toast.error .toast-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin-bottom: 4px;
}

.toast-message {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #333;
}

@media (max-width: 480px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .toast {
        min-width: auto;
        max-width: 100%;
    }
}

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

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #19191c;
}

/* Ensure icons stay inline with text */
.fas, .fab, .far {
    flex-shrink: 0;
}

.scroll-detector {
    position: absolute;
    bottom: 100px;
    height: 10px;
    width: 100%;
    pointer-events: none;
}

.logo-dark {
    display: none;
}

.logo-white {
    display: block;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    background: transparent;
    transition: background 0.3s ease;
}

.header-scrolled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background: #fff;
    z-index: -1;
}


.navbar {
    padding: 1.5rem 3rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    text-decoration: none;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.navbar-logo img {
    height: 65px;
    width: auto;
}

.logo-realtor {
    height: 55px !important;
    width: auto;
    border-radius: 4px;
}

.navbar-menu {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease, border-color 0.3s ease;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid transparent;
}

.navbar-menu a:hover {
    color: #c9a227;
    border-bottom: 2px solid #c9a227;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: rgba(26, 82, 118, 0.9);
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    border-radius: 5px;
    box-sizing: content-box;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header-scrolled .hamburger {
    background: rgba(26, 82, 118, 0.9);
}

.header-scrolled .hamburger span {
    background: #fff;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hamburger button style when menu is open */
.hamburger.active {
    background: rgba(26, 82, 118, 0.9);
}

.hamburger.active span {
    background: #fff !important;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle {
    color: #c9a227;
    border-bottom: 2px solid #c9a227;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(25, 25, 28, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 0.8rem 0;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: #fff !important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: none !important;
}

.dropdown-menu a:hover {
    background: rgba(201, 162, 39, 0.2);
    color: #c9a227 !important;
    padding-left: 1.8rem;
}

/* Dropdown menu scrolled state - handled by JS changing background */
.dropdown-menu[style*="rgba(255, 255, 255"] a {
    color: #1a5276 !important;
}

.dropdown-menu[style*="rgba(255, 255, 255"] a:hover {
    color: #c9a227 !important;
}

.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    z-index: 10;
    border-bottom: 3px solid #c9a227;
    background: #19191c;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 25, 28, 0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 0 1rem;
}

.animated-text {
    margin-bottom: 2rem;
}

.static-text {
    display: block;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.static-text-line2 {
    display: block;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.gold-text {
    color: #c9a227;
}

.dynamic-text,
.dynamic-text-side {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    min-height: clamp(2rem, 5vw, 3.5rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tagline {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 600px;
}

.btn-accompagne {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 2px solid #c9a227;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-accompagne:hover {
    background: #c9a227;
    color: #19191c;
}

.split-container {
    display: flex;
    width: 100%;
    position: relative;
}

.split-left {
    width: 50%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    border-right: 3px solid #c9a227;
    z-index: 1;
    background: #19191c;
}

.video-bg-side {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    object-fit: contain;
}

.split-left-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 500px;
    padding: 0 1rem;
}

.split-right {
    width: 50%;
    margin-left: 50%;
}

.section-presentation {
    padding: 4rem 3rem;
    background: #fff;
    min-height: 100vh;
}

.presentation-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 2.5rem;
}

.presentation-logo {
    width: 280px;
    height: auto;
}

.presentation-realtor {
    width: 120px;
    height: auto;
    border-radius: 6px;
}

.presentation-tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #1a5276;
    font-weight: 300;
    margin-bottom: 2rem;
}

.presentation-tagline strong {
    font-weight: 600;
}

.presentation-image {
    width: 100%;
    margin: 0 auto 2rem;
}

.presentation-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid rgba(201, 162, 39, 0.3);
}

.presentation-content-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.presentation-text {
    text-align: left;
}

.section-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a5276;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-title span {
    color: #c9a227;
}

.section-subtitle {
    font-size: clamp(0.85rem, 2vw, 1.2rem);
    font-weight: 400;
    font-style: normal;
    color: #555;
    margin-bottom: 2rem;
    margin-top: 0;
    line-height: 1.5;
}

.section-intro {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.presentation-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c9a227 0%, #1a5276 100%);
    margin: 2rem 0;
    border-radius: 2px;
}

.section-subtitle-alt {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: #1a5276;
    margin-bottom: 1.5rem;
}

.presentation-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.presentation-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    color: #1a5276;
    font-weight: 500;
}

.presentation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #c9a227;
    font-weight: 700;
    font-size: inherit;
}

.presentation-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    color: #1a5276;
}

.presentation-location strong {
    color: #c9a227;
}

.location-icon {
    font-size: inherit;
}

.presentation-quote {
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    font-style: italic;
    color: #c9a227;
    margin-top: 1.5rem;
}

.presentation-slogan {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 700;
    color: #1a5276;
    margin-top: 1.5rem;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.1) 0%, rgba(201, 162, 39, 0.15) 100%);
    border-radius: 10px;
    border-left: 4px solid #c9a227;
}

.section-jennifer {
    padding: 4rem 3rem;
    background: #fff;
}

.jennifer-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.jennifer-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.jennifer-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a5276;
    margin-bottom: 1.5rem;
}

.jennifer-title span {
    color: #c9a227;
}

.jennifer-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #1a5276;
    margin-bottom: 1.5rem;
}

.jennifer-subtitle span {
    color: #c9a227;
}

.jennifer-text {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.jennifer-text strong {
    color: #1a5276;
}

.jennifer-highlight {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.8;
    color: #1a5276;
    font-weight: 500;
    background: rgba(201, 162, 39, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid #c9a227;
    margin-top: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.jennifer-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.jennifer-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    color: #1a5276;
    font-weight: 500;
}

.jennifer-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #c9a227;
    font-weight: 700;
}

.jennifer-values {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.jennifer-values li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    color: #1a5276;
    font-weight: 500;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.value-icon {
    color: #c9a227;
    font-size: 0.9rem;
}

.jennifer-final {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-style: italic;
    text-align: center;
    border-left: none;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.1) 0%, rgba(201, 162, 39, 0.1) 100%);
    border: 2px solid #c9a227;
}

.social-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.social-card.tiktok .social-icon {
    background: #000;
}

.social-card.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-content {
    flex: 1;
}

.social-content strong {
    display: block;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #1a5276;
    margin-bottom: 0.5rem;
}

.social-content p {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.section-pourquoi {
    padding: 4rem 3rem;
    background: #F5F5DC;
}

.pourquoi-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a5276;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pourquoi-title span {
    color: #c9a227;
}

.pourquoi-intro {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 0.8rem;
    line-height: 1.7;
}

.pourquoi-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    color: #1a5276;
    text-align: center;
    margin: 2rem 0;
}

.pourquoi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pourquoi-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #c9a227;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pourquoi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.pourquoi-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pourquoi-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #c9a227 0%, #a8871f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pourquoi-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.pourquoi-card h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: #1a5276;
    margin: 0;
}

.pourquoi-card p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.pourquoi-detail {
    font-style: italic;
    color: #1a5276 !important;
    font-weight: 500;
}

.pourquoi-conclusion {
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.1) 0%, rgba(201, 162, 39, 0.15) 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #c9a227;
    margin-top: 2rem;
}

.pourquoi-conclusion p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #1a5276;
    line-height: 1.7;
    margin: 0;
}

.pourquoi-conclusion strong {
    color: #c9a227;
}

.section-visa {
    padding: 4rem 3rem;
    background: #fff;
}

.visa-header {
    text-align: center;
    margin-bottom: 3rem;
}

.visa-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #1a5276;
    margin-bottom: 1rem;
}

.visa-title span {
    color: #c9a227;
}

.visa-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c9a227 0%, #a8871f 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.visa-image {
    margin-top: 2rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.visa-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid rgba(201, 162, 39, 0.3);
}

.visa-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.visa-intro h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #1a5276;
    margin-bottom: 1.5rem;
}

.visa-intro p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.visa-highlight {
    background: rgba(201, 162, 39, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid #c9a227;
    border-radius: 0 8px 8px 0;
    color: #1a5276 !important;
    font-weight: 500;
    text-align: left;
    margin-top: 1.5rem;
}

.visa-block {
    background: #F5F5DC;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    position: relative;
}

.visa-block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.visa-block-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #c9a227 0%, #a8871f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visa-block-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.visa-block h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: #1a5276;
    margin: 0;
}

.visa-block h3 span {
    color: #c9a227;
    font-weight: 500;
}

.visa-block p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.visa-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.visa-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #1a5276;
    font-weight: 500;
}

.visa-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #c9a227;
    font-weight: 700;
    font-size: 1.1rem;
}

.visa-note {
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: #1a5276 !important;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0.8rem;
}

.visa-note i {
    color: #c9a227;
    font-size: 1.2rem;
}

.visa-reassure {
    font-style: italic;
    color: #c9a227 !important;
    font-weight: 500;
    margin-top: 1rem;
}

.visa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.visa-grid-item {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.8rem;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: #1a5276;
    font-weight: 500;
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
}

.visa-grid-item:hover {
    border-color: #c9a227;
    transform: translateY(-2px);
}

.visa-grid-item i {
    color: #c9a227;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.visa-conclusion {
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.1) 0%, rgba(201, 162, 39, 0.15) 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #c9a227;
    margin-top: 2rem;
}

.visa-conclusion p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #1a5276;
    line-height: 1.7;
    margin: 0;
}

.visa-conclusion strong {
    color: #c9a227;
}

.section-immo {
    padding: 4rem 3rem;
    background: #F5F5DC;
}

.immo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.immo-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #1a5276;
    margin-bottom: 1rem;
}

.immo-title span {
    color: #c9a227;
}

.immo-badge {
    display: inline-block;
    background: #1a5276;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.immo-image {
    margin-top: 2rem;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.immo-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid rgba(201, 162, 39, 0.3);
}

.immo-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.immo-intro h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #1a5276;
    margin-bottom: 1.5rem;
}

.immo-intro p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.immo-highlight {
    background: rgba(26, 82, 118, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid #1a5276;
    border-radius: 0 8px 8px 0;
    color: #1a5276 !important;
    font-weight: 500;
    text-align: left;
    margin-top: 1.5rem;
}

.immo-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.immo-section-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #1a5276;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.immo-section-title i {
    color: #c9a227;
}

.immo-section-title span {
    color: #c9a227;
    font-weight: 500;
}

.immo-section-intro {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #555;
    margin-bottom: 2rem;
}

.immo-advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.immo-advantage {
    background: #F5F5DC;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #c9a227;
}

.immo-advantage-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.immo-advantage-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #c9a227 0%, #a8871f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.immo-advantage-icon i {
    font-size: 1.1rem;
    color: #fff;
}

.immo-advantage h4 {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #1a5276;
    margin: 0;
}

.immo-advantage p {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.immo-advantage ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.immo-advantage ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: #555;
}

.immo-advantage ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c9a227;
    font-weight: bold;
}

.immo-advantage .highlight-text {
    color: #c9a227 !important;
    font-weight: 500;
    font-style: italic;
}

.immo-summary {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #c9a227;
}

.immo-summary p {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: #1a5276;
    margin: 0;
}

.immo-summary strong {
    color: #c9a227;
}

.immo-block {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.immo-block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.immo-block-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #1a5276 0%, #154360 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.immo-block-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.immo-block h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: #1a5276;
    margin: 0;
}

.immo-block h3 span {
    color: #c9a227;
    font-weight: 500;
}

.immo-block p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.immo-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.immo-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #1a5276;
    font-weight: 500;
}

.immo-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #c9a227;
    font-weight: 700;
    font-size: 1.1rem;
}

.immo-reassure {
    font-style: italic;
    color: #c9a227 !important;
    font-weight: 500;
    margin-top: 1rem;
}

.immo-conclusion {
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.1) 0%, rgba(201, 162, 39, 0.15) 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #c9a227;
    margin-top: 2rem;
}

.immo-conclusion p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #1a5276;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.immo-conclusion p:last-child {
    margin-bottom: 0;
}

.immo-conclusion strong {
    color: #c9a227;
}

/* SECTION BUSINESS */
.section-business {
    padding: 4rem 3rem;
    background: #fff;
}

.business-header {
    text-align: center;
    margin-bottom: 3rem;
}

.business-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #1a5276;
    margin-bottom: 1rem;
}

.business-title span {
    color: #c9a227;
}

.business-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c9a227 0%, #a8871f 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.business-image {
    margin-top: 2rem;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.business-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid rgba(201, 162, 39, 0.3);
}

.business-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.business-intro h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #1a5276;
    margin-bottom: 1.5rem;
}

.business-intro p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.business-highlight {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    padding: 1rem 1.5rem;
    border-left: 4px solid #c9a227;
    border-radius: 0 8px 8px 0;
    color: #1a5276 !important;
    font-weight: 500;
    text-align: left;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0.8rem;
}

.business-highlight i {
    color: #c9a227;
    font-size: 1.3rem;
}

.business-block {
    background: #F5F5DC;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.business-block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.business-block-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #1a5276 0%, #154360 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.business-block-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.business-block h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: #1a5276;
    margin: 0;
}

.business-block h3 span {
    color: #c9a227;
    font-weight: 500;
}

.business-block p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.business-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.business-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #1a5276;
    font-weight: 500;
}

.business-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #c9a227;
    font-weight: 700;
    font-size: 1.1rem;
}

.business-reassure {
    font-style: italic;
    color: #c9a227 !important;
    font-weight: 500;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-reassure i {
    font-size: 1rem;
}

.business-objective {
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.1) 0%, rgba(26, 82, 118, 0.05) 100%);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    border: 2px solid #1a5276;
}

.business-objective i {
    color: #1a5276;
    font-size: 1.5rem;
}

.business-objective span {
    color: #1a5276;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.business-opportunities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.business-opp-item {
    background: #fff;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: #1a5276;
    font-weight: 500;
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
}

.business-opp-item:hover {
    border-color: #c9a227;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.15);
}

.business-opp-item i {
    color: #c9a227;
    font-size: 1.1rem;
    width: 25px;
    text-align: center;
}

.business-conclusion {
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.1) 0%, rgba(201, 162, 39, 0.15) 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #c9a227;
    margin-top: 2rem;
}

.business-conclusion p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #1a5276;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.business-conclusion p:last-child {
    margin-bottom: 0;
}

.business-conclusion strong {
    color: #c9a227;
}

/* SECTION VOYAGE - GO FLORIDA TRIP */
.section-voyage {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f7fa 100%);
}

.voyage-header {
    text-align: center;
    margin-bottom: 3rem;
}

.voyage-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1a5276;
    margin-bottom: 1rem;
}

.voyage-title span {
    color: #c9a227;
}

.voyage-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a5276 0%, #154360 100%);
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.voyage-gallery {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.voyage-img {
    width: calc(25% - 0.75rem);
    min-width: 150px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(201, 162, 39, 0.3);
    transition: all 0.3s ease;
}

.voyage-img:hover {
    transform: scale(1.05);
    border-color: #c9a227;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: #c9a227;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #c9a227;
    color: #000;
}

/* Modal Contact */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 100;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #fff;
    background: #e74c3c;
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, #1a5276 0%, #154360 100%);
    padding: 2rem;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    color: #fff;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.modal-header h2 i {
    color: #c9a227;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.modal-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a5276;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.form-label i {
    color: #c9a227;
    flex-shrink: 0;
}

.form-label span {
    white-space: nowrap;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a227;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a227' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.service-card {
    cursor: pointer;
    display: block;
}

.service-card input {
    display: none;
}

.service-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 1rem;
    background: #f8f8f8;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card-content i {
    font-size: 1.8rem;
    color: #999;
    transition: all 0.3s ease;
}

.service-card-content span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-content {
    border-color: #c9a227;
    background: #fefdf8;
}

.service-card:hover .service-card-content i {
    color: #c9a227;
}

.service-card input:checked + .service-card-content {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-color: #c9a227;
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.2);
}

.service-card input:checked + .service-card-content i {
    color: #c9a227;
    transform: scale(1.1);
}

.service-card input:checked + .service-card-content span {
    color: #1a5276;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #c9a227 0%, #a8871f 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #a8871f 0%, #8a6f19 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.btn-submit i {
    font-size: 1.1rem;
}

.voyage-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.voyage-intro h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #1a5276;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.voyage-intro h3 i {
    color: #c9a227;
}

.voyage-intro p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.voyage-highlight {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    padding: 1.2rem 1.5rem;
    border-left: 4px solid #c9a227;
    border-radius: 0 10px 10px 0;
    color: #1a5276 !important;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.voyage-highlight i {
    color: #c9a227;
    font-size: 1.5rem;
}

.voyage-block {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.voyage-block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.voyage-block-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #1a5276 0%, #154360 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.voyage-block-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.voyage-block h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: #1a5276;
    margin: 0;
}

.voyage-block h3 span {
    color: #c9a227;
    font-weight: 500;
}

.voyage-block p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.voyage-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.voyage-feature {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f7fa 100%);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: #1a5276;
    font-weight: 500;
    border: 1px solid rgba(26, 82, 118, 0.1);
    transition: all 0.3s ease;
}

.voyage-feature:hover {
    border-color: #c9a227;
    transform: translateY(-2px);
}

.voyage-feature i {
    color: #c9a227;
    font-size: 1.1rem;
    width: 25px;
    text-align: center;
}

.voyage-inclus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.voyage-inclus {
    padding: 2rem;
    border-radius: 16px;
}

.voyage-inclus h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.voyage-inclus ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.voyage-inclus ul li {
    padding: 0.6rem 0;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inclus-yes {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(39, 174, 96, 0.05) 100%);
    border: 2px solid rgba(39, 174, 96, 0.3);
}

.inclus-yes h4 {
    color: #27ae60;
}

.inclus-yes ul li {
    color: #1a5276;
}

.inclus-yes ul li::before {
    content: '✓';
    color: #27ae60;
    font-weight: 700;
    margin-right: 0.5rem;
}

.inclus-no {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0.05) 100%);
    border: 2px solid rgba(231, 76, 60, 0.3);
}

.inclus-no h4 {
    color: #e74c3c;
}

.inclus-no ul li {
    color: #555;
}

.inclus-no ul li::before {
    content: '✗';
    color: #e74c3c;
    font-weight: 700;
    margin-right: 0.5rem;
}

.voyage-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.voyage-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #1a5276;
    font-weight: 500;
}

.voyage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c9a227;
    font-weight: 700;
}

.voyage-reassure {
    font-style: italic;
    color: #c9a227 !important;
    font-weight: 500;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.voyage-choices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.voyage-choice {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f7fa 100%);
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #1a5276;
    font-weight: 500;
    border-left: 4px solid #c9a227;
}

.voyage-choice i {
    color: #c9a227;
    font-size: 1.3rem;
}

.voyage-section-title {
    text-align: center;
    margin: 4rem 0 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(201, 162, 39, 0.2);
}

.voyage-section-title h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #1a5276;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.voyage-section-title h2 i {
    color: #c9a227;
}

.voyage-section-title h2 span {
    color: #c9a227;
}

.voyage-section-title p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: #555;
}

.voyage-cities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.voyage-city {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.voyage-city:hover {
    transform: translateY(-5px);
    border-bottom-color: #c9a227;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.city-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c9a227 0%, #a8871f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.city-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.voyage-city h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #1a5276;
    margin-bottom: 0.5rem;
}

.city-tagline {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: #c9a227;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
}

.voyage-city ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.voyage-city ul li {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: #555;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.voyage-city ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.voyage-bahamas {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(0, 150, 136, 0.1) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 2px solid rgba(0, 188, 212, 0.3);
}

.bahamas-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00bcd4 0%, #009688 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bahamas-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.voyage-bahamas h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #1a5276;
    margin-bottom: 1rem;
}

.voyage-bahamas h3 span {
    color: #00bcd4;
}

.voyage-bahamas p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.bahamas-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bahamas-feature {
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: #1a5276;
    font-weight: 500;
}

.bahamas-feature i {
    color: #00bcd4;
    font-size: 1.1rem;
}

.voyage-themes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.voyage-theme {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #c9a227;
}

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

.theme-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.theme-header i {
    font-size: 1.5rem;
    color: #c9a227;
}

.theme-header h4 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #1a5276;
    margin: 0;
}

.theme-tagline {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: #c9a227;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
}

.voyage-theme ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.voyage-theme ul li {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: #555;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.voyage-theme ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.theme-result {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: #1a5276;
    font-weight: 600;
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    margin: 0;
}

.voyage-conclusion {
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.1) 0%, rgba(201, 162, 39, 0.15) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #c9a227;
    margin-top: 2rem;
}

.voyage-conclusion p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #1a5276;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.voyage-conclusion strong {
    color: #c9a227;
}

.voyage-final {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem) !important;
    font-weight: 600;
    color: #1a5276 !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

.btn-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.btn-floating:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(218, 165, 32, 0.5);
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
}

/* TABLET LANDSCAPE - 1200px */
@media (max-width: 1200px) {
    .navbar {
        padding: 1.2rem 2rem;
    }

    .section-presentation,
    .section-jennifer,
    .section-pourquoi {
        padding: 3rem 2rem;
    }
}

/* TABLET - 992px */
@media (max-width: 992px) {
    .section-visa {
        padding: 3rem 2rem;
    }

    .visa-block {
        padding: 2rem;
    }

    .visa-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visa-image img {
        height: 250px;
    }

    .section-immo {
        padding: 3rem 2rem;
    }

    .immo-image img {
        height: 280px;
    }

    .immo-section {
        padding: 2rem;
    }

    .immo-advantages {
        grid-template-columns: 1fr;
    }

    .immo-block {
        padding: 2rem;
    }

    .section-business {
        padding: 3rem 2rem;
    }

    .business-image img {
        height: 280px;
    }

    .business-block {
        padding: 2rem;
    }

    .business-opportunities {
        grid-template-columns: 1fr;
    }

    .section-voyage {
        padding: 3rem 2rem;
    }

    .voyage-img {
        width: calc(50% - 0.5rem);
        height: 150px;
    }

    .voyage-features {
        grid-template-columns: 1fr;
    }

    .voyage-inclus-grid {
        grid-template-columns: 1fr;
    }

    .voyage-choices {
        grid-template-columns: 1fr;
    }

    .voyage-cities {
        grid-template-columns: repeat(2, 1fr);
    }

    .bahamas-features {
        grid-template-columns: 1fr;
    }

    .voyage-themes {
        grid-template-columns: repeat(2, 1fr);
    }

    .voyage-block {
        padding: 2rem;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }

    .navbar-logo img {
        height: 40px;
    }

    .navbar-menu {
        gap: 1.5rem;
    }

    .navbar-menu a {
        font-size: 0.8rem;
    }

    .dropdown-toggle {
        font-size: 0.8rem;
    }

    .dropdown-menu {
        min-width: 150px;
    }

    .dropdown-menu a {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-fullscreen {
        min-height: 500px;
    }

    .header-scrolled::after {
        left: 0;
        width: 100%;
    }

    .split-container {
        flex-direction: column;
    }

    .split-left {
        display: none;
    }

    .split-right {
        width: 100%;
        margin-left: 0;
    }

    .section-presentation {
        min-height: auto;
        padding: 3rem 2rem;
    }

    .section-jennifer,
    .section-pourquoi {
        padding: 3rem 2rem;
    }

    .presentation-logo {
        width: 180px;
    }

    .presentation-image img {
        height: 220px;
    }

    .jennifer-list {
        grid-template-columns: 1fr;
    }

    .jennifer-values {
        gap: 0.8rem;
    }

    .pourquoi-card {
        padding: 1.5rem;
    }

    .btn-floating {
        bottom: 20px;
        right: 20px;
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* TABLET PORTRAIT - 768px */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar {
        padding: 1rem 1.5rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-logo img {
        height: 45px;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: #1a5276;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 70px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1001;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        pointer-events: auto;
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-menu > a,
    .navbar-menu > a[style],
    .header-expat .navbar-menu > a,
    .header-immo .navbar-menu > a,
    .header-biz .navbar-menu > a,
    .header-voyage .navbar-menu > a,
    .header-pourquoi .navbar-menu > a,
    .header-about .navbar-menu > a,
    [class*="header-"] .navbar-menu > a {
        font-size: 1rem;
        color: #fff !important;
        padding: 1rem 1.5rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }

    .navbar-menu > a:hover,
    [class*="header-"] .navbar-menu > a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #c9a227 !important;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle,
    .dropdown-toggle[style],
    .header-expat .dropdown-toggle,
    .header-immo .dropdown-toggle,
    .header-biz .dropdown-toggle,
    .header-voyage .dropdown-toggle,
    .header-pourquoi .dropdown-toggle,
    .header-about .dropdown-toggle,
    [class*="header-"] .dropdown-toggle {
        color: #fff !important;
        padding: 1rem 1.5rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        cursor: pointer;
    }

    .dropdown-menu a,
    .dropdown-menu a[style],
    .header-expat .dropdown-menu a,
    .header-immo .dropdown-menu a,
    .header-biz .dropdown-menu a,
    .header-voyage .dropdown-menu a,
    .header-pourquoi .dropdown-menu a,
    .header-about .dropdown-menu a,
    [class*="header-"] .dropdown-menu a {
        color: #fff !important;
    }

    .dropdown-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }

    .dropdown.open .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0;
        margin-top: 0;
        transition: all 0.3s ease;
    }

    .dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        padding: 0.5rem 0;
    }

    .dropdown-menu a {
        padding: 0.8rem 1.5rem 0.8rem 2.5rem;
        font-size: 0.95rem;
        display: block;
        gap: 0.6rem;
        border-bottom: none;
    }

    .dropdown-menu a::before {
        content: '→';
        color: #c9a227;
        font-size: 0.8rem;
    }

    .dropdown-menu a:hover {
        background: rgba(201, 162, 39, 0.1);
        color: #c9a227 !important;
    }

    .lang-switcher {
        margin: 1.5rem;
        padding: 1rem 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        justify-content: center;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .mobile-overlay.active {
        display: block;
    }

    .hero-fullscreen {
        min-height: 450px;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .btn-accompagne {
        padding: 0.8rem 1.5rem;
        margin-top: 1.5rem;
    }

    .section-presentation,
    .section-jennifer,
    .section-pourquoi {
        padding: 2.5rem 1.5rem;
    }

    .presentation-logo {
        width: 160px;
    }

    .presentation-image img {
        height: 200px;
        border-radius: 10px;
    }

    .jennifer-block {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .jennifer-highlight {
        padding: 0.8rem 1rem;
    }

    .jennifer-values li {
        padding: 0.6rem 1rem;
    }

    .social-card {
        padding: 1.2rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .pourquoi-icon {
        width: 55px;
        height: 55px;
    }

    .pourquoi-icon i {
        font-size: 1.3rem;
    }

    .pourquoi-conclusion {
        padding: 1.5rem;
    }

    .btn-floating {
        bottom: 15px;
        right: 15px;
        padding: 0.8rem 1.3rem;
        font-size: 0.8rem;
    }
}

/* MOBILE LARGE - 576px */
@media (max-width: 576px) {
    .section-visa {
        padding: 2rem 1rem;
    }

    .visa-block {
        padding: 1.5rem;
    }

    .visa-block-icon {
        width: 50px;
        height: 50px;
    }

    .visa-block-icon i {
        font-size: 1.2rem;
    }

    .visa-grid {
        grid-template-columns: 1fr;
    }

    .visa-grid-item {
        padding: 0.8rem;
    }

    .visa-note {
        gap: 0.5rem;
    }

    .visa-image img {
        height: 200px;
    }

    .visa-conclusion {
        padding: 1.5rem;
    }

    .section-immo {
        padding: 2rem 1rem;
    }

    .immo-image img {
        height: 200px;
    }

    .immo-section {
        padding: 1.5rem;
    }

    .immo-block {
        padding: 1.5rem;
    }

    .immo-block-icon {
        width: 50px;
        height: 50px;
    }

    .immo-block-icon i {
        font-size: 1.2rem;
    }

    .immo-advantage {
        padding: 1.2rem;
    }

    .immo-advantage-icon {
        width: 40px;
        height: 40px;
    }

    .immo-advantage-icon i {
        font-size: 1rem;
    }

    .immo-conclusion {
        padding: 1.5rem;
    }

    .immo-summary {
        padding: 1.2rem;
    }

    .section-business {
        padding: 2rem 1rem;
    }

    .business-image img {
        height: 200px;
    }

    .business-block {
        padding: 1.5rem;
    }

    .business-block-icon {
        width: 50px;
        height: 50px;
    }

    .business-block-icon i {
        font-size: 1.2rem;
    }

    .business-highlight {
        gap: 0.5rem;
    }

    .business-objective {
        gap: 0.5rem;
    }

    .business-opp-item {
        padding: 0.8rem 1rem;
    }

    .business-conclusion {
        padding: 1.5rem;
    }

    .section-voyage {
        padding: 2rem 1rem;
    }

    .voyage-gallery {
        gap: 0.5rem;
    }

    .voyage-img {
        width: calc(50% - 0.25rem);
        height: 120px;
        min-width: 120px;
    }

    .voyage-intro {
        padding: 1.5rem;
    }

    .voyage-highlight {
        gap: 0.5rem;
    }

    .voyage-block {
        padding: 1.5rem;
    }

    .voyage-block-icon {
        width: 50px;
        height: 50px;
    }

    .voyage-block-icon i {
        font-size: 1.2rem;
    }

    .voyage-inclus {
        padding: 1.5rem;
    }

    .voyage-cities {
        grid-template-columns: 1fr;
    }

    .voyage-city {
        padding: 1.5rem;
    }

    .voyage-bahamas {
        padding: 1.5rem;
    }

    .bahamas-icon {
        width: 55px;
        height: 55px;
    }

    .voyage-themes {
        grid-template-columns: 1fr;
    }

    .voyage-theme {
        padding: 1.5rem;
    }

    .voyage-conclusion {
        padding: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2.5rem;
    }

    .modal-overlay {
        padding: 10px;
    }

    .modal-content {
        max-height: 95vh;
        border-radius: 15px;
    }

    .modal-header {
        padding: 1.5rem;
        border-radius: 15px 15px 0 0;
    }

    .modal-form {
        padding: 1.5rem;
    }

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

    .services-cards {
        grid-template-columns: 1fr;
    }

    .service-card-content {
        flex-direction: row;
        padding: 1rem;
        gap: 1rem;
    }

    .service-card-content i {
        font-size: 1.5rem;
    }

    .service-card-content span {
        font-size: 0.8rem;
        text-align: left;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        font-size: 1.5rem;
        width: 36px;
        height: 36px;
    }

    .navbar-logo img {
        height: 40px;
    }

    .hero-fullscreen {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero-content {
        padding: 0 1rem;
        width: 95%;
    }

    .animated-text {
        margin-bottom: 1.5rem;
    }

    .btn-accompagne {
        padding: 0.7rem 1.2rem;
        margin-top: 1.5rem;
    }

    .section-presentation,
    .section-jennifer,
    .section-pourquoi {
        padding: 2rem 1rem;
    }

    .presentation-header {
        margin-bottom: 1.5rem;
    }

    .presentation-logo {
        width: 140px;
    }

    .presentation-image {
        margin-bottom: 1.5rem;
    }

    .presentation-image img {
        height: 180px;
        border-radius: 8px;
        border-width: 3px;
    }

    .presentation-list {
        margin: 1.5rem 0;
    }

    .presentation-list li {
        margin-bottom: 0.8rem;
    }

    .presentation-location {
        margin: 1.5rem 0;
        flex-wrap: wrap;
    }

    .jennifer-block {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .jennifer-highlight {
        padding: 0.8rem;
        margin-top: 1rem;
    }

    .jennifer-values {
        flex-direction: column;
        gap: 0.6rem;
    }

    .jennifer-values li {
        justify-content: center;
        text-align: center;
    }

    .social-card {
        gap: 0.8rem;
        padding: 1rem;
    }

    .pourquoi-grid {
        gap: 1rem;
    }

    .pourquoi-card {
        padding: 1.2rem;
    }

    .pourquoi-card-header {
        gap: 0.8rem;
    }

    .pourquoi-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .pourquoi-icon i {
        font-size: 1.1rem;
    }

    .pourquoi-conclusion {
        padding: 1.2rem;
    }

    .btn-floating {
        bottom: 12px;
        right: 12px;
        padding: 0.7rem 1rem;
        font-size: 0.75rem;
        border-radius: 25px;
    }
}

/* MOBILE SMALL - 400px */
@media (max-width: 400px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .navbar-logo img {
        height: 35px;
    }

    .hero-content {
        padding: 0 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn-accompagne {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .section-presentation,
    .section-jennifer,
    .section-pourquoi {
        padding: 1.5rem 0.8rem;
    }

    .presentation-logo {
        width: 120px;
    }

    .presentation-image img {
        height: 150px;
    }

    .contact-modal-content {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
        max-height: 95vh;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 0.8rem;
    }

    .form-label {
        font-size: 0.85rem;
    }

    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .jennifer-highlight {
        padding: 0.6rem;
    }

    .jennifer-values li {
        padding: 0.5rem 0.8rem;
    }

    .social-card {
        padding: 0.8rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .pourquoi-card {
        padding: 1rem;
    }

    .pourquoi-card-header {
        gap: 0.6rem;
    }

    .pourquoi-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .pourquoi-icon i {
        font-size: 0.9rem;
    }

    .pourquoi-conclusion {
        padding: 1rem;
    }

    .section-immo {
        padding: 1.5rem 0.8rem;
    }

    .immo-image img {
        height: 170px;
    }

    .immo-section {
        padding: 1.2rem;
    }

    .immo-block {
        padding: 1.2rem;
    }

    .immo-advantage {
        padding: 1rem;
    }

    .immo-conclusion {
        padding: 1.2rem;
    }

    .section-business {
        padding: 1.5rem 0.8rem;
    }

    .business-image img {
        height: 170px;
    }

    .business-block {
        padding: 1.2rem;
    }

    .business-conclusion {
        padding: 1.2rem;
    }

    .section-voyage {
        padding: 1.5rem 0.8rem;
    }

    .voyage-img {
        height: 100px;
    }

    .voyage-intro {
        padding: 1.2rem;
    }

    .voyage-block {
        padding: 1.2rem;
    }

    .voyage-inclus {
        padding: 1.2rem;
    }

    .voyage-city {
        padding: 1.2rem;
    }

    .voyage-bahamas {
        padding: 1.2rem;
    }

    .voyage-theme {
        padding: 1.2rem;
    }

    .voyage-conclusion {
        padding: 1.2rem;
    }

    .btn-floating {
        bottom: 10px;
        right: 10px;
        padding: 0.6rem 0.8rem;
        font-size: 0.7rem;
    }
}

/* MOBILE EXTRA SMALL - 360px */
@media (max-width: 360px) {
    .navbar-logo img {
        height: 32px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .presentation-image img {
        height: 130px;
    }

    .immo-image img {
        height: 150px;
    }

    .immo-section,
    .immo-block {
        padding: 1rem;
    }

    .immo-advantage {
        padding: 0.8rem;
    }

    .immo-conclusion,
    .immo-summary {
        padding: 1rem;
    }

    .business-image img {
        height: 150px;
    }

    .business-block {
        padding: 1rem;
    }

    .business-conclusion {
        padding: 1rem;
    }

    .voyage-img {
        height: 90px;
    }

    .voyage-intro,
    .voyage-block,
    .voyage-inclus,
    .voyage-city,
    .voyage-bahamas,
    .voyage-theme,
    .voyage-conclusion {
        padding: 1rem;
    }

    .btn-floating {
        padding: 0.5rem 0.7rem;
        font-size: 0.65rem;
        bottom: 8px;
        right: 8px;
    }
}

/* LANDSCAPE MODE ON MOBILE */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-fullscreen {
        min-height: 100vh;
    }

    .hero-content {
        top: 55%;
    }

    .animated-text {
        margin-bottom: 1rem;
    }

    .btn-accompagne {
        margin-top: 1rem;
        padding: 0.5rem 1rem;
    }

    .btn-floating {
        bottom: 10px;
        right: 10px;
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
}
