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

:root {
    --primary-color: #212121;
    --secondary-color: #424242;
    --accent-color: #e0e0e0;
    --text-color: #ffffff;
    --heading-font: 'Oswald', serif;
    --body-font: 'Roboto', sans-serif;
    --accent-font: 'Bebas Neue', cursive;
    --animation-duration: 600ms;
    --spacing-unit: 1.5rem;
}


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

body {
    font-family: var(--body-font);
    background: linear-gradient(135deg, #212121 0%, #424242 100%);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-brand {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

.section-spacing {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 3rem 0;
    }
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #212121, #e0e0e0);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-conic-gradient(from 0deg, transparent 0deg, rgba(255,255,255,0.03) 1deg, transparent 2deg);
    animation: rotate 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--heading-font);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, var(--accent-color), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: boldPulse var(--animation-duration) ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: boldSlide var(--animation-duration) ease-out 0.2s both;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-color), #ffffff);
    color: var(--primary-color);
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: scale(1.05) rotateX(5deg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.services-masonry {
    columns: 3;
    column-gap: 2rem;
    margin-top: 3rem;
}

.masonry-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 2px solid transparent;
    border-radius: 0;
    padding: 2.5rem;
    margin-bottom: 2rem;
    break-inside: avoid;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.masonry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.masonry-item:hover::before {
    transform: scaleX(1);
}

.masonry-item:hover {
    transform: scale(1.05) rotateY(5deg);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .services-masonry {
        columns: 1;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 3rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-section {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    .services-timeline::before {
        left: 2rem !important;
    }
    
    .timeline-item {
        width: calc(100% - 4rem) !important;
        margin-left: 4rem !important;
        margin-right: 0 !important;
    }
    
    .timeline-item::before {
        left: -2.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes subtitleSlide {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes elegantFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes elegantSlide {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes boldPulse {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes boldSlide {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes luxuryGlow {
    0% {
        opacity: 0;
        text-shadow: 0 0 20px rgba(255,255,255,0.3);
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255,255,255,0.5);
    }
}

@keyframes luxurySlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes artisticBounce {
    0% {
        opacity: 0;
        transform: rotate(-2deg) translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: rotate(-2deg) translateY(0) scale(1);
    }
}

@keyframes artisticSlide {
    0% {
        opacity: 0;
        transform: rotate(1deg) translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: rotate(1deg) translateX(0);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modern Hero Components */
.hero-icon-container {
    position: relative;
    display: inline-block;
}

.hero-icon {
    font-size: 8rem;
    color: var(--accent-color);
    opacity: 0.8;
    animation: heroIconFloat 3s ease-in-out infinite;
}

/* Luxury Hero Styling */
.modern-hero-luxury {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.luxury-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,215,0,0.1) 0%, transparent 70%);
    z-index: 1;
}

.luxury-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.luxury-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    animation: luxuryFloat 6s ease-in-out infinite;
}

.luxury-particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.luxury-particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.luxury-particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.luxury-particle-4 {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.luxury-hero-content {
    z-index: 2;
}

.luxury-crown-decoration {
    position: relative;
    margin-bottom: 2rem;
}

.luxury-crown-icon {
    font-size: 4rem;
    color: #ffd700;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    animation: crownGlow 3s ease-in-out infinite;
}

.crown-sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffd700;
    border-radius: 50%;
    animation: sparkleAnimation 2s ease-in-out infinite;
}

.sparkle-1 {
    top: -30px;
    left: -20px;
    animation-delay: 0s;
}

.sparkle-2 {
    top: -25px;
    right: -25px;
    animation-delay: 0.7s;
}

.sparkle-3 {
    bottom: -20px;
    left: -15px;
    animation-delay: 1.4s;
}

.luxury-logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-luxury-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: frameRotate 10s linear infinite;
}

.luxury-title {
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.luxury-title-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: titleGlow 4s ease-in-out infinite;
}

.luxury-title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: underlineExpand 3s ease-in-out infinite;
}

.luxury-location-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: inline-block;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.location-luxury-frame {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.luxury-location-icon {
    color: #ffd700;
    font-size: 1.5rem;
}

.luxury-location-text {
    margin: 0;
    font-weight: 300;
}

.luxury-description {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.luxury-buttons-container {
    position: relative;
}

.luxury-buttons-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50px;
    z-index: -1;
}

.luxury-btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border: none;
    color: #1a1a2e;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.luxury-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

.luxury-btn-secondary {
    border: 2px solid #ffd700;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.luxury-btn-secondary:hover {
    background: #ffd700;
    color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.luxury-premium-badges {
    margin-top: 3rem;
}

.premium-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.premium-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.badge-luxury-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.badge-title {
    font-weight: bold;
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.badge-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.luxury-hero-decoration {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.decoration-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.decoration-center {
    padding: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
}

.luxury-center-icon {
    font-size: 1.5rem;
    color: #ffd700;
}

@keyframes luxuryFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

@keyframes crownGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8)); }
}

@keyframes sparkleAnimation {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes frameRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes titleGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes underlineExpand {
    0%, 100% { width: 100px; }
    50% { width: 200px; }
}

.hero-accent-shapes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.shape-1, .shape-2, .shape-3 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    opacity: 0.1;
    animation: shapeFloat 4s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: -75px;
    right: -75px;
    animation-delay: 1s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: -40px;
    left: -40px;
    animation-delay: 2s;
}

.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    opacity: 0.05;
    animation: floatElement 6s ease-in-out infinite;
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* Modern Service Cards */
.modern-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.modern-card:hover::before {
    left: 100%;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--accent-color);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.service-icon-wrapper .service-icon {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.service-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255,255,255,0.1);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Timeline Components */
.services-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.services-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 45%;
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 55%;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
}

.timeline-icon {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    z-index: 2;
}

.timeline-left .timeline-icon {
    right: -85px;
}

.timeline-right .timeline-icon {
    left: -85px;
}

.timeline-icon i {
    color: white;
    font-size: 1.5rem;
}

.timeline-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.timeline-badge {
    background: rgba(255,255,255,0.1);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Modern Accordion */
.modern-accordion {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background: rgba(255,255,255,0.05);
}

.accordion-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.accordion-icon i {
    color: white;
    font-size: 1.2rem;
}

.accordion-title {
    flex: 1;
    color: var(--accent-color);
    font-weight: 600;
    margin: 0;
}

.accordion-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-toggle i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.accordion-content.show .accordion-toggle i {
    transform: rotate(45deg);
}

.accordion-body {
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.8);
}

.highlight-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Modern Contact Cards */
.contact-info-card, .contact-cta-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
}

.contact-intro {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p, .contact-details a {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.contact-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.cta-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* About Section Components */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 20px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about-icon-container {
    position: relative;
    display: inline-block;
}

.about-icon {
    font-size: 10rem;
    color: var(--accent-color);
    opacity: 0.6;
    animation: aboutIconFloat 4s ease-in-out infinite;
}

.about-accent-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    transform: translate(-50%, -50%);
    animation: circleRotate 8s linear infinite;
}

/* Animation Keyframes */
@keyframes heroIconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes shapeFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

/* Modern Luxury Hero Components */
.modern-hero-luxury {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    min-height: 100vh;
}

.luxury-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    z-index: 1;
}

.luxury-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.luxury-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.6;
    animation: luxuryParticleFloat 8s ease-in-out infinite;
}

.luxury-particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.luxury-particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.luxury-particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.luxury-particle-4 {
    top: 40%;
    right: 30%;
    animation-delay: 6s;
}

.luxury-hero-content {
    z-index: 10;
    position: relative;
}

.luxury-crown-decoration {
    position: relative;
    display: inline-block;
}

.luxury-crown-icon {
    font-size: 4rem;
    color: #ffd700;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    animation: crownGlow 3s ease-in-out infinite;
}

.crown-sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffd700;
    border-radius: 50%;
    animation: sparkleAnimation 2s ease-in-out infinite;
}

.sparkle-1 {
    top: -30px;
    left: -20px;
    animation-delay: 0s;
}

.sparkle-2 {
    top: -25px;
    right: -25px;
    animation-delay: 0.7s;
}

.sparkle-3 {
    bottom: -20px;
    left: -15px;
    animation-delay: 1.4s;
}

.luxury-logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-luxury-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    animation: logoFramePulse 4s ease-in-out infinite;
}

.luxury-title {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    position: relative;
}

.luxury-title-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 10px;
    animation: titleGlowSweep 6s ease-in-out infinite;
}

.luxury-title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: underlineExpand 3s ease-in-out infinite;
}

.luxury-location-banner {
    position: relative;
    display: inline-block;
}

.location-luxury-frame {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.luxury-location-icon {
    font-size: 1.5rem;
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.luxury-location-text {
    margin: 0;
    font-weight: 600;
}

.luxury-description {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

.luxury-buttons-container {
    position: relative;
}

.luxury-buttons-wrapper {
    position: relative;
    z-index: 2;
}

.luxury-btn-primary {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.luxury-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.luxury-btn-primary:hover::before {
    left: 100%;
}

.luxury-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.luxury-btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.luxury-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.luxury-buttons-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: buttonsGlow 4s ease-in-out infinite;
}

.luxury-premium-badges {
    margin-top: 3rem;
}

.premium-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    min-width: 200px;
}

.premium-badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-luxury-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.badge-luxury-content {
    flex: 1;
}

.badge-title {
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    font-size: 1rem;
}

.badge-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.luxury-hero-decoration {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.decoration-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: decorationPulse 3s ease-in-out infinite;
}

.decoration-center {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: centerIconRotate 8s linear infinite;
}

.luxury-center-icon {
    font-size: 1.5rem;
    color: white;
}

/* Luxury Animations */
@keyframes luxuryParticleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

@keyframes crownGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8)); }
}

@keyframes sparkleAnimation {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes logoFramePulse {
    0%, 100% { border-color: rgba(255, 215, 0, 0.3); transform: scale(1); }
    50% { border-color: rgba(255, 215, 0, 0.6); transform: scale(1.05); }
}

@keyframes titleGlowSweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes underlineExpand {
    0%, 100% { width: 100px; opacity: 0.5; }
    50% { width: 200px; opacity: 1; }
}

@keyframes buttonsGlow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes decorationPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes centerIconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes aboutIconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes circleRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-item {
        width: 100%;
        left: 0 !important;
        margin-left: 2rem;
    }
    
    .services-timeline::before {
        left: 1rem;
    }
    
    .timeline-icon {
        left: -2rem !important;
        right: auto !important;
    }
    
    .hero-icon {
        font-size: 5rem;
    }
    
    .about-icon {
        font-size: 6rem;
    }
    
    .about-accent-circle {
        width: 150px;
        height: 150px;
    }
    
    .contact-info-card, .contact-cta-card {
        padding: 2rem;
    }
    
    .modern-card {
        padding: 1.5rem;
    }
}

/* Modern Hero Components - 2025 Premium Styles */

/* Modern Hero Split Screen Styles */
.modern-hero-split {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content-side {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.hero-visual-side {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    position: relative;
}

.hero-stats-row {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.hero-icon-modern-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
}

.hero-icon-bg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

.hero-icon-modern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    z-index: 2;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: floatDot 3s ease-in-out infinite;
}

.dot-1 { top: 20%; left: 20%; animation-delay: 0s; }
.dot-2 { top: 30%; right: 25%; animation-delay: 1s; }
.dot-3 { bottom: 25%; left: 30%; animation-delay: 2s; }
.dot-4 { bottom: 20%; right: 20%; animation-delay: 1.5s; }

/* Modern Hero Centered Styles */
.modern-hero-centered {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content-centered-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.hero-decorative-top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.decorative-line-left, .decorative-line-right {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.hero-location-elegant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.location-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-trust-indicators {
    margin-top: 2rem;
}

.trust-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2rem;
}

.pattern-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    opacity: 0.1;
    animation: patternFloat 4s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

/* Modern Hero Floating Styles */
.modern-hero-floating {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.hero-floating-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    opacity: 0.1;
    border-radius: 50%;
    animation: floatingShapes 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 25%;
    animation-delay: 3s;
}

.shape-5 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle-1 { top: 15%; left: 15%; animation-delay: 0s; }
.particle-2 { top: 25%; right: 20%; animation-delay: 0.5s; }
.particle-3 { top: 45%; left: 25%; animation-delay: 1s; }
.particle-4 { bottom: 30%; right: 30%; animation-delay: 1.5s; }
.particle-5 { bottom: 20%; left: 35%; animation-delay: 2s; }
.particle-6 { top: 35%; right: 40%; animation-delay: 2.5s; }

.hero-floating-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.floating-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 32px;
    z-index: -1;
    opacity: 0.3;
    animation: cardGlow 3s ease-in-out infinite;
}

.logo-accent-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: ringPulse 2s ease-in-out infinite;
}

.title-floating-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: titleShimmer 3s ease-in-out infinite;
    z-index: -1;
}

.location-floating-badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-btn-primary, .floating-btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.floating-btn-primary:hover, .floating-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.floating-feature {
    text-align: center;
    transition: transform 0.3s ease;
}

.floating-feature:hover {
    transform: translateY(-5px);
}

.feature-floating-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.feature-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* Modern Hero Luxury Styles */
.modern-hero-luxury {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.luxury-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.luxury-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.luxury-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, var(--accent-color), #ffd700);
    border-radius: 50%;
    animation: luxuryParticle 5s ease-in-out infinite;
}

.luxury-particle-1 { top: 20%; left: 20%; animation-delay: 0s; }
.luxury-particle-2 { top: 30%; right: 25%; animation-delay: 1s; }
.luxury-particle-3 { bottom: 25%; left: 30%; animation-delay: 2s; }
.luxury-particle-4 { bottom: 20%; right: 20%; animation-delay: 3s; }

.luxury-hero-content {
    position: relative;
    z-index: 2;
}

.luxury-crown-decoration {
    position: relative;
    display: inline-block;
}

.luxury-crown-icon {
    font-size: 3rem;
    color: #ffd700;
    animation: crownGlow 2s ease-in-out infinite;
}

.crown-sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: sparkleAnimation 1.5s ease-in-out infinite;
}

.sparkle-1 { top: -20px; left: -15px; animation-delay: 0s; }
.sparkle-2 { top: -15px; right: -20px; animation-delay: 0.5s; }
.sparkle-3 { bottom: -15px; left: -10px; animation-delay: 1s; }

.luxury-logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-luxury-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    opacity: 0.5;
    animation: luxuryFramePulse 3s ease-in-out infinite;
}

.luxury-title {
    text-shadow: 0 0 20px rgba(255,215,0,0.3);
}

.luxury-title-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,215,0,0.1), transparent);
    animation: titleLuxuryGlow 4s ease-in-out infinite;
    z-index: -1;
}

.luxury-title-underline {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), #ffd700, var(--accent-color));
    border-radius: 3px;
    animation: underlineShimmer 3s ease-in-out infinite;
}

.luxury-location-banner {
    display: flex;
    justify-content: center;
}

.location-luxury-frame {
    background: rgba(255,215,0,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 30px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.luxury-location-icon {
    font-size: 1.5rem;
    color: #ffd700;
}

.luxury-buttons-container {
    position: relative;
}

.luxury-buttons-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: buttonsGlow 3s ease-in-out infinite;
    z-index: -1;
}

.luxury-btn-primary, .luxury-btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.luxury-btn-primary:hover, .luxury-btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.premium-badge {
    text-align: center;
    transition: transform 0.3s ease;
}

.premium-badge:hover {
    transform: translateY(-5px);
}

.badge-luxury-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-color), #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    animation: badgeGlow 2s ease-in-out infinite;
}

.badge-title {
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 0.25rem;
}

.badge-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.luxury-hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    gap: 2rem;
}

.decoration-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    max-width: 200px;
}

.decoration-center {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-color), #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: centerIconRotate 4s linear infinite;
}

.luxury-center-icon {
    font-size: 1.5rem;
    color: white;
}

/* Modern Animations */
@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

@keyframes floatDot {
    0%, 100% { transform: translateY(0px); opacity: 0.6; }
    50% { transform: translateY(-15px); opacity: 1; }
}

@keyframes patternFloat {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.2; }
}

@keyframes floatingShapes {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.6; }
    50% { transform: translateY(-25px); opacity: 1; }
}

@keyframes cardGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

@keyframes titleShimmer {
    0% { transform: translate(-50%, -50%) translateX(-100%); }
    50% { transform: translate(-50%, -50%) translateX(0%); }
    100% { transform: translate(-50%, -50%) translateX(100%); }
}

@keyframes luxuryParticle {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.8; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
}

@keyframes crownGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255,215,0,0.5); }
    50% { text-shadow: 0 0 20px rgba(255,215,0,0.8), 0 0 30px rgba(255,215,0,0.6); }
}

@keyframes sparkleAnimation {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes luxuryFramePulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes titleLuxuryGlow {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0%); }
    100% { transform: translateX(100%); }
}

@keyframes underlineShimmer {
    0%, 100% { background: linear-gradient(90deg, var(--accent-color), #ffd700, var(--accent-color)); }
    50% { background: linear-gradient(90deg, #ffd700, var(--accent-color), #ffd700); }
}

@keyframes buttonsGlow {
    0%, 100% { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255,215,0,0.3); }
    50% { box-shadow: 0 0 20px rgba(255,215,0,0.6), 0 0 30px rgba(255,215,0,0.4); }
}

@keyframes centerIconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modern CSS Enhancements */
@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Performance optimizations */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* Accessibility improvements */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .navbar {
        background: rgba(0, 0, 0, 0.95) !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
