/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-logo img {
    height: 70px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 2px;
    font-weight: 400;
}

.nav-logo span {
    font-size: 0.7rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 300;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #666;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 20px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8f8f8;
    color: #1a1a1a;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    animation: heroFadeIn 2s ease-out forwards;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 3s ease-in-out, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    transform: scale(1.05);
    animation: backgroundZoom 20s ease-in-out infinite;
}

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

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

/* Enhanced carousel transition effects */
.carousel-slide.fade-in {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
    transition: opacity 3s ease-in-out, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide.fade-out {
    opacity: 0;
    z-index: 1;
    transform: scale(1.05);
    transition: opacity 3s ease-in-out, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    opacity: 0;
    animation: overlayFadeIn 2s ease-out 0.5s forwards;
}

@keyframes overlayFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Floating Particles Animation */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    animation: particlesFadeIn 1s ease-out 1s forwards;
}

@keyframes particlesFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

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

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.particle:nth-child(4) {
    top: 70%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.particle:nth-child(5) {
    top: 40%;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-15px) translateX(8px);
        opacity: 0.9;
    }
}


.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(50px);
    animation: heroContentSlideUp 1.5s ease-out 0.8s forwards;
}

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

/* Luxury Hero Text Layout */
.luxury-badge {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: luxuryBadgeReveal 1s ease-out 0.8s forwards;
}

.luxury-badge::before,
.luxury-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
}

.luxury-badge::before {
    left: -50px;
}

.luxury-badge::after {
    right: -50px;
}

.hero-name {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 200;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(40px);
    animation: heroNameReveal 1.5s ease-out 1.2s forwards;
    position: relative;
    padding-bottom: 0.2em;
}

.hero-name::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translateX(-50%);
    animation: nameUnderline 1.5s ease-out 2.2s forwards;
}

.hero-company {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(25px);
    animation: heroCompanyReveal 1.2s ease-out 1.8s forwards;
    position: relative;
}


.luxury-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 2rem auto;
    opacity: 0;
    transform: scaleX(0);
    animation: dividerReveal 1.5s ease-out 3s forwards;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transform: translateY(20px);
    animation: heroSubtitleReveal 1s ease-out 3.2s forwards;
}

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

@keyframes heroNameReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes nameUnderline {
    0% {
        width: 0;
    }
    100% {
        width: 200px;
    }
}

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


@keyframes dividerReveal {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: scrollIndicatorFadeIn 1s ease-out 2.5s forwards;
}

@keyframes scrollIndicatorFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: white;
    animation: scrollPulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, white, transparent);
    animation: scrollLineFlow 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { 
        opacity: 1;
        transform: scaleY(1);
    }
    50% { 
        opacity: 0.3;
        transform: scaleY(0.8);
    }
}

@keyframes scrollLineFlow {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Profile Section */
.profile-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Profile Section Scroll Animation States */
.profile-section {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Profile Image Creative Animations */
.profile-image {
    position: relative;
    flex: 0 0 400px;
    text-align: center;
    opacity: 0;
    transform: translateX(-80px) rotate(-10deg) scale(0.8);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-section.animate-in .profile-image {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
}

/* Profile Image Container Enhanced Animation */
.profile-image-container {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
}

.profile-image-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
    z-index: 1;
}

.profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.profile-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.profile-section.animate-in .profile-image-container::before {
    animation: shimmer 2s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(-45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(-45deg);
        opacity: 0;
    }
}

.profile-image-container:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.profile-image-container:hover img {
    transform: scale(1.1);
}


@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.profile-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-image {
    position: relative;
    flex: 0 0 400px;
    text-align: center;
}

.profile-placeholder {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.profile-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.profile-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #adb5bd;
}


.profile-info {
    flex: 1;
    opacity: 0;
    transform: translateX(80px) translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-section.animate-in .profile-info {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Profile Text Staggered Animation */
.profile-info h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-section.animate-in .profile-info h2 {
    opacity: 1;
    transform: translateY(0);
    animation: slideInFromBottom 0.5s ease-out 0.1s both;
}

.profile-info h3 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-section.animate-in .profile-info h3 {
    opacity: 1;
    transform: translateY(0);
    animation: slideInFromBottom 0.5s ease-out 0.2s both;
}

.profile-description {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-section.animate-in .profile-description {
    opacity: 1;
    transform: translateY(0);
    animation: slideInFromBottom 0.5s ease-out 0.3s both;
}

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

.profile-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.profile-info h3 {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.profile-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 15px;
    margin-bottom: 3rem;
    max-width: 1000px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-section.animate-in .achievements {
    opacity: 1;
    transform: translateY(0);
    animation: slideInFromBottom 0.6s ease-out 0.4s both;
}

/* Achievement Cards Staggered Animation */
.achievement-card {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-section.animate-in .achievement-card:nth-child(1) {
    animation: cardSlideIn 0.5s ease-out 0.5s both;
}

.profile-section.animate-in .achievement-card:nth-child(2) {
    animation: cardSlideIn 0.5s ease-out 0.6s both;
}

.profile-section.animate-in .achievement-card:nth-child(3) {
    animation: cardSlideIn 0.5s ease-out 0.7s both;
}

.profile-section.animate-in .achievement-card:nth-child(4) {
    animation: cardSlideIn 0.5s ease-out 0.8s both;
}

.profile-section.animate-in .achievement-card:nth-child(5) {
    animation: cardSlideIn 0.5s ease-out 0.9s both;
}

@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    50% {
        transform: translateY(-3px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.achievement-card:nth-child(4),
.achievement-card:nth-child(5) {
    grid-column: span 1;
}

.achievement-card:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: center;
    margin-right: 7.5px;
}

.achievement-card:nth-child(5) {
    grid-column: 2 / 4;
    grid-row: 2;
    justify-self: center;
    margin-left: 7.5px;
}

.achievement-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    cursor: pointer;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8860b, #d4af37);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.achievement-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #d4af37;
}

.achievement-card.featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.achievement-card.featured:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 8px 24px rgba(0, 0, 0, 0.12);
}

.achievement-card.featured::before {
    background: linear-gradient(90deg, #d4af37, #ffd700, #d4af37);
    height: 6px;
}

.achievement-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.achievement-number.animate {
    opacity: 1;
    transform: translateY(0);
}

.achievement-card.featured .achievement-number {
    color: #d4af37;
    font-size: 2.2rem;
}

.achievement-title {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.achievement-card.featured .achievement-title {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.achievement-icon {
    display: none;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.profile-credentials {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #555;
    font-weight: 300;
}

.credential:last-child {
    border-bottom: none;
}

.credential i {
    color: #1a1a1a;
    width: 20px;
    font-size: 1rem;
}

/* Badges and Affiliations Section */
.badges-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-section.animate-in .badges-section {
    opacity: 1;
    transform: translateY(0);
    animation: slideInFromBottom 0.6s ease-out 1.0s both;
}

.badges-section h4 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-section.animate-in .badges-section h4 {
    opacity: 1;
    transform: translateY(0);
    animation: slideInFromBottom 0.5s ease-out 1.1s both;
}

.badges-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-section.animate-in .badges-grid {
    opacity: 1;
    transform: translateY(0);
    animation: slideInFromBottom 0.6s ease-out 1.2s both;
}

/* Badge Items Staggered Animation */
.badge-item {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-section.animate-in .badge-item:nth-child(1) {
    animation: badgeSlideIn 0.5s ease-out 1.3s both;
}

.profile-section.animate-in .badge-item:nth-child(2) {
    animation: badgeSlideIn 0.5s ease-out 1.4s both;
}

.profile-section.animate-in .badge-item:nth-child(3) {
    animation: badgeSlideIn 0.5s ease-out 1.5s both;
}

.profile-section.animate-in .badge-item:nth-child(4) {
    animation: badgeSlideIn 0.5s ease-out 1.6s both;
}

@keyframes badgeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    50% {
        transform: translateY(-2px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.badges-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.badge-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.badge-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
    transition: transform 0.3s ease;
}

.badge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.badge-item:hover .badge-image {
    transform: scale(1.1);
}

.badge-item:hover .badge-image img {
    transform: scale(1.05);
}

.badge-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.badge-info p {
    font-size: 0.75rem;
    color: #666;
    font-weight: 300;
    line-height: 1.3;
    margin: 0;
}

/* Badge item specific styling - borders removed */
.badge-item:nth-child(2) .badge-image {
    border-radius: 0;
}

.badge-item:nth-child(3) .badge-image {
    border-radius: 0;
}

/* Presentation Section */
.presentation-section {
    padding: 120px 0;
    background: #fafafa;
}

.presentation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.presentation-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.presentation-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.see-more-btn {
    background: none;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    padding: 12px 30px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2rem;
}

.see-more-btn:hover {
    background: #1a1a1a;
    color: white;
}

.presentation-image {
    position: relative;
}

.presentation-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
    border-radius: 20px;
}

/* Luxury Coastal Property Carousel */
.luxury-carousel-section {
    padding: 120px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-header {
    text-align: center;
    margin-bottom: 4rem;
}

.carousel-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.carousel-header p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.luxury-carousel {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.luxury-carousel .luxury-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform: scale(1.02);
}
.luxury-carousel .luxury-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    background-color: #f0f0f0;
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.05);
    transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.luxury-slide.active .slide-image {
    transform: scale(1);
}

.slide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
}

.slide-label {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform: translateY(30px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.luxury-slide.active .slide-label {
    transform: translateY(0);
    opacity: 1;
}

.slide-description {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s both;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s;
}

.luxury-slide.active .slide-description {
    transform: translateY(0);
    opacity: 1;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-nav {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 4;
    display: flex;
    gap: 15px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1);
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.nav-arrow i {
    font-size: 1.2rem;
    color: #1a1a1a;
}

.carousel-dots {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 4;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    backdrop-filter: blur(10px);
    transform: scale(1);
}

.dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Concierge Section */
.concierge-section {
    padding: 120px 0;
    background: #fafafa;
}

.concierge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.concierge-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.concierge-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.concierge-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

/* Property Search Section */
.property-search-section {
    padding: 120px 0;
    background: #fafafa;
}

.search-header {
    text-align: center;
    margin-bottom: 60px;
}

.search-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.search-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.property-search-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.form-group input::placeholder {
    color: #999;
    font-weight: 300;
}

.search-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.search-btn,
.clear-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.search-btn {
    background: #1a1a1a;
    color: white;
}

.search-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.3);
}

.clear-btn {
    background: #f5f5f5;
    color: #666;
    border: 2px solid #e0e0e0;
}

.clear-btn:hover {
    background: #e0e0e0;
    color: #333;
}

.search-results {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-results h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.results-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.property-card {
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
    width: 100%;
    height: 200px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.property-info {
    padding: 20px;
}

.property-info h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.property-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.property-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 10px;
}

/* Responsive Design for Property Search */
@media (max-width: 768px) {
    .search-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .search-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .search-btn,
    .clear-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .property-search-form {
        padding: 30px 20px;
    }
    
    .search-header h2 {
        font-size: 2rem;
    }
}

/* Surroundings Section */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23e9ecef" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    position: relative;
}

.service-card.featured::before {
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transform: scaleX(1);
}

.service-card.featured .service-content h3 {
    color: white;
}

.service-card.featured .service-content p {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.wide {
    grid-column: span 2;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
}

.service-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    opacity: 0.1;
}

.decoration-circle {
    width: 100%;
    height: 100%;
    border: 2px solid #d4af37;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.services-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-btn {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.more-info-btn {
    display: block;
    margin: 0 auto;
    background: none;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    padding: 15px 40px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.more-info-btn:hover {
    background: #1a1a1a;
    color: white;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #fafafa;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

.contact-text a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-text a:hover {
    color: #b8941f;
}

.contact-text small {
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.map-link {
    color: #d4af37 !important;
    font-size: 0.9rem !important;
    text-decoration: none;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
}

.map-link:hover {
    color: #b8941f !important;
}

.quick-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.action-btn.whatsapp {
    background: #25d366;
    color: white;
}

.action-btn.phone {
    background: #1a1a1a;
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.action-btn i {
    font-size: 1.2rem;
}

.contact-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.social-section {
    grid-column: span 2;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.social-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-link.linkedin {
    background: #0077b5;
    color: white;
}

.social-link.yelp {
    background: #ff1a1a;
    color: white;
}

.social-link i {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: white;
    padding: 80px 0 40px;
    overflow: hidden;
}

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

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    opacity: 0.3;
    animation: footerPatternFloat 20s ease-in-out infinite;
}

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

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

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: footerSlideIn 0.8s ease-out 0.2s forwards;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    position: relative;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 1px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #d4af37;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 0.5rem;
}

.footer-description {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-social .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.footer-social .social-link:hover::before {
    opacity: 1;
}

.footer-social .social-link i {
    font-size: 1.1rem;
    color: #cccccc;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.footer-social .social-link:hover i {
    color: white;
    transform: scale(1.1);
}

.footer-social .social-link.facebook {
    background: rgba(24, 119, 242, 0.1);
    border: 1px solid rgba(24, 119, 242, 0.3);
}

.footer-social .social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.footer-social .social-link.linkedin {
    background: rgba(0, 119, 181, 0.1);
    border: 1px solid rgba(0, 119, 181, 0.3);
}

.footer-social .social-link.yelp {
    background: rgba(255, 26, 26, 0.1);
    border: 1px solid rgba(255, 26, 26, 0.3);
}

.footer-contact-section {
    padding: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-method {
    text-align: center;
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: #cccccc;
    text-decoration: none;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.contact-link i {
    font-size: 1.5rem;
    color: #d4af37;
    transition: all 0.3s ease;
}

.contact-link:hover i {
    transform: scale(1.1);
}

.contact-link span {
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 2rem 0;
    position: relative;
}

.footer-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.footer-bottom {
    opacity: 0;
    transform: translateY(20px);
    animation: footerBottomSlideIn 0.6s ease-out 0.4s forwards;
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: #999999;
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #d4af37;
}

.footer-legal .divider {
    color: #666666;
    font-size: 0.8rem;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 40px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

.accept-btn {
    background: white;
    color: #1a1a1a;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
    font-size: 0.8rem;
}

.accept-btn:hover {
    background: #f0f0f0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .presentation-content,
    .concierge-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .profile-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .profile-image {
        flex: none;
    }
    
    .profile-image-container {
        width: 280px;
        height: 280px;
    }
    
    .profile-info h2 {
        font-size: 3rem;
    }
    
    .achievements {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .achievement-card:nth-child(4),
    .achievement-card:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
        justify-self: stretch;
        margin: 0;
    }
    
    .achievement-card {
        padding: 18px 15px;
    }
    
    .achievement-card.featured {
        transform: scale(1.01);
    }
    
    .achievement-card.featured:hover {
        transform: translateY(-5px) scale(1.03);
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 500px;
    }
    
    .badge-item {
        padding: 15px 10px;
    }
    
    .badge-image {
        width: 50px;
        height: 50px;
    }
    
    .luxury-carousel {
        height: 500px;
    }
    
    .slide-label {
        font-size: 3rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .carousel-nav {
        top: 20px;
        left: 20px;
    }
    
    .carousel-dots {
        top: 20px;
        right: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card.featured,
    .service-card.wide {
        grid-column: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .luxury-badge {
        font-size: 0.7rem;
        letter-spacing: 6px;
    }
    
    .hero-name {
        font-size: 4.5rem;
        letter-spacing: 3px;
    }
    
    .hero-company {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }
    
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .profile-info h2 {
        font-size: 2.5rem;
    }
    
    .profile-image-container {
        width: 250px;
        height: 250px;
    }
    
    .achievements {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
        max-width: 350px;
    }
    
    .achievement-card:nth-child(4),
    .achievement-card:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
        justify-self: stretch;
        margin: 0;
    }
    
    .achievement-card {
        padding: 16px 12px;
    }
    
    .achievement-number {
        font-size: 1.8rem;
    }
    
    .achievement-card.featured .achievement-number {
        font-size: 2rem;
    }
    
    .achievement-title {
        font-size: 0.8rem;
    }
    
    .achievement-card.featured .achievement-title {
        font-size: 0.85rem;
    }
    

    .presentation-text h2,
    .concierge-text h2 {
        font-size: 2rem;
    }

    .property-info h2 {
        font-size: 2.5rem;
    }

    .services-header h2 {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        padding: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .social-section {
        grid-column: span 1;
        margin-top: 3rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-contact-section {
        padding: 1.5rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-brand {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }

    .luxury-badge {
        font-size: 0.6rem;
        letter-spacing: 4px;
    }
    
    .hero-name {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }
    
    .hero-company {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .profile-info h2 {
        font-size: 2rem;
    }
    
    .profile-image-container {
        width: 200px;
        height: 200px;
    }
    
    .luxury-carousel {
        height: 400px;
    }
    
    .slide-label {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-arrow i {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
    }
    
    .badge-item {
        flex-direction: row;
        text-align: left;
        padding: 15px;
    }
    
    .badge-image {
        width: 45px;
        height: 45px;
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .badge-info {
        flex: 1;
    }
    
    .badge-info h5 {
        font-size: 0.85rem;
    }
    
    .badge-info p {
        font-size: 0.7rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-main {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-logo h3 {
        font-size: 1.8rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
    }
    
    .footer-links-grid {
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-legal .divider {
        display: none;
    }
    
    .footer-contact-section {
        padding: 1.5rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-link {
        padding: 1rem 0.5rem;
    }
    
    .contact-link i {
        font-size: 1.3rem;
    }
    
    .contact-link span {
        font-size: 0.85rem;
    }
}

/* Enhanced Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed navbar */
}

/* Smooth scroll for all browsers */
* {
    scroll-behavior: smooth;
}

/* Custom scrollbar for better UX */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* --- Luxury Presentation Section --- */
.luxury-presentation {
  background: #fafafa;
  padding: 0;
  overflow: hidden;
}

.luxury-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.luxury-section {
  display: flex;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.luxury-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.luxury-section.reverse {
  flex-direction: row-reverse;
}

.luxury-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  margin: 20px;
  border-radius: 8px;
}

.luxury-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  transform: scale(1.1);
}

.luxury-section.animate-in .luxury-image img {
  opacity: 1;
  transform: scale(1);
}

.luxury-section.animate-in .luxury-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.luxury-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background: white;
  position: relative;
  z-index: 2;
  margin: 20px;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.luxury-section.animate-in .luxury-content {
  opacity: 1;
  transform: translateX(0);
}

.luxury-section.reverse .luxury-content {
  transform: translateX(30px);
}

.luxury-section.reverse.animate-in .luxury-content {
  transform: translateX(0);
}

.luxury-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out 0.1s, transform 0.3s ease-out 0.1s;
}

.luxury-section.animate-in .luxury-content h2 {
  opacity: 1;
  transform: translateY(0);
}

.luxury-content p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  font-weight: 300;
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out 0.2s, transform 0.3s ease-out 0.2s;
}

.luxury-section.animate-in .luxury-content p {
  opacity: 1;
  transform: translateY(0);
}

/* Luxury Statistics Section */
.luxury-stats {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  z-index: 2;
  margin: 20px;
  border-radius: 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 600px;
  width: 100%;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Luxury accent elements */
.luxury-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #d4af37 0%, #b8860b 100%);
  z-index: 3;
}

.luxury-section.reverse::before {
  left: auto;
  right: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .luxury-content {
    padding: 60px 40px;
  }
  
  .luxury-content h2 {
    font-size: 2.5rem;
  }
  
  .luxury-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .luxury-section,
  .luxury-section.reverse {
    flex-direction: column;
  }
  
  .luxury-image {
    height: 50vh;
    min-height: 300px;
    margin: 10px;
  }
  
  .luxury-content {
    padding: 40px 30px;
    margin: 10px;
  }
  
  .luxury-content h2 {
    font-size: 2rem;
  }
  
  .luxury-content p {
    font-size: 1rem;
  }
  
  .luxury-stats {
    padding: 40px 30px;
    margin: 10px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .luxury-section::before,
  .luxury-section.reverse::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    right: auto;
  }
}

@media (max-width: 480px) {
  .luxury-content {
    padding: 30px 20px;
    margin: 5px;
  }
  
  .luxury-image {
    margin: 5px;
  }
  
  .luxury-content h2 {
    font-size: 1.8rem;
  }
  
  .luxury-content p {
    font-size: 0.95rem;
  }
   
   .contact-header h2 {
     font-size: 2rem;
   }
   
   .contact-form-section {
     padding: 1.5rem;
   }
   
   .contact-item {
     flex-direction: column;
     text-align: center;
     gap: 1rem;
     padding: 1.2rem;
   }
   
   .quick-actions {
     flex-direction: column;
     gap: 0.8rem;
   }
   
  .action-btn {
    padding: 0.8rem 1rem;
  }
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Animated background pattern */
.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mapPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23dee2e6" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23mapPattern)"/></svg>');
    animation: mapPatternMove 20s linear infinite;
    pointer-events: none;
}

@keyframes mapPatternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(20px); }
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.map-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.map-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.map-header h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a1a1a, #666, #1a1a1a);
    transform: translateX(-50%);
    transition: width 1s ease-out;
}

.map-header.animate h2::after {
    width: 100px;
}

.map-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.map-header.animate p {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes mapUnderlineExpand {
    0% {
        width: 0;
    }
    100% {
        width: 100px;
    }
}

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

.map-container {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: scale(0.8) rotateY(15deg);
    transition: all 1s ease-out;
    position: relative;
}

.map-container.animate {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

.map-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #1a1a1a, #666, #1a1a1a, #666, #1a1a1a);
    border-radius: 14px;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.map-container.animate::before {
    animation: mapBorderGlow 3s ease-in-out infinite;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    transition: transform 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

.map-container:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

@keyframes mapContainerReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) rotateY(15deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

@keyframes mapBorderGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.map-info.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.map-address h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.map-address h3::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 26, 26, 0.1), transparent);
    transition: left 1.2s ease-out;
}

.map-address.animate h3::before {
    left: 100%;
}

.map-address p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.7s ease-out;
}

.map-address.animate p {
    opacity: 1;
    transform: translateX(0);
}

@keyframes mapTitleShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a1a1a;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    position: relative;
    overflow: hidden;
}

.map-address.animate .directions-btn {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.directions-btn::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.5s ease;
}

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

.directions-btn:hover {
    background: #333;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(26, 26, 26, 0.3);
}

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

.map-hours h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.7s ease-out;
}

.map-hours.animate h4 {
    opacity: 1;
    transform: translateX(0);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease-out;
}

.map-hours.animate .hours-item:nth-child(1) { 
    opacity: 1; 
    transform: translateX(0); 
    transition-delay: 0.1s;
}
.map-hours.animate .hours-item:nth-child(2) { 
    opacity: 1; 
    transform: translateX(0); 
    transition-delay: 0.2s;
}
.map-hours.animate .hours-item:nth-child(3) { 
    opacity: 1; 
    transform: translateX(0); 
    transition-delay: 0.3s;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 500;
    color: #1a1a1a;
    position: relative;
}

.hours-item .day::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.5s ease-out;
}

.map-hours.animate .hours-item:nth-child(1) .day::after { 
    width: 100%; 
    transition-delay: 0.4s;
}
.map-hours.animate .hours-item:nth-child(2) .day::after { 
    width: 100%; 
    transition-delay: 0.5s;
}
.map-hours.animate .hours-item:nth-child(3) .day::after { 
    width: 100%; 
    transition-delay: 0.6s;
}

.hours-item .time {
    color: #666;
    font-weight: 300;
}

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

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

@keyframes mapHoursUnderline {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Responsive Design for Map Section */
@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-header h2 {
        font-size: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}
