/* Enhanced Luxury Homepage Styles */

/* Hero Section - Ultra Luxury */

.hero-section {
    background: #FDF9F4;
    /*min-height: calc(100vh - 160px);*/
}

.hero-title {
    text-shadow: 0 10px 30px rgba(233, 191, 110, 0.8) !important;
    transition: .25s ease;
}

.hero-badge {}

.hero-cta-container {
    margin-bottom: 1.5rem;
}

.hero-cta-primary {
    box-shadow: 0 10px 48px rgba(233, 191, 110, 0.8) !important;
}

.hero-content {
    /*position: absolute !important;*/
}

.hero-description {
    color: var(--main-color) !important;
    text-shadow: none !important;
}

.bg-blur {
    /*
    background: rgba(233, 191, 110, 0.1); border-radius: 3rem; padding: 30px 30px; z-index:99999;
    transition: .25s ease;
*/
}

.bg-blur.next {
    /*    background: rgba(233, 191, 110, 0.2);*/
}

.hero-title span {
    color: rgba(0, 0, 0, 0.9);
}

.next .hero-title span {
    animation: changeClr 2s ease-in-out forwards;
}

@keyframes changeClr {
    0% {}

    100% {
        color: var(--main-color);
    }
}

.next .bg-image {
    animation: zoomOut 2s ease-in-out forwards;
}

@keyframes zoomOut {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}


.hero-luxury {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg,
            rgba(32, 27, 29, 0.95) 0%,
            rgba(32, 27, 29, 0.8) 50%,
            rgba(233, 191, 110, 0.1) 100%);
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #e9bf6e, #d4a855);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-luxury var(--duration, 20s) linear infinite;
    animation-delay: var(--delay, 0s);
}

.floating-element:nth-child(odd) {
    background: linear-gradient(45deg, rgba(233, 191, 110, 0.8), rgba(255, 255, 255, 0.3));
}

@keyframes float-luxury {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(233, 191, 110, 0.1) 0%, rgba(32, 27, 29, 0.8) 70%);
}

.geometric-patterns {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.pattern-svg {
    width: 100%;
    height: 100%;
}

.animated-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-path 3s ease-in-out forwards;
    animation-delay: 1s;
}

@keyframes draw-path {
    to {
        stroke-dashoffset: 0;
    }
}

.hero-content-luxury {
    position: relative;
    z-index: 20;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
}

.hero-badge-luxury {
    position: relative;
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(233, 191, 110, 0.2), rgba(233, 191, 110, 0.1));
    border: 2px solid rgba(233, 191, 110, 0.4);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    margin-bottom: 2rem;
    overflow: hidden;
}

.badge-text {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: #e9bf6e;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.hero-title-luxury {
    margin-bottom: 2rem;
    text-align: center;
}

.title-line {
    display: block;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 6rem);
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(50px);
    animation: reveal-text 1s ease-out forwards;
    line-height: 1;
}

.title-accent {
    background: linear-gradient(135deg, #e9bf6e, #f4d03f, #e9bf6e);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite, reveal-text 1s ease-out forwards;
}

@keyframes reveal-text {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-description-luxury {
    max-width: 54rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.description-main {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-family: "Inter", sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
}

.text-highlight {
    color: #e9bf6e;
    font-weight: 500;
}

.description-sub {
    font-size: 1.125rem;
    font-family: "Inter", sans-serif;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta-luxury {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-cta-luxury {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-primary-luxury {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #e9bf6e, #d4a855);
    color: #201b1d;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(233, 191, 110, 0.3);
}

.cta-primary-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(233, 191, 110, 0.4);
}

.cta-secondary-luxury {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: white;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.cta-secondary-luxury:hover {
    border-color: #e9bf6e;
    color: #e9bf6e;
    transform: translateY(-2px);
}

.cta-text {
    margin-right: 0.75rem;
}

.cta-icon {
    transition: transform 0.3s ease;
}

.cta-primary-luxury:hover .cta-icon,
.cta-secondary-luxury:hover .cta-icon {
    transform: translateX(4px);
}

.cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-primary-luxury:hover .cta-shimmer {
    left: 100%;
}

.hero-stats-luxury {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 4xl;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(233, 191, 110, 0.3);
}

@media (min-width: 768px) {
    .hero-stats-luxury {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item-luxury {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(233, 191, 110, 0.2);
    transition: all 0.4s ease;
}

.stat-item-luxury:hover {
    transform: translateY(-5px);
    background: rgba(233, 191, 110, 0.1);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #e9bf6e, #d4a855);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #201b1d;
    font-size: 1.25rem;
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #e9bf6e;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(233, 191, 110, 0.3);
}

.stat-label {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator-luxury {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 20;
}

.scroll-mouse {
    width: 2rem;
    height: 3rem;
    border: 2px solid rgba(233, 191, 110, 0.8);
    border-radius: 1.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: #e9bf6e;
    border-radius: 0.125rem;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {

    0%,
    20% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

.scroll-text {
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Services Section */
.services-luxury {
    position: relative;
}

.section-bg-elements {
    position: absolute;
    inset: 0;
    opacity: 0.03;
}

.bg-pattern-luxury {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, #e9bf6e 2px, transparent 2px);
    background-size: 50px 50px;
}

.services-grid-luxury {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid-luxury {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid-luxury {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.service-card-luxury {
    position: relative;
    background: #F8F6F3;
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid rgba(233, 191, 110, 0.1);
    transition: all 0.5s ease;
    overflow: hidden;
}

.dark .service-card-luxury {
    background: #262626;
    border-color: rgba(233, 191, 110, 0.2);
}

.service-card-luxury:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.dark .service-card-luxury:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-icon-container {
    position: relative;
    width: 5rem;
    height: 5rem;
    margin-bottom: 2rem;
}

.service-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 191, 110, 0.2), rgba(233, 191, 110, 0.1));
    border: 2px solid rgba(233, 191, 110, 0.3);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e9bf6e;
    font-size: 2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card-luxury:hover .service-icon {
    background: linear-gradient(135deg, #e9bf6e, #d4a855);
    color: #201b1d;
    transform: scale(1.1);
}

.icon-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(233, 191, 110, 0.3), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-luxury:hover .icon-glow {
    opacity: 1;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #201b1d;
    margin-bottom: 0.5rem;
}

.dark .service-title {
    color: white;
}

.service-subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #e9bf6e;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-description {
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #525252;
    margin-bottom: 2rem;
}

.dark .service-description {
    color: #d1d5db;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-family: "Inter", sans-serif;
    color: #525252;
}

.dark .feature-item {
    color: #d1d5db;
}

.feature-item i {
    color: #e9bf6e;
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

.service-hover-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233, 191, 110, 0.05), rgba(233, 191, 110, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 2rem;
}

.service-card-luxury:hover .service-hover-effect {
    opacity: 1;
}

/* Projects Showcase */
.projects-grid-luxury {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .projects-grid-luxury {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid-luxury {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card-luxury {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(233, 191, 110, 0.1);
    transition: all 0.5s ease;
}

.dark .project-card-luxury {
    background: #262626;
    border-color: rgba(233, 191, 110, 0.2);
}

.project-card-luxury:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.project-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card-luxury:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(32, 27, 29, 0.8), rgba(233, 191, 110, 0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card-luxury:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card-luxury:hover .project-overlay-content {
    transform: translateY(0);
}

.project-overlay-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-overlay-location {
    font-family: "Inter", sans-serif;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.project-overlay-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(233, 191, 110, 0.2);
    border: 1px solid rgba(233, 191, 110, 0.4);
    border-radius: 50px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.project-overlay-cta:hover {
    background: #e9bf6e;
    color: #201b1d;
}

.project-overlay-cta i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.project-overlay-cta:hover i {
    transform: translateX(4px);
}

.project-info {
    padding: 2rem;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #201b1d;
    flex: 1;
}

.dark .project-title {
    color: white;
}

.project-value {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #e9bf6e;
    font-size: 1.125rem;
}

.project-location {
    font-family: "Inter", sans-serif;
    color: #525252;
    margin-bottom: 0.5rem;
}

.dark .project-location {
    color: #d1d5db;
}

.project-size {
    font-family: "Inter", sans-serif;
    color: #737373;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.dark .project-size {
    color: #9ca3af;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(233, 191, 110, 0.1);
    border: 1px solid rgba(233, 191, 110, 0.3);
    border-radius: 20px;
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    color: #e9bf6e;
    font-weight: 500;
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    max-width: 4xl;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #e9bf6e 20%, #e9bf6e 80%, transparent);
}

@media (min-width: 768px) {
    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 5rem;
}

@media (min-width: 768px) {
    .timeline-item {
        padding-left: 0;
        width: 50%;
    }

    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-left: 3rem;
    }

    .timeline-item:nth-child(odd) {
        padding-right: 3rem;
        text-align: right;
    }
}

.timeline-marker {
    position: absolute;
    left: 1rem;
    top: 0;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #e9bf6e, #d4a855);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px white, 0 0 0 8px rgba(233, 191, 110, 0.2);
}

.dark .timeline-marker {
    box-shadow: 0 0 0 4px #262626, 0 0 0 8px rgba(233, 191, 110, 0.2);
}

@media (min-width: 768px) {
    .timeline-marker {
        /*    left: 50%;*/
        transform: translateX(-50%);
    }
}

.timeline-number {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #201b1d;
}

.timeline-content {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(233, 191, 110, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dark .timeline-content {
    background: #262626;
    border-color: rgba(233, 191, 110, 0.2);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.timeline-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #201b1d;
    /*  flex: 1;*/
}

.dark .timeline-title {
    color: white;
}

.timeline-duration {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #e9bf6e;
    font-size: 0.875rem;
    background: rgba(233, 191, 110, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.timeline-description {
    text-align: left;
    font-family: "Inter", sans-serif;
    color: #525252;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dark .timeline-description {
    color: #d1d5db;
}

.timeline-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.activity-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(233, 191, 110, 0.1);
    border: 1px solid rgba(233, 191, 110, 0.3);
    border-radius: 20px;
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    color: #e9bf6e;
    font-weight: 500;
}

/* Testimonials */
.testimonials-luxury {
    position: relative;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
}

.testimonials-pattern {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(32, 27, 29, 0.1) 2px, transparent 2px);
    background-size: 40px 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(32, 27, 29, 0.1);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid rgba(32, 27, 29, 0.1);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-name {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: #201b1d;
    margin-bottom: 0.25rem;
}

.client-location {
    font-family: "Inter", sans-serif;
    color: #525252;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.client-rating {
    display: flex;
    gap: 0.25rem;
}

.client-rating i {
    color: #e9bf6e;
    font-size: 0.875rem;
}

.testimonial-quote {
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #201b1d;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    color: rgba(233, 191, 110, 0.3);
    position: absolute;
    top: -1rem;
    left: -1rem;
    line-height: 1;
}

.testimonial-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(32, 27, 29, 0.1);
}

/* Awards Section */
.awards-section {
    position: relative;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.award-item {
    text-align: center;
    padding: 2rem;
    background: rgba(233, 191, 110, 0.1);
    border-radius: 1.5rem;
    border: 1px solid rgba(233, 191, 110, 0.2);
    transition: all 0.4s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    background: rgba(233, 191, 110, 0.15);
}

.award-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #e9bf6e, #d4a855);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #201b1d;
    font-size: 1.5rem;
}

.award-title {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: white;
    margin-bottom: 0.5rem;
}

.award-year {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #e9bf6e;
    margin-bottom: 0.25rem;
}

.award-org {
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Scroll Reveal Animations */
/* Remove these custom scroll reveal styles */
/* [data-scroll-reveal] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

[data-scroll-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-scroll-reveal="fade-up"].revealed {
  transform: translateY(0);
}

[data-scroll-reveal="scale-up"] {
  transform: scale(0.8);
}

[data-scroll-reveal="scale-up"].revealed {
  transform: scale(1);
} */

/* Add these enhanced animation styles */
.page-loaded {
    opacity: 1;
}

/* Enhanced button transitions */
.cta-primary-luxury,
.cta-secondary-luxury,
.cta-primary-premium,
.cta-secondary-premium {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-icon,
.btn-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced card transitions */
.service-card-luxury,
.project-card-luxury,
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-image {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-overlay {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-hover-effect {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduced animations class */
.reduced-animations * {
    animation-duration: 0.1s !important;
    transition-duration: 0.1s !important;
}

.reduced-animations .floating-element {
    display: none;
}

/* AOS custom animations */
[data-aos="zoom-in"] {
    transform: scale(0.6);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-content-luxury {
        padding-top: 100px;
    }

    .hero-stats-luxury {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid-luxury {
        grid-template-columns: 1fr;
    }

    .service-card-luxury {
        padding: 2rem;
    }

    .projects-grid-luxury {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        padding-left: 4rem;
    }

    .timeline-marker {
        width: 3rem;
        height: 3rem;
        left: 0.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }
}

/* Performance Optimizations */
.hero-luxury,
.services-luxury,
.projects-showcase,
.process-timeline,
.testimonials-luxury,
.awards-section,
.cta-premium {
    will-change: transform;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-element,
    .floating-shape {
        animation: none;
    }

    .scroll-wheel {
        animation: none;
    }
}
