﻿/* ==================== SERVICE CENTRE HERO SECTION ==================== */
.service-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .service-hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
/*        background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);*/
        z-index: 2;
    }

    .service-hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.75);
    }

.service-breadcrumb-nav {
    position: absolute;
    top: 20px;
    left: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.service-breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

    .service-breadcrumb-link:hover,
    .service-breadcrumb-link.active {
        color: #ffffff;
    }

.service-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.service-hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
    max-width: 1600px;
    margin: 0 auto;
}

.service-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 1100px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    animation: serviceFadeInUp 0.8s ease-out;
}

.service-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    max-width: 750px;
    line-height: 1.5;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
    animation: serviceFadeInUp 0.8s ease-out 0.2s both;
}

.service-hero-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 1000px;
    line-height: 1.7;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
    animation: serviceFadeInUp 0.8s ease-out 0.4s both;
}

@keyframes serviceFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .service-hero-title {
        font-size: 48px;
    }

    .service-hero-subtitle {
        font-size: 18px;
    }

    .service-hero-description {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .service-breadcrumb-nav {
        left: 40px;
    }

    .service-hero-content {
        padding: 0 40px;
    }

    .service-hero-title {
        font-size: 42px;
        margin-bottom: 18px;
    }

    .service-hero-subtitle {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .service-hero-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .service-hero-section {
        min-height: 500px;
    }

    .service-breadcrumb-nav {
        left: 20px;
        font-size: 10px;
    }

    .service-breadcrumb-separator {
        font-size: 13px;
    }

    .service-hero-content {
        padding: 0 20px;
    }

    .service-hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .service-hero-subtitle {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .service-hero-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 28px;
    }

    .service-hero-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .service-hero-description {
        font-size: 12px;
        line-height: 1.6;
    }
}
/* ==================== SERVICE BENEFITS BAR ==================== */
.service-benefits-bar {
    background-color: #1a1a1a;
    padding: 40px 0;
}

.service-benefits-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.benefit-item-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.benefit-icon-bar {
    width: 64px;
    height: 64px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .benefit-icon-bar svg {
        width: 100%;
        height: 100%;
    }

.benefit-text-bar {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .service-benefits-container {
        padding: 0 60px;
        gap: 30px;
    }

    .benefit-icon-bar {
        width: 56px;
        height: 56px;
    }

    .benefit-text-bar {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .service-benefits-bar {
        padding: 35px 0;
    }

    .service-benefits-container {
        padding: 0 40px;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .benefit-icon-bar {
        width: 52px;
        height: 52px;
    }

    .benefit-text-bar {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .service-benefits-bar {
        padding: 30px 0;
    }

    .service-benefits-container {
        padding: 0 20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefit-item-bar {
        gap: 12px;
    }

    .benefit-icon-bar {
        width: 48px;
        height: 48px;
    }

    .benefit-text-bar {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .service-benefits-bar {
        padding: 25px 0;
    }

    .service-benefits-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .benefit-item-bar {
        gap: 10px;
    }

    .benefit-icon-bar {
        width: 44px;
        height: 44px;
    }

    .benefit-text-bar {
        font-size: 10px;
    }
}

/* ==================== SERVICE WHY CHOOSE SECTION ==================== */
.service-why-choose-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.service-why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: center;
}

.service-why-choose-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.service-why-choose-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #555555;
    line-height: 1.5;
    margin: 0 0 60px 0;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-feature-card {
    background-color: #3a3a3a;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
    min-height: 260px;
}

    .service-feature-card:hover {
        transform: translateY(-8px);
        background-color: #444444;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

.service-feature-icon {
    width: 56px;
    height: 56px;
    color: #ffffff;
    margin-bottom: 20px;
}

    .service-feature-icon svg {
        width: 100%;
        height: 100%;
    }

.service-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.service-feature-desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .service-why-choose-container {
        padding: 0 60px;
    }

    .service-why-choose-title {
        font-size: 42px;
    }

    .service-why-choose-subtitle {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .service-features-grid {
        gap: 20px;
    }

    .service-feature-card {
        min-height: 240px;
    }
}

@media (max-width: 992px) {
    .service-why-choose-section {
        padding: 60px 0;
    }

    .service-why-choose-container {
        padding: 0 40px;
    }

    .service-why-choose-title {
        font-size: 36px;
    }

    .service-why-choose-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .service-feature-card {
        padding: 28px 20px;
        min-height: 220px;
    }

    .service-feature-icon {
        width: 50px;
        height: 50px;
    }

    .service-feature-title {
        font-size: 18px;
    }

    .service-feature-desc {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .service-why-choose-section {
        padding: 50px 0;
    }

    .service-why-choose-container {
        padding: 0 20px;
    }

    .service-why-choose-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .service-why-choose-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-feature-card {
        padding: 24px 20px;
        min-height: 200px;
    }

    .service-feature-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 16px;
    }

    .service-feature-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .service-feature-desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .service-why-choose-title {
        font-size: 28px;
    }

    .service-why-choose-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .service-features-grid {
        gap: 14px;
    }

    .service-feature-card {
        padding: 22px 18px;
        min-height: 180px;
        border-radius: 12px;
    }

    .service-feature-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 14px;
    }

    .service-feature-title {
        font-size: 16px;
    }

    .service-feature-desc {
        font-size: 12px;
        line-height: 1.5;
    }
}
/* ==================== CORE SERVICES SECTION ==================== */
.core-services-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.core-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: center;
}

.core-services-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.core-services-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #555555;
    line-height: 1.5;
    margin: 0 0 60px 0;
}

.core-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.core-service-card {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .core-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .service-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.core-service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 3;
    text-align: left;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
}

.service-card-description {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .core-services-container {
        padding: 0 60px;
    }

    .core-services-title {
        font-size: 42px;
    }

    .core-services-subtitle {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .core-services-grid {
        gap: 20px;
    }

    .core-service-card {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .core-services-section {
        padding: 60px 0;
    }

    .core-services-container {
        padding: 0 40px;
    }

    .core-services-title {
        font-size: 36px;
    }

    .core-services-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .core-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .core-service-card {
        height: 280px;
    }

    .service-card-content {
        padding: 20px;
    }

    .service-card-title {
        font-size: 18px;
    }

    .service-card-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .core-services-section {
        padding: 50px 0;
    }

    .core-services-container {
        padding: 0 20px;
    }

    .core-services-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .core-services-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .core-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .core-service-card {
        height: 260px;
    }

    .service-card-content {
        padding: 18px;
    }

    .service-card-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .service-card-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .core-services-title {
        font-size: 28px;
    }

    .core-services-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .core-services-grid {
        gap: 14px;
    }

    .core-service-card {
        height: 240px;
        border-radius: 12px;
    }

    .service-card-content {
        padding: 16px;
    }

    .service-card-title {
        font-size: 16px;
    }

    .service-card-description {
        font-size: 12px;
        line-height: 1.5;
    }
}
/* ==================== LUXURY EXOTIC SECTION ==================== */
.luxury-exotic-section {
    position: relative;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.luxury-exotic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .luxury-exotic-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.luxury-exotic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*    background: rgba(0, 0, 0, 0.65);*/
    z-index: 2;
}

.luxury-exotic-container {
    position: relative;
    z-index: 5;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
}

.luxury-exotic-header {
    text-align: center;
    margin-bottom: 50px;
}

.luxury-exotic-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
}

.luxury-exotic-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.5;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
}

.luxury-exotic-content-wrapper {
    max-width: 900px;
}

.luxury-exotic-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 40px 0;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
}

.luxury-exotic-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.luxury-exotic-service-card {
    background-color: rgba(26, 26, 26, 0.85);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

    .luxury-exotic-service-card:hover {
        background-color: rgba(35, 35, 35, 0.9);
        transform: translateY(-4px);
    }

.luxury-exotic-service-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    color: #ffffff;
}

    .luxury-exotic-service-icon svg {
        width: 100%;
        height: 100%;
    }

.luxury-exotic-service-info {
    flex: 1;
}

.luxury-exotic-service-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.luxury-exotic-service-desc {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .luxury-exotic-container {
        padding: 0 60px;
    }

    .luxury-exotic-title {
        font-size: 42px;
    }

    .luxury-exotic-subtitle {
        font-size: 18px;
    }

    .luxury-exotic-description {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .luxury-exotic-section {
        min-height: 650px;
        padding: 60px 0;
    }

    .luxury-exotic-container {
        padding: 0 40px;
    }

    .luxury-exotic-header {
        margin-bottom: 40px;
    }

    .luxury-exotic-title {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .luxury-exotic-subtitle {
        font-size: 17px;
    }

    .luxury-exotic-description {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .luxury-exotic-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .luxury-exotic-section {
        min-height: 600px;
        padding: 50px 0;
    }

    .luxury-exotic-container {
        padding: 0 20px;
    }

    .luxury-exotic-header {
        margin-bottom: 35px;
    }

    .luxury-exotic-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .luxury-exotic-subtitle {
        font-size: 16px;
    }

    .luxury-exotic-description {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .luxury-exotic-services-grid {
        gap: 14px;
    }

    .luxury-exotic-service-card {
        padding: 20px;
        gap: 14px;
    }

    .luxury-exotic-service-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .luxury-exotic-service-title {
        font-size: 15px;
    }

    .luxury-exotic-service-desc {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .luxury-exotic-title {
        font-size: 28px;
    }

    .luxury-exotic-subtitle {
        font-size: 14px;
    }

    .luxury-exotic-description {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .luxury-exotic-services-grid {
        gap: 12px;
    }

    .luxury-exotic-service-card {
        padding: 18px;
        border-radius: 10px;
    }

    .luxury-exotic-service-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}
/* ==================== LUXURY FEATURES SECTION ==================== */
.luxury-features-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.luxury-features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: center;
}

.luxury-features-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.luxury-features-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #555555;
    line-height: 1.5;
    margin: 0 0 60px 0;
}

.luxury-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.luxury-feature-box {
    background-color: #e8e8e8;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    transition: all 0.3s ease;
}

    .luxury-feature-box:hover {
        background-color: #dedede;
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

.luxury-feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .luxury-feature-icon svg {
        width: 100%;
        height: 100%;
    }

.luxury-feature-content {
    flex: 1;
}

.luxury-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.luxury-feature-description {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .luxury-features-container {
        padding: 0 60px;
    }

    .luxury-features-title {
        font-size: 42px;
    }

    .luxury-features-subtitle {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .luxury-features-grid {
        gap: 20px;
    }

    .luxury-feature-box {
        padding: 28px;
    }
}

@media (max-width: 992px) {
    .luxury-features-section {
        padding: 60px 0;
    }

    .luxury-features-container {
        padding: 0 40px;
    }

    .luxury-features-title {
        font-size: 36px;
    }

    .luxury-features-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .luxury-features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .luxury-feature-box {
        padding: 24px;
    }

    .luxury-feature-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .luxury-feature-title {
        font-size: 17px;
    }

    .luxury-feature-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .luxury-features-section {
        padding: 50px 0;
    }

    .luxury-features-container {
        padding: 0 20px;
    }

    .luxury-features-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .luxury-features-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .luxury-features-grid {
        gap: 16px;
    }

    .luxury-feature-box {
        padding: 22px;
        gap: 16px;
    }

    .luxury-feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .luxury-feature-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .luxury-feature-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .luxury-features-title {
        font-size: 28px;
    }

    .luxury-features-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .luxury-features-grid {
        gap: 14px;
    }

    .luxury-feature-box {
        padding: 20px;
        border-radius: 10px;
    }

    .luxury-feature-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .luxury-feature-title {
        font-size: 15px;
    }

    .luxury-feature-description {
        font-size: 12px;
        line-height: 1.5;
    }
}
/* ==================== LUXURY BRANDS SECTION ==================== */
.luxury-brands-section {
    background-color: #0a0a0a;
    padding: 80px 0;
}

.luxury-brands-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: center;
}

.luxury-brands-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.luxury-brands-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0 0 60px 0;
}

.luxury-brands-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 24px;
}

.luxury-brand-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
}

    .luxury-brand-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
    }

    .luxury-brand-box img {
        max-width: 100%;
        max-height: 60px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(100%);
        transition: filter 0.3s ease;
    }

    .luxury-brand-box:hover img {
        filter: grayscale(0%);
    }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1400px) {
    .luxury-brands-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .luxury-brands-container {
        padding: 0 60px;
    }

    .luxury-brands-title {
        font-size: 42px;
    }

    .luxury-brands-subtitle {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .luxury-brands-grid {
        gap: 20px;
    }

    .luxury-brand-box {
        padding: 28px 20px;
        min-height: 110px;
    }
}

@media (max-width: 992px) {
    .luxury-brands-section {
        padding: 60px 0;
    }

    .luxury-brands-container {
        padding: 0 40px;
    }

    .luxury-brands-title {
        font-size: 36px;
    }

    .luxury-brands-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .luxury-brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .luxury-brand-box {
        padding: 24px 18px;
        min-height: 100px;
    }

        .luxury-brand-box img {
            max-height: 50px;
        }
}

@media (max-width: 768px) {
    .luxury-brands-section {
        padding: 50px 0;
    }

    .luxury-brands-container {
        padding: 0 20px;
    }

    .luxury-brands-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .luxury-brands-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .luxury-brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .luxury-brand-box {
        padding: 20px 16px;
        min-height: 90px;
    }

        .luxury-brand-box img {
            max-height: 45px;
        }
}

@media (max-width: 480px) {
    .luxury-brands-title {
        font-size: 28px;
    }

    .luxury-brands-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .luxury-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .luxury-brand-box {
        padding: 18px 14px;
        min-height: 80px;
        border-radius: 10px;
    }

        .luxury-brand-box img {
            max-height: 40px;
        }
}
/* ==================== GET IN TOUCH SECTION ==================== */
.get-in-touch-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.get-in-touch-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.get-in-touch-header {
    text-align: center;
    margin-bottom: 60px;
}

.get-in-touch-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.get-in-touch-main-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #555555;
    line-height: 1.5;
    margin: 0;
}

.get-in-touch-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.get-in-touch-left-side {
    flex: 0 0 400px;
}

.get-in-touch-info-heading {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 32px 0;
    line-height: 1.3;
}

.get-in-touch-contact-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 50px;
}

.get-in-touch-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.get-in-touch-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

    .get-in-touch-contact-icon svg {
        width: 22px;
        height: 22px;
    }

.get-in-touch-contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
}

    .get-in-touch-contact-details p {
        font-size: 16px;
        font-weight: 400;
        color: #333333;
        line-height: 1.5;
        margin: 0;
    }

.get-in-touch-social-area {
    margin-top: 40px;
}

.get-in-touch-social-heading {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.get-in-touch-social-icons {
    display: flex;
    gap: 12px;
}

.get-in-touch-social-icon {
    width: 48px;
    height: 48px;
    background-color: #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .get-in-touch-social-icon:hover {
        background-color: #3a3a3a;
        transform: translateY(-4px);
    }

    .get-in-touch-social-icon svg {
        width: 20px;
        height: 20px;
    }

.get-in-touch-form-card {
    flex: 1;
    background-color: #2a2a2a;
    border-radius: 20px;
    padding: 40px;
}

.get-in-touch-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.get-in-touch-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.get-in-touch-input-label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

.get-in-touch-text-input,
.get-in-touch-text-area {
    background-color: #3a3a3a;
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    font-family: inherit;
    transition: all 0.3s ease;
}

    .get-in-touch-text-input::placeholder,
    .get-in-touch-text-area::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .get-in-touch-text-input:focus,
    .get-in-touch-text-area:focus {
        outline: none;
        background-color: #444444;
    }

.get-in-touch-text-area {
    resize: vertical;
    min-height: 110px;
}

.get-in-touch-send-button {
    background-color: #d4a745;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: 4px;
}

    .get-in-touch-send-button:hover {
        background-color: #c09635;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(212, 167, 69, 0.3);
    }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .get-in-touch-container {
        padding: 0 60px;
    }

    .get-in-touch-main-title {
        font-size: 42px;
    }

    .get-in-touch-layout {
        gap: 50px;
    }

    .get-in-touch-left-side {
        flex: 0 0 350px;
    }
}

@media (max-width: 992px) {
    .get-in-touch-section {
        padding: 60px 0;
    }

    .get-in-touch-container {
        padding: 0 40px;
    }

    .get-in-touch-header {
        margin-bottom: 50px;
    }

    .get-in-touch-main-title {
        font-size: 36px;
    }

    .get-in-touch-main-subtitle {
        font-size: 17px;
    }

    .get-in-touch-layout {
        flex-direction: column;
        gap: 40px;
    }

    .get-in-touch-left-side {
        flex: 1 1 auto;
    }

    .get-in-touch-form-card {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .get-in-touch-section {
        padding: 50px 0;
    }

    .get-in-touch-container {
        padding: 0 20px;
    }

    .get-in-touch-header {
        margin-bottom: 40px;
    }

    .get-in-touch-main-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .get-in-touch-main-subtitle {
        font-size: 16px;
    }

    .get-in-touch-info-heading {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .get-in-touch-contact-list {
        gap: 24px;
        margin-bottom: 40px;
    }

    .get-in-touch-form-card {
        padding: 30px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .get-in-touch-main-title {
        font-size: 28px;
    }

    .get-in-touch-main-subtitle {
        font-size: 14px;
    }

    .get-in-touch-info-heading {
        font-size: 20px;
    }

    .get-in-touch-contact-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .get-in-touch-contact-details p {
        font-size: 14px;
    }

    .get-in-touch-social-icon {
        width: 44px;
        height: 44px;
    }

    .get-in-touch-form-card {
        padding: 25px;
    }

    .get-in-touch-contact-form {
        gap: 18px;
    }

    .get-in-touch-text-input,
    .get-in-touch-text-area {
        padding: 12px 14px;
        font-size: 14px;
    }

    .get-in-touch-send-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}
