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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: linear-gradient(135deg, #f8f8f8 0%, #f2f2f2 25%, #e8e8e8 50%, #f2f2f2 75%, #f8f8f8 100%);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 165, 116, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 40% 60%, rgba(184, 148, 106, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 60% 30%, rgba(212, 165, 116, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: luxuryGlow 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="elegant-dots" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(212,165,116,0.1)"/><circle cx="25" cy="25" r="0.3" fill="rgba(212,165,116,0.05)"/><circle cx="75" cy="75" r="0.3" fill="rgba(212,165,116,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23elegant-dots)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

/* Floating background elements */
.floating-element {
    position: fixed;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

.floating-element-1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: luxuryFloat 15s ease-in-out infinite, luxuryPulse 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.2);
}

.floating-element-2 {
    top: 60%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(184, 148, 106, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: luxuryFloat 18s ease-in-out infinite reverse, luxuryPulse 6s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(184, 148, 106, 0.15);
}

.floating-element-3 {
    bottom: 30%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: luxuryFloat 22s ease-in-out infinite, luxuryPulse 8s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(212, 165, 116, 0.18);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 5rem;
    color: #2c2c2c;
    position: relative;
    font-weight: 200;
    letter-spacing: -0.02em;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #d4a574, #b8946a);
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 248, 248, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(-100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.sticky-nav.visible {
    transform: translateY(0);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c2c2c;
}

.logo-image {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.logo-text-fallback {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text-fallback .logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text-fallback .logo-icon svg {
    width: 100%;
    height: 100%;
    stroke: #d4a574;
    transition: stroke 0.3s ease;
}

.logo-text-fallback .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4a574;
    transition: width 0.3s ease;
}

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

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

.portal-nav-link {
    background: linear-gradient(135deg, #d4a574 0%, #b8946a 50%, #d4a574 100%);
    background-size: 200% 200%;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    animation: luxuryGradient 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.portal-nav-link:hover {
    background: linear-gradient(135deg, #b8946a 0%, #d4a574 50%, #b8946a 100%);
    animation-play-state: paused;
}

.portal-nav-link::after {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 15%, #8b7355 35%, #6b5b47 55%, #4a3f35 75%, #2c2c2c 100%);
    z-index: -2;
    animation: luxuryShimmer 15s ease-in-out infinite;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25 25L30 20L35 25L30 30Z" fill="rgba(255,255,255,0.03)" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury)"/></svg>');
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #d4a574;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-size: 5rem;
    font-weight: 200;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 165, 116, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f2f2f2 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: luxuryTextShimmer 4s ease-in-out infinite;
}

.hero-subtitle {
    display: block;
    font-size: 3.5rem;
    font-weight: 100;
    color: #d4a574;
    margin-top: 0.5rem;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #d4a574 0%, #b8946a 50%, #d4a574 100%);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: luxuryGradient 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574 0%, #b8946a 50%, #d4a574 100%);
    background-size: 200% 200%;
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    animation: luxuryGradient 3s ease-in-out infinite;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #b8946a 0%, #d4a574 50%, #b8946a 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation-play-state: paused;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(212, 165, 116, 0.02) 0%, transparent 50%),
        linear-gradient(45deg, transparent 50%, rgba(184, 148, 106, 0.01) 100%);
    pointer-events: none;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 5rem;
    color: #555;
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.01em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: #d4a574;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f5f5f5 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    perspective: 1000px;
}

.service-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(212, 165, 116, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(212, 165, 116, 0.1);
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
}

.service-item:nth-child(1) {
    animation: slideInUp 0.6s ease-out 0.1s both;
}

.service-item:nth-child(2) {
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.service-item:nth-child(3) {
    animation: slideInUp 0.6s ease-out 0.3s both;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, #b8946a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 3;
}

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

.service-item:hover {
    transform: translateY(-12px) scale(1.03) rotateX(2deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(212, 165, 116, 0.25), 0 0 30px rgba(212, 165, 116, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: #d4a574;
    transition: all 0.3s ease;
}

.service-content {
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-item:hover .service-content {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.02) 0%, rgba(184, 148, 106, 0.02) 100%);
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #2c2c2c;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.service-item:hover .service-content h3 {
    color: #d4a574;
}

.service-item:hover .service-icon {
    background: rgba(212, 165, 116, 0.2);
    transform: scale(1.1);
}

.service-item:hover .service-icon svg {
    stroke: #b8946a;
    transform: scale(1.1);
}

.service-content p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.service-item:hover .service-content p {
    color: #555;
}

/* Recent Projects Placeholder */
.recent-projects-section {
    margin-top: 4rem;
    text-align: center;
}

.projects-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.projects-placeholder {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.projects-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, #b8946a, #d4a574);
    background-size: 200% 100%;
    animation: luxuryGradient 3s ease-in-out infinite;
}

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

.placeholder-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
    animation: luxuryPulse 2s ease-in-out infinite;
}

.placeholder-icon svg {
    width: 40px;
    height: 40px;
    stroke: #d4a574;
}

.placeholder-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 400;
}

.placeholder-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.placeholder-cta {
    margin-top: 2rem;
}

.placeholder-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574 0%, #b8946a 50%, #d4a574 100%);
    background-size: 200% 200%;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    animation: luxuryGradient 3s ease-in-out infinite;
}

.placeholder-button:hover {
    background: linear-gradient(135deg, #b8946a 0%, #d4a574 50%, #b8946a 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
    animation-play-state: paused;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 10%, rgba(212, 165, 116, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(184, 148, 106, 0.03) 0%, transparent 40%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="luxury-grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M0 0L50 0L50 50L0 50Z" fill="none" stroke="rgba(212,165,116,0.05)" stroke-width="0.5"/></pattern></defs><rect width="200" height="200" fill="url(%23luxury-grid)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    perspective: 1000px;
}

.project-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(212, 165, 116, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(212, 165, 116, 0.1);
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
}

.project-item:nth-child(1) {
    animation: slideInUp 0.6s ease-out 0.1s both;
}

.project-item:nth-child(2) {
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.project-item:nth-child(3) {
    animation: slideInUp 0.6s ease-out 0.3s both;
}

.project-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, #b8946a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 3;
}

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

.project-item:hover {
    transform: translateY(-12px) scale(1.03) rotateX(2deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(212, 165, 116, 0.25), 0 0 30px rgba(212, 165, 116, 0.1);
}

.project-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.project-icon svg {
    width: 40px;
    height: 40px;
    stroke: #d4a574;
    transition: all 0.3s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    z-index: 2;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}

.project-item:hover .project-overlay {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.05);
}

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

.project-placeholder {
    color: #d4a574;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    z-index: 2;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}

.project-item:hover .project-placeholder {
    transform: scale(1.05);
    color: #b8946a;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 165, 116, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 148, 106, 0.03) 0%, transparent 50%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-image::before {
    opacity: 0.8;
}

.project-content {
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.project-item:hover .project-content {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.02) 0%, rgba(184, 148, 106, 0.02) 100%);
}

.project-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #2c2c2c;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.project-item:hover .project-content h3 {
    color: #d4a574;
}

.project-item:hover .project-icon {
    background: rgba(212, 165, 116, 0.2);
    transform: scale(1.1);
}

.project-item:hover .project-icon svg {
    stroke: #b8946a;
    transform: scale(1.1);
}

.project-content p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.project-item:hover .project-content p {
    color: #555;
}

/* Image Sections */
.image-section {
    height: 60vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s ease;
}

.luxury-image:not(img) {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.6s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.image-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 2rem;
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.image-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

.image-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

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

.image-section:hover .luxury-image:not(img) {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.image-section:hover .image-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.image-section:hover .image-content {
    transform: translateY(0);
    opacity: 1;
}

/* Portal Section */
.portal {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

.portal-content {
    max-width: 600px;
    margin: 0 auto;
}

.portal .section-title {
    color: white;
}

.portal .section-title::after {
    background: linear-gradient(90deg, #d4a574, #b8946a);
}

.portal-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.portal-button {
    display: inline-block;
    background: #d4a574;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.portal-button:hover {
    background: #b8946a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(212, 165, 116, 0.015) 0%, transparent 30%),
        linear-gradient(-45deg, transparent 70%, rgba(184, 148, 106, 0.01) 100%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    color: #555;
    font-size: 0.95rem;
}

.contact-item strong {
    color: #2c2c2c;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f5f5f5 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, #b8946a, #d4a574);
    background-size: 200% 100%;
    animation: luxuryGradient 3s ease-in-out infinite;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15), 0 4px 12px rgba(212, 165, 116, 0.1);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 1);
}

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

.submit-button {
    width: 100%;
    background: #d4a574;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-button:hover {
    background: #b8946a;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-logo-fallback {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-fallback .logo-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-fallback .logo-icon svg {
    width: 100%;
    height: 100%;
    stroke: #d4a574;
    transition: stroke 0.3s ease;
}

.footer-logo-fallback .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: white;
}

.footer-text {
    opacity: 0.8;
    font-size: 0.9rem;
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

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

@keyframes float1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-5px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-15px) translateX(-10px);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-10px) translateX(15px);
    }
    75% {
        transform: translateY(20px) translateX(-8px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Luxury Animations */
@keyframes luxuryGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes luxuryShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes luxuryGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes luxuryFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

@keyframes luxuryPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(212, 165, 116, 0);
    }
}

@keyframes luxuryTextShimmer {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .image-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .image-content h3 {
        font-size: 2rem;
    }
    
    .image-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .image-section {
        height: 40vh;
        min-height: 300px;
    }
    
    .image-content h3 {
        font-size: 1.5rem;
    }
    
    .image-content p {
        font-size: 0.9rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Luxury scroll animations */
.luxury-fade-in {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(2px);
}

.luxury-fade-in.luxury-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Form validation styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.success-message {
    color: #27ae60;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}
