/* =====================================================
   BASE STYLES & RESET
   ===================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */

/* Base state - hidden */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

/* Revealed state */
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Variant: Slide from Left */
.scroll-reveal.scroll-reveal-left {
    transform: translateX(-60px);
}

.scroll-reveal.scroll-reveal-left.revealed {
    transform: translateX(0);
}

/* Variant: Slide from Right */
.scroll-reveal.scroll-reveal-right {
    transform: translateX(60px);
}

.scroll-reveal.scroll-reveal-right.revealed {
    transform: translateX(0);
}

/* Variant: Scale Up */
.scroll-reveal.scroll-reveal-scale {
    transform: scale(0.9);
}

.scroll-reveal.scroll-reveal-scale.revealed {
    transform: scale(1);
}

/* Variant: Fade Only (no movement) */
.scroll-reveal.scroll-reveal-fade {
    transform: none;
}

.scroll-reveal.scroll-reveal-fade.revealed {
    transform: none;
}


/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
    position: relative;
    width: 100%;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 860px;
    overflow: hidden;
    background-image: url(assets/hero-bg1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-logo a {
    display: block;
}

.hero-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.hero-logo img:hover {
    opacity: 0.85;
}

.hero-content-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 130px 60px 0px;
}

.hero-left-content {
    flex: 1;
    max-width: 580px;
}

.hero-tagline {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a86c;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(201, 168, 108, 0.1);
    border: 1px solid rgba(201, 168, 108, 0.3);
    border-radius: 30px;
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-title span {
    color: #c9a86c;
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-form-container {
    flex-shrink: 0;
    width: 420px;
}

.form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #c9a86c;
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 45px;
}

.select-wrapper select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 12px;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-wrapper select:focus + .select-arrow {
    color: #c9a86c;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    margin-top: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #0a0a0a;
    background: linear-gradient(135deg, #c9a86c 0%, #d4b87a 50%, #c9a86c 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.3);
}

.btn-submit:hover {
    background-position: 100% 100%;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 108, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.form-privacy svg {
    color: #c9a86c;
}


/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
    position: relative;
    background: linear-gradient(180deg, #fafaf8 0%, #ffffff 100%);
    padding: 72px 60px 42px;
    overflow: hidden;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-quote-icon {
    font-size: 192px;
    font-weight: 700;
    color: #c9a86c;
    line-height: 0.5;
    opacity: 0.2;
    margin-bottom: -24px;
    user-select: none;
}

/* Override for scroll-reveal on about-quote-icon */
.about-quote-icon.scroll-reveal {
    opacity: 0;
}

.about-quote-icon.scroll-reveal.revealed {
    opacity: 0.2;
}

.about-title {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 28px;
}

.about-title span {
    color: #c9a86c;
    font-style: italic;
}

.about-description {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 1.9;
    max-width: 780px;
    margin: 0 auto;
}

.about-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.about-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a86c);
}

.about-line:last-child {
    background: linear-gradient(90deg, #c9a86c, transparent);
}

.about-brand {
    font-size: 16px;
    font-weight: 600;
    color: #c9a86c;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* =====================================================
   SPACES SECTION
   ===================================================== */
.spaces-section {
    background-color: #ffffff;
    padding: 78px 60px;
}

.spaces-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Side */
.spaces-left {
    flex: 1;
    max-width: 480px;
}

.spaces-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 32px;
}

.spaces-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spaces-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}

.spaces-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #c9a86c;
    flex-shrink: 0;
}

/* Right Side - Slider */
.spaces-right {
    flex: 1;
    max-width: 600px;
}

.spaces-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.spaces-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.space-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.space-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Slider Dots */
.spaces-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.spaces-slider-dots .dot {
    width: 10px;
    height: 10px;
    background: #dddddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spaces-slider-dots .dot:hover {
    background: #bbbbbb;
}

.spaces-slider-dots .dot.active {
    width: 28px;
    background: #c9a86c;
    border-radius: 5px;
}

/* =====================================================
   SPACES SECTION - RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
    .spaces-container {
        gap: 60px;
    }

    .spaces-left {
        max-width: 420px;
    }

    .spaces-title {
        font-size: 32px;
    }

    .space-slide img {
        height: 380px;
    }
}

@media (max-width: 991px) {
    .spaces-section {
        padding: 80px 40px;
    }

    .spaces-container {
        flex-direction: column;
        gap: 50px;
    }

    .spaces-left {
        max-width: 100%;
        width: 100%;
    }

    .spaces-title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .spaces-right {
        max-width: 100%;
        width: 100%;
    }

    .space-slide img {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .spaces-section {
        padding: 60px 24px;
    }

    .spaces-title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .spaces-list {
        gap: 14px;
    }

    .spaces-list li {
        font-size: 15px;
        gap: 10px;
    }

    .spaces-list-icon {
        width: 22px;
        height: 22px;
    }

    .spaces-list-icon svg {
        width: 14px;
        height: 14px;
    }

    .space-slide img {
        height: 300px;
    }

    .spaces-slider-dots {
        margin-top: 20px;
        gap: 8px;
    }

    .spaces-slider-dots .dot {
        width: 8px;
        height: 8px;
    }

    .spaces-slider-dots .dot.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .spaces-section {
        padding: 50px 20px;
    }

    .spaces-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .spaces-list {
        gap: 12px;
    }

    .spaces-list li {
        font-size: 14px;
    }

    .spaces-list-icon {
        width: 20px;
        height: 20px;
    }

    .spaces-list-icon svg {
        width: 12px;
        height: 12px;
    }

    .space-slide img {
        height: 250px;
    }

    .spaces-slider {
        border-radius: 12px;
    }
}

/* =====================================================
   FEATURES SECTION
   ===================================================== */
.features-section {
    background-color: #f9f8f6;
    padding: 100px 60px;
}

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

.features-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.feature-card-icon {
    width: 98px;
    height: 98px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 108, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    background: #c9a86c;
}

.feature-card-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(71%) sepia(30%) saturate(487%) hue-rotate(6deg) brightness(92%) contrast(89%);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon img {
    filter: brightness(0) invert(1);
}

.feature-card-text {
    font-size: 15px;
    font-weight: 500;
    color: #444444;
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   FEATURES SECTION - RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
    .features-grid {
        gap: 24px;
    }

    .feature-card {
        padding: 32px 20px;
    }

    .feature-card-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .feature-card-icon img {
        width: 32px;
        height: 32px;
    }

    .feature-card-text {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .features-section {
        padding: 80px 40px;
    }

    .features-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* Center the last 2 cards */
    .feature-card:nth-child(4) {
        grid-column: 1 / 2;
        margin-left: auto;
        margin-right: 0;
        width: 100%;
    }

    .feature-card:nth-child(5) {
        grid-column: 3 / 4;
        margin-left: 0;
        margin-right: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 24px;
    }

    .features-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        padding: 28px 18px;
    }

    .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        grid-column: auto;
        margin: 0;
    }

    /* Center the 5th card */
    .feature-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 280px;
        margin: 0 auto;
    }

    .feature-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .feature-card-icon img {
        width: 28px;
        height: 28px;
    }

    .feature-card-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 50px 20px;
    }

    .features-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .feature-card:nth-child(5) {
        max-width: 100%;
    }

    .feature-card-icon {
        width: 64px;
        height: 64px;
        margin: 0;
        flex-shrink: 0;
    }

    .feature-card-icon img {
        width: 36px;
        height: 36px;
    }

    .feature-card-text {
        font-size: 14px;
    }
}

/* =====================================================
   PARTNERS SLIDER SECTION
   ===================================================== */
.partners-section {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #fff;
    padding: 70px 0;
}

.partners-container {
    max-width: 100%;
}

.partners-title {
    font-size: 20px;
    font-weight: 500;
    color: #999999;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.partners-track {
    display: inline-flex;
    animation: partnersScroll 40s linear infinite;
    white-space: nowrap;
}

/* Pause animation until revealed */
.partners-track.scroll-reveal:not(.revealed) {
    animation-play-state: paused;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex: 0 0 auto;
    margin: 0 20px;
}

.partner-logo img {
    width: auto;
    display: block;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes partnersScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* =====================================================
   STATEMENT SECTION
   ===================================================== */
.statement-section {
    background-color: #1a1a1a;
    padding: 80px 60px;
}

.statement-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.statement-text {
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    color: #ffffff;
    line-height: 1.7;
    letter-spacing: 0.3px;
    position: relative;
}

.statement-text::before,
.statement-text::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a86c, transparent);
    margin: 0 auto;
}

.statement-text::before {
    margin-bottom: 30px;
}

.statement-text::after {
    margin-top: 30px;
}


/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, #f9f8f6 0%, #f3f1ed 100%);
    padding: 100px 16px 0 16px;
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(201, 168, 108, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 168, 108, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.contact-form-wrapper {
    flex: 1;
    max-width: 580px;
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    margin-bottom: 36px;
}

.contact-label {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a86c;
    margin-bottom: 12px;
}

.contact-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-main label {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

.form-group-main label span {
    font-weight: 400;
    color: #999999;
}

.form-group-main input,
.form-group-main textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    background: #f9f8f6;
    border: 1px solid #e8e6e1;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    resize: none;
}

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

.form-group-main input:focus,
.form-group-main textarea:focus {
    background: #ffffff;
    border-color: #c9a86c;
    box-shadow: 0 0 0 4px rgba(201, 168, 108, 0.1);
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    padding: 16px 36px;
    margin-top: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-contact-submit svg {
    transition: transform 0.3s ease;
}

.btn-contact-submit:hover svg {
    transform: translateX(4px);
}

.contact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding: 40px 0;
}

.contact-divider span {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    text-transform: lowercase;
}

.contact-divider span::before,
.contact-divider span::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #e0ddd6, transparent);
}

.contact-divider span::before {
    bottom: calc(100% + 15px);
}

.contact-divider span::after {
    top: calc(100% + 15px);
    background: linear-gradient(to top, #e0ddd6, transparent);
}

.contact-direct-wrapper {
    flex: 0 0 320px;
    padding-top: 20px;
}

.contact-direct-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 28px;
}

.contact-direct-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e8e6e1;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-direct-item:hover {
    border-color: #c9a86c;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.contact-direct-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f9f8f6;
    border-radius: 12px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.contact-direct-item:hover .contact-direct-icon {
    background: #c9a86c;
    color: #ffffff;
}

.contact-direct-item.whatsapp:hover .contact-direct-icon {
    background: #25D366;
}

.contact-direct-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-direct-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #999999;
}

.contact-direct-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.footer-bottom {
    position: relative;
    background: #1a1a1a;
    padding: 28px 60px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}


/* =====================================================
   HERO ANIMATIONS (Keep original)
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-title {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-description {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.form-card {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}
@media (max-width: 1919px) {

}
@media (max-width: 1440px) {
.hero-background {
    height: 660px;
}
.hero-content-wrapper {
        padding: 90px 82px 0px;
        gap: 34px;
    }
    .hero-logo img {
    height: 52px;
    }
    .hero-form-container {
    width: 400px;
}


    .form-card {
    border-radius: 12px;
    padding: 14px;
    }
    .form-header {
    margin-bottom: 12px;
}
.form-group input, .form-group select {
    padding: 12px 16px;
    font-size: 14px;
}
.hero-title {
    font-size: 54px;
    margin-bottom: 24px;
}
.contact-container {
    max-width: 90%;
    margin: 0 auto;
}
.contact-section {
    padding: 60px 16px 0 16px;
}
.spaces-right {
    max-width: 496px;
}
.features-grid {
        gap: 16px;
    }
.about-title {
    font-size: 38px;
}
.about-quote-icon {
    font-size: 178px;
}
.about-description {
    font-size: 16px;
}
.about-footer {
    margin-top: 36px;
}
.spaces-section {
    padding: 52px 54px;
}
.feature-card {
    border-radius: 12px;
    padding: 32px 18px;
}





}

/* =====================================================
   RESPONSIVE - TABLET & SMALL DESKTOP (max-width: 1200px)
   ===================================================== */
@media (max-width: 1199px) {
    /* Hero */
    .hero-content-wrapper {
        padding: 130px 40px 0px;
        gap: 40px;
    }
    .hero-title {
        font-size: 52px;
    }
    .hero-form-container {
        width: 380px;
    }

   

    /* Contact */
    .contact-container {
        gap: 40px;
    }
    .contact-form-wrapper {
        padding: 40px;
    }
    .contact-direct-wrapper {
        flex: 0 0 280px;
    }
}


/* =====================================================
   RESPONSIVE - TABLET (max-width: 991px)
   ===================================================== */
@media (max-width: 991px) {
    /* Hero */
    .hero-background {
        height: auto;
        min-height: 100vh;
    }
    .hero-content-wrapper {
        flex-direction: column;
        justify-content: center;
        padding: 120px 30px 60px;
        gap: 12px;
        text-align: center;
    }
    .hero-left-content {
        max-width: 600px;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-title br {
        display: none;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-form-container {
        width: 100%;
        max-width: 450px;
    }

    /* About */
    .about-section {
        padding: 80px 40px 100px;
    }
    .about-quote-icon {
        font-size: 128px;
    }
    .about-title {
        font-size: 36px;
    }
    .about-description {
        font-size: 17px;
    }

   

    
    /* Scroll reveal adjustments for tablet */
    .scroll-reveal.scroll-reveal-left,
    .scroll-reveal.scroll-reveal-right {
        transform: translateY(40px);
    }
    
    .scroll-reveal.scroll-reveal-left.revealed,
    .scroll-reveal.scroll-reveal-right.revealed {
        transform: translateY(0);
    }

    /* Partners */
    .partners-section {
        padding: 60px 0;
    }
    .partners-title {
        font-size: 18px;
        margin-bottom: 30px;
    }

    /* Statement */
    .statement-section {
        padding: 70px 40px;
    }
    .statement-text {
        font-size: 22px;
    }

    /* Contact */
    .contact-section {
        padding: 80px 40px 0;
    }
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .contact-form-wrapper {
        max-width: 100%;
        width: 100%;
    }
    .contact-divider {
        padding: 40px 0;
    }
    .contact-divider span::before,
    .contact-divider span::after {
        display: none;
    }
    .contact-direct-wrapper {
        flex: none;
        width: 100%;
        max-width: 500px;
        padding-top: 0;
    }
    .contact-direct-title {
        text-align: center;
    }
    .footer-bottom {
        padding: 24px 40px;
    }
}


/* =====================================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ===================================================== */
@media (max-width: 768px) {
    /* Reduce scroll reveal animation distance on mobile */
    .scroll-reveal {
        transform: translateY(30px);
    }
    .form-group {
        margin-bottom: 8px;
    }
    /* Hero */
    .hero-logo img {
        height: 50px;
    }
    .hero-content-wrapper {
        padding: 100px 24px 50px;
        gap: 4px;
    }
    .hero-tagline {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 6px 14px;
        margin-top: 12px;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .form-card {
        padding: 28px 24px;
        border-radius: 16px;
    }
    .form-header h2 {
        font-size: 22px;
    }
    .form-header p {
        font-size: 13px;
    }
    .form-group input,
    .form-group select {
        padding: 12px 16px;
        font-size: 16px;
    }
    .btn-submit {
        padding: 14px 24px;
        font-size: 14px;
    }

    /* About */
    .about-section {
        padding: 70px 24px 80px;
    }
    .about-quote-icon {
        font-size: 96px;
    }
    .about-title {
        font-size: 28px;
    }
    .about-description {
        font-size: 16px;
    }
    .about-footer {
        margin-top: 40px;
        gap: 15px;
    }
    .about-line {
        width: 50px;
    }
    .about-brand {
        font-size: 14px;
        letter-spacing: 2px;
    }

   
    /* Features */
    .features-section {
        padding: 60px 24px;
    }
    .features-title {
        font-size: 28px;
        margin-bottom: 28px;
    }
    .features-list {
        gap: 16px;
    }
    .features-list li {
        font-size: 16px;
        gap: 14px;
    }
    .feature-icon {
        width: 26px;
        height: 26px;
    }
    .features-image::before {
        display: none;
    }
    .features-image img {
        height: 320px;
        border-radius: 16px;
    }

    /* Partners */
    .partners-section {
        padding: 50px 0;
    }
    .partners-title {
        font-size: 16px;
        padding: 0 20px;
    }
    .partner-logo {
        margin: 0 30px;
    }
    .partner-logo img {
        max-height: 40px;
    }

    /* Statement */
    .statement-section {
        padding: 60px 24px;
    }
    .statement-text {
        font-size: 20px;
        line-height: 1.8;
    }
    .statement-text::before,
    .statement-text::after {
        width: 50px;
    }
    .statement-text::before {
        margin-bottom: 24px;
    }
    .statement-text::after {
        margin-top: 24px;
    }

    /* Contact */
    .contact-section {
        padding: 60px 24px 0;
    }
    .contact-form-wrapper {
        padding: 32px 28px;
        border-radius: 20px;
    }
    .contact-title {
        font-size: 28px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .btn-contact-submit {
        width: 100%;
        font-size: 14px;
    }
    .contact-direct-item {
        padding: 18px 20px;
    }
    .contact-direct-icon {
        width: 46px;
        height: 46px;
    }
    .footer-bottom {
        padding: 22px 24px;
    }
    .footer-bottom p {
        font-size: 13px;
    }
}


/* =====================================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ===================================================== */
@media (max-width: 480px) {
    /* Smaller animation distance for small screens */
    .scroll-reveal {
        transform: translateY(25px);
    }
    
    /* Hero */
    .hero-content-wrapper {
        padding: 90px 20px 40px;
    }
    .hero-logo img {
        height: 45px;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-description {
        font-size: 15px;
        margin-bottom: 16px;
    }
    .form-card {
        padding: 24px 20px;
    }
    .form-header h2 {
        font-size: 20px;
    }
    .form-header p {
        font-size: 12px;
    }
    .contact-form {
        gap: 16px;
    }
    .form-group label, .form-header p {
        font-size: 12px;
        text-align: left;
        margin-bottom: 0px;
    }

    /* About */
    .about-section {
        padding: 60px 20px 70px;
    }
    .about-quote-icon {
        font-size: 80px;
    }
    .about-title {
        font-size: 24px;
    }
    .about-description {
        font-size: 15px;
    }
    .about-line {
        width: 35px;
    }
    .about-brand {
        font-size: 13px;
    }

    

    /* Features */
    .features-section {
        padding: 50px 20px;
    }
    .features-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .features-list li {
        font-size: 15px;
        gap: 12px;
    }
    .feature-icon {
        width: 24px;
        height: 24px;
    }
    .feature-icon svg {
        width: 12px;
        height: 12px;
    }
    .features-image img {
        height: 280px;
    }

    /* Partners */
    .partners-section {
        padding: 40px 0;
    }
    .partners-title {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .partner-logo {
        margin: 0 25px;
    }
    .partner-logo img {
        max-height: 35px;
    }

    /* Statement */
    .statement-section {
        padding: 50px 20px;
    }
    .statement-text {
        font-size: 18px;
    }
    .statement-text::before,
    .statement-text::after {
        width: 40px;
    }
    .statement-text::before {
        margin-bottom: 20px;
    }
    .statement-text::after {
        margin-top: 20px;
    }

    /* Contact */
    .contact-section {
        padding: 50px 20px 0;
    }
    .contact-form-wrapper {
        padding: 28px 22px;
    }
    .contact-label {
        font-size: 11px;
    }
    .contact-title {
        font-size: 24px;
    }
    .contact-form-main {
        gap: 16px;
    }
    .form-group-main label {
        font-size: 13px;
    }
    .form-group-main input,
    .form-group-main textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
    .contact-direct-item {
        gap: 14px;
        padding: 16px 18px;
    }
    .contact-direct-icon {
        width: 42px;
        height: 42px;
    }
    .contact-direct-icon svg {
        width: 18px;
        height: 18px;
    }
    .contact-direct-label {
        font-size: 11px;
    }
    .contact-direct-value {
        font-size: 15px;
    }
    .footer-bottom p {
        font-size: 12px;
        line-height: 1.6;
    }
}


/* =====================================================
   REDUCED MOTION PREFERENCE
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .scroll-reveal.revealed {
        opacity: 1;
        transform: none;
    }
    
    .hero-tagline,
    .hero-title,
    .hero-description,
    .form-card {
        animation: none;
        opacity: 1;
    }
    
    .partners-track {
        animation: none;
    }
}