/* ARTISAN - Furniture Company Styles */
/* Luxury Furniture Theme with Elegant Design and Sophisticated Animations */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Main Content */
.main-content {
    opacity: 1;
    visibility: visible;
}

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

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

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

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.logo-text {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.logo-accent {
    font-size: 10px;
    font-weight: 300;
    color: #b8860b;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: #d4af37;
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Section - Elegant Luxury Style */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

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

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    border-radius: 0;
    animation: elegantFloat 12s ease-in-out infinite;
    opacity: 0.1;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    transform: rotate(45deg);
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 20%;
    animation-delay: 3s;
    background: linear-gradient(45deg, #b8860b, #d4af37);
    transform: rotate(30deg);
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    left: 15%;
    animation-delay: 6s;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    transform: rotate(60deg);
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 10%;
    animation-delay: 9s;
    background: linear-gradient(45deg, #b8860b, #d4af37);
    transform: rotate(15deg);
}

@keyframes elegantFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.1;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg) scale(1.05); 
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-40px) rotate(180deg) scale(0.95); 
        opacity: 0.3;
    }
    75% { 
        transform: translateY(-20px) rotate(270deg) scale(1.05); 
        opacity: 0.2;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: elegantSlideInUp 1.5s ease forwards;
    color: #ffffff;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.6s; }
.title-line:nth-child(3) { animation-delay: 0.9s; }

@keyframes elegantSlideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #cccccc;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
    letter-spacing: 0.02em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.btn {
    padding: 20px 40px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

.btn-icon {
    font-size: 1rem;
    transition: all 0.4s ease;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    background: linear-gradient(45deg, #b8860b, #d4af37);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: elegantBounce 3s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    transform: rotate(45deg);
}

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

/* Features Section - Elegant Grid */
.features {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 80px;
    position: relative;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.feature-card {
    background: rgba(212, 175, 55, 0.02);
    padding: 60px 40px;
    border-radius: 0;
    text-align: center;
    transition: all 0.5s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.8s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.1);
}

.feature-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-size: 3rem;
    transition: all 0.5s ease;
    color: #1a1a1a;
    position: relative;
    transform: rotate(45deg);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    border-radius: 0;
    z-index: -1;
    opacity: 0.2;
    animation: elegantPulse 3s ease-in-out infinite;
}

@keyframes elegantPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.05); opacity: 0.4; }
}

.feature-card:hover .feature-icon {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Showcase Section - Elegant Style */
.showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.showcase-section {
    margin-bottom: 150px;
}

.showcase-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #ffffff;
}

/* Parallax Cards - Elegant Style */
.parallax-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    perspective: 1000px;
    min-height: 350px;
    margin-bottom: 120px;
}

.parallax-card {
    background: rgba(212, 175, 55, 0.02);
    padding: 60px 50px;
    border-radius: 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.parallax-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(184, 134, 11, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.parallax-card:hover::before {
    opacity: 1;
}

.parallax-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateZ(15px) rotateX(3deg);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.1);
}

.card-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.card-content p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Interactive Grid - Elegant Style */
.interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.grid-item {
    aspect-ratio: 1;
    background: rgba(212, 175, 55, 0.02);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.8s ease;
}

.grid-item:hover::before {
    left: 100%;
}

.grid-item:hover {
    transform: scale(1.05) rotate(2deg);
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
}

.grid-item:hover .item-content .grid-icon {
    transform: scale(1.2) rotate(360deg);
    color: #d4af37;
}

.item-content {
    text-align: center;
    z-index: 2;
}

.item-content .grid-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    color: #ffffff;
    transition: all 0.5s ease;
    line-height: 1;
}

.item-content span {
    font-weight: 400;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #d4af37, #b8860b, #d4af37);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    border-radius: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: 2;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: elegantPulse 3s ease-in-out infinite;
}

.timeline-content {
    background: rgba(212, 175, 55, 0.02);
    padding: 50px 40px;
    border-radius: 0;
    width: 45%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.timeline-content:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.1);
}

.timeline-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.timeline-content p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 300;
}

/* 3D Cards - Elegant Style */
.cards-3d-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    perspective: 1000px;
}

.card-3d {
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
}

.card-3d-content {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1.2s ease;
}

.card-3d:hover .card-3d-content {
    transform: rotateY(180deg);
}

.card-3d-front,
.card-3d-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: rgba(212, 175, 55, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 0;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.card-3d-back {
    transform: rotateY(180deg);
    background: rgba(184, 134, 11, 0.05);
    border-color: rgba(184, 134, 11, 0.2);
}

.card-3d h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 300;
    color: #ffffff;
}

.card-3d p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Contact Section - Elegant Style */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 60px;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.02);
    border-radius: 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(8px);
}

.contact-item .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #1a1a1a;
    transition: all 0.4s ease;
    line-height: 1;
    transform: rotate(45deg);
}

.contact-item:hover .contact-icon {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

/* Contact Form - Elegant Style */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 25px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #d4af37;
}

.form-group label {
    position: absolute;
    top: 25px;
    left: 0;
    color: #cccccc;
    transition: all 0.4s ease;
    pointer-events: none;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    font-size: 0.9rem;
    color: #d4af37;
    font-weight: 400;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    transition: width 0.4s ease;
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

/* Footer - Elegant Style */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0 40px;
    border-top: 1px solid #d4af37;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h4 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 300;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}

.footer-section p,
.footer-section li {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 300;
}

.footer-section a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-links a {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.4s ease;
    transform: rotate(45deg);
}

.social-links a i {
    font-size: 1.5rem;
    color: #1a1a1a;
    transition: all 0.4s ease;
    transform: rotate(-45deg);
}

.social-links a:hover {
    transform: rotate(0deg) translateY(-5px) scale(1.1);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.social-links a:hover i {
    transform: rotate(-45deg) scale(1.2);
    color: #1a1a1a;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #cccccc;
    font-size: 1rem;
    font-weight: 300;
}

/* 3D Background Canvas */
.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.1;
}

/* Floating Elements - Elegant Style */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.05;
    animation: elegantFloatAround 30s linear infinite;
    color: #d4af37;
}

.floating-icon i {
    font-size: 2rem;
    color: #d4af37;
    opacity: 0.05;
    transition: all 0.4s ease;
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 6s; }
.floating-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 12s; }
.floating-icon:nth-child(4) { top: 60%; right: 10%; animation-delay: 18s; }
.floating-icon:nth-child(5) { bottom: 20%; right: 30%; animation-delay: 24s; }
.floating-icon:nth-child(6) { top: 40%; left: 5%; animation-delay: 30s; }

@keyframes elegantFloatAround {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(80px, -40px) rotate(90deg) scale(1.1); }
    50% { transform: translate(40px, -80px) rotate(180deg) scale(0.9); }
    75% { transform: translate(-40px, -40px) rotate(270deg) scale(1.1); }
    100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        backdrop-filter: blur(15px);
        border-top: 1px solid #d4af37;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

    /* Mobile Hero Section */
    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .btn {
        padding: 18px 35px;
        font-size: 0.9rem;
        min-width: 240px;
    }

    /* Mobile Features Section */
    .features {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    .feature-card {
        padding: 40px 30px;
        border-radius: 0;
    }

    .feature-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.8rem;
    }

    /* Mobile Showcase Section */
    .showcase {
        padding: 80px 0;
    }

    .showcase-section {
        margin-bottom: 100px;
    }

    .showcase-section h3 {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    /* Mobile Parallax Cards */
    .parallax-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .parallax-card {
        padding: 40px 30px;
        border-radius: 0;
    }

    .card-content h4 {
        font-size: 1.8rem;
    }

    /* Mobile Interactive Grid */
    .interactive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }

    .grid-item {
        border-radius: 0;
        min-height: 160px;
    }

    .item-content .grid-icon {
        font-size: 3rem;
    }

    .item-content span {
        font-size: 1rem;
    }

    /* Mobile Timeline */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
        padding: 30px;
        border-radius: 0;
    }

    .timeline-content h4 {
        font-size: 1.5rem;
    }

    /* Mobile 3D Cards */
    .cards-3d-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .card-3d {
        height: 350px;
    }

    .card-3d-front,
    .card-3d-back {
        padding: 40px 30px;
        border-radius: 0;
    }

    .card-3d h4 {
        font-size: 1.8rem;
    }

    /* Mobile Contact Section */
    .contact {
        padding: 80px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 15px;
    }

    .contact-info h3 {
        font-size: 2.5rem;
    }

    /* Mobile Footer */
    .footer {
        padding: 80px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 15px;
    }

    /* Mobile Container */
    .container {
        padding: 0 15px;
    }
}

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid #d4af37;
    border-radius: 0;
    animation: spin 1.5s linear infinite;
}

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