/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(135deg, rgb(74, 115, 111) 0%, rgb(61, 153, 145) 100%);
    overflow: hidden;
    padding-bottom: 40px;
    /* Make room for the bar */
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, rgb(74, 115, 111) 0%, rgb(61, 153, 145) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 200px 20px;
    color: white;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.hero-content p {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Feature Sections */
.feature-section {
    padding: 60px 0;
    overflow: hidden;
}

.feature-section+.feature-section {
    padding-top: 30px;
}

.feature-section.light {
    background-color: white;
    color: #333;
}

.feature-section.dark {
    background-color: rgb(74, 115, 111);
    color: white;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgb(75, 85, 99);
}

.dark .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Animation Classes - Start visible by default */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.animate {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-right {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.animate {
    opacity: 0;
    transform: translateX(50px);
}

.slide-in-right.animate.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-left {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.animate {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-in-left.animate.visible {
    opacity: 1;
    transform: translateX(0);
}

.wipe-in {
    position: relative;
}

.wipe-in.animate::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(74, 115, 111);
    transform-origin: right;
    transition: transform 0.6s ease;
}

.wipe-in.animate.visible::after {
    transform: scaleX(0);
}

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.dark .service-item {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-item:hover i {
    transform: scale(1.1);
}

.dark .service-item i {
    color: white;
}

.feature-section.light.owner-benefits .section-content {
    text-align: center;
}

.feature-section.light.owner-benefits .section-content h2 {
    margin-bottom: 1rem;
}

.light .service-item i {
    color: rgb(74, 115, 111);
}

.service-item h3 {
    font-family: "proxima-nova", sans-serif;
    margin: 1rem 0;
    font-size: 1.5rem;
}

.dark .service-item h3 {
    color: white;
}

.dark .service-item p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-tag {
    background: rgba(74, 115, 111, 0.1);
    color: rgb(74, 115, 111);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.dark .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Fee Section */
.fee-section {
    background: #f5f5f5;
    padding: 40px 0;
}

.fee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.fee-inclusions {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
}

.fee-inclusions h3 {
    margin-bottom: 15px;
    font-family: "proxima-nova", sans-serif;
}

.fee-inclusions ul {
    list-style: none;
    padding: 0;
}

.fee-inclusions li {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.fee-inclusions li i {
    margin-right: 10px;
    color: white;
}

/* Difference Section */
.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.difference-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.difference-item:hover {
    transform: translateY(-5px);
}

.difference-item i {
    font-size: 2rem;
    color: rgb(74, 115, 111);
    margin-bottom: 15px;
}

.difference-item h3 {
    color: rgb(74, 115, 111);
    margin-bottom: 15px;
    font-family: "proxima-nova", sans-serif;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: rgb(74, 115, 111);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: transparent;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: rgb(74, 115, 111);
}

.cta-button.primary-large {
    font-size: 1.5rem;
    padding: 1.25rem 3rem;
    margin-top: 2rem;
    background: rgb(74, 115, 111);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cta-button.primary-large:hover {
    background: rgb(61, 153, 145);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wipeIn {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .feature-section {
        padding: 3rem 1rem;
    }

    .services-grid,
    .difference-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.2rem;
    }

    .service-item,
    .difference-item {
        padding: 1.5rem;
    }

    .feature-tag {
        font-size: 0.8rem;
    }

    .cta-button.primary-large {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }
}

/* Luxury Experience Section */
.luxury-experience-section {
    position: relative;
    top: 75px;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    background-color: #000;
    z-index: 1;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.luxury-bar {
    height: 40px;
    background-color: rgb(74, 115, 111);
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.luxury-bar.top {
    background: linear-gradient(90deg, rgb(74, 115, 111) 0%, rgb(61, 153, 145) 100%);
}

.luxury-bar.bottom {
    background: linear-gradient(90deg, rgb(61, 153, 145) 0%, rgb(74, 115, 111) 100%);
}

.luxury-image-container {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    z-index: 1;
}

.image-grid {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    gap: 0;
}

.image-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: flex 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.luxury-image {
    flex: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
    transform-origin: center;
}

.star-row {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 20;
    opacity: 0.5;
    pointer-events: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

.star-row .fa-star {
    color: white;
    font-size: clamp(60px, 8vw, 120px);
}

.luxury-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.2) 60%,
            rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.luxury-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.luxury-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
}

.luxury-content p {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.4;
}

.section-spacer {
    height: 100vh;
    position: relative;
    z-index: 0;
}

@media (max-width: 768px) {
    .luxury-experience-section {
        height: 50vh;
        min-height: 300px;
        max-height: 500px;
    }

    .luxury-bar {
        height: 30px;
    }

    .luxury-image-container {
        top: 30px;
        height: calc(100% - 60px);
    }

    .image-grid {
        gap: 0;
    }
}

/* Base Typography */
:root {
    --font-primary: "proxima-nova", sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 1px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

p,
li,
a {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 1.2vw, 1.25rem);
}

.btn,
button {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

nav {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
}

.section-title {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-title {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.5px;
}

.testimonial-text {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-number {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.stat-label {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Elements */
input,
textarea,
select {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
}

label {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Typography Adjustments */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    h2 {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    }

    h3 {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    h4 {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    }
}

/* Optional: Add a subtle text background for extra readability */
.hero-content h1::after,
.luxury-content h2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}