/* assets/css/style.css */
:root {
    --primary-gold: #c9a961;
    --dark-gold: #b8984d;
    --light-gold: #d4bc7a;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --border-color: rgba(201, 169, 97, 0.15);
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-gold);
}

.breadcrumb {
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.breadcrumb span {
    color: var(--primary-gold);
}

/* About Page */
.about-page {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-label {
    margin-bottom: 20px;
    display: inline-block;
}

.about-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    color: var(--primary-gold);
    font-size: 20px;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* Stats Section */
.stats-section {
    background: var(--bg-darker);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.member-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transition: var(--transition-smooth);
}

.team-card:hover .member-social {
    bottom: 0;
}

.member-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.member-social a:hover {
    background: var(--primary-gold);
    color: var(--bg-darker);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.member-info .position {
    color: var(--primary-gold);
    font-size: 13px;
    letter-spacing: 1px;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.value-card i {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Page */
.contact-info-section {
    padding: 100px 0 50px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.contact-info-card i {
    font-size: 40px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-secondary);
    line-height: 1.6;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-info-card a:hover {
    color: var(--primary-gold);
}

.contact-form-section {
    padding: 50px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-form p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255,255,255,0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 15px;
    filter: grayscale(100%) invert(90%);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background: rgba(255,255,255,0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: rgba(201,169,97,0.05);
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.faq-question i {
    color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    background: rgba(255,255,255,0.01);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(201,169,97,0.1) 0%, rgba(201,169,97,0.05) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Projects Page */
.projects-filter-section {
    padding: 50px 0 0;
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-darker);
}

.projects-grid-section {
    padding: 50px 0 100px;
}

.no-projects {
    text-align: center;
    padding: 100px 0;
}

.no-projects i {
    font-size: 80px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.no-projects h3 {
    color: var(--text-secondary);
    font-size: 24px;
}

/* Project Detail Page */
.project-detail-section {
    padding: 100px 0;
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.project-meta {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.project-meta li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.project-meta li:last-child {
    border-bottom: none;
}

.project-meta strong {
    color: var(--text-primary);
    font-weight: 600;
}

.project-meta span {
    color: var(--text-secondary);
}

.project-description {
    margin: 30px 0;
}

.project-description h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.project-description p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.related-projects {
    padding: 100px 0;
    background: var(--bg-darker);
}

/* Blog Page */
.blog-section {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.blog-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--text-muted);
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-gold);
}

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.blog-title a:hover {
    color: var(--primary-gold);
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.read-more {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.read-more:hover {
    gap: 12px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.page-link:hover,
.page-link.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-darker);
}

/* Blog Detail Page */
.blog-detail-section {
    padding: 100px 0;
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.blog-detail-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.blog-detail-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

.blog-detail-meta i {
    margin-right: 8px;
    color: var(--primary-gold);
}

.blog-detail-body {
    color: var(--text-secondary);
    line-height: 1.9;
}

.blog-detail-body h2,
.blog-detail-body h3,
.blog-detail-body h4 {
    color: var(--text-primary);
    margin: 30px 0 20px;
}

.blog-detail-body p {
    margin-bottom: 20px;
}

.blog-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.share-buttons span {
    color: var(--text-primary);
    font-weight: 600;
    margin-right: 10px;
}

.share-buttons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.share-buttons a:hover {
    transform: translateY(-5px);
}

.share-facebook:hover {
    background: #3b5998;
    border-color: #3b5998;
}

.share-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.share-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.share-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

/* Sidebar */
.sidebar-widget {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.sidebar-widget h3 {
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-info i {
    font-size: 60px;
    color: var(--primary-gold);
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 13px;
}

.related-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.related-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.related-post h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.related-post h4 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.related-post h4 a:hover {
    color: var(--primary-gold);
}

.related-post span {
    color: var(--text-muted);
    font-size: 12px;
}

.categories-widget ul {
    list-style: none;
    padding: 0;
}

.categories-widget li {
    margin-bottom: 10px;
}

.categories-widget a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: block;
    padding: 8px 0;
}

.categories-widget a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

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

.contact-widget p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.w-100 {
    width: 100%;
}

/* 404 Page */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 100px 0;
}

.error-image {
    width: 300px;
    margin: 0 auto 40px;
    animation: float 6s ease-in-out infinite;
}

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

.error-code {
    font-family: 'Cormorant Garamond', serif;
    font-size: 150px;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 20px;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
    96% { transform: translate(-2px, 0); }
    98% { transform: translate(2px, 0); }
}

.error-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.error-text {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.8;
}

.error-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    .about-grid,
    .contact-grid,
    .project-detail-grid,
    .blog-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid,
    .values-grid,
    .team-grid,
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .page-header h1 {
        font-size: 48px;
    }
    
    .about-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .stats-grid,
    .values-grid,
    .team-grid,
    .contact-info-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .error-code {
        font-size: 100px;
    }
    
    .error-title {
        font-size: 28px;
    }
    
    .error-text {
        font-size: 16px;
    }
    
    .error-buttons {
        flex-direction: column;
    }
}
:root {
            --primary-gold: #c9a961;
            --dark-gold: #b8984d;
            --light-gold: #d4bc7a;
            --bg-dark: #0a0a0a;
            --bg-darker: #050505;
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --text-muted: #666666;
            --border-color: rgba(201, 169, 97, 0.15);
            --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            --safe-area-top: env(safe-area-inset-top);
            --safe-area-bottom: env(safe-area-inset-bottom);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            scroll-padding-top: 100px;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            cursor: none;
            touch-action: manipulation;
        }

        /* PWA & Mobile App Styles */
        @media (display-mode: standalone) {
            body {
                padding-top: var(--safe-area-top);
                padding-bottom: var(--safe-area-bottom);
            }
        }

        .mobile-app-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--border-color);
            display: none;
            justify-content: space-around;
            padding: 10px 0 calc(10px + var(--safe-area-bottom));
            z-index: 1000;
            box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
        }

        .mobile-app-nav.active {
            display: flex;
        }

        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 10px;
            font-weight: 500;
            transition: var(--transition-smooth);
            padding: 5px 15px;
        }

        .mobile-nav-item i {
            font-size: 22px;
            transition: var(--transition-smooth);
        }

        .mobile-nav-item:hover,
        .mobile-nav-item.active {
            color: var(--primary-gold);
        }

        .mobile-nav-item.active i {
            transform: translateY(-3px);
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary-gold);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.2s ease, opacity 0.2s ease;
            mix-blend-mode: difference;
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            background: rgba(201, 169, 97, 0.1);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.4s ease;
        }

        .cursor.hover {
            transform: scale(2);
            background: rgba(201, 169, 97, 0.2);
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-darker);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-content {
            text-align: center;
        }

        .preloader-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            letter-spacing: 8px;
            color: var(--primary-gold);
            margin-bottom: 30px;
            animation: fadeInUp 1s ease;
        }

        .preloader-bar {
            width: 200px;
            height: 2px;
            background: rgba(201, 169, 97, 0.2);
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .preloader-progress {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0%;
            background: var(--primary-gold);
            animation: loadProgress 2s ease-in-out forwards;
        }

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

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            line-height: 1.1;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-darker);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-gold);
            border-radius: 4px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 40px 0;
            transition: var(--transition-smooth);
            background: transparent;
        }

        header.scrolled {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            padding: 20px 0;
            box-shadow: 0 5px 40px rgba(0,0,0,0.4);
        }

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

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 42px;
            font-weight: 500;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: 6px;
            position: relative;
            transition: var(--transition-smooth);
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60px;
            height: 1px;
            background: var(--primary-gold);
            transition: var(--transition-smooth);
        }

        .logo:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 80px;
        }

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

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            transition: var(--transition-smooth);
            padding: 5px 0;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--primary-gold);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-links a:hover {
            color: var(--primary-gold);
            letter-spacing: 3px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .phone-link {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--text-primary);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            transition: var(--transition-smooth);
        }

        .phone-link i {
            color: var(--primary-gold);
            font-size: 18px;
            transition: var(--transition-smooth);
        }

        .phone-link:hover {
            color: var(--primary-gold);
        }

        .phone-link:hover i {
            transform: rotate(15deg);
        }

        .btn {
            padding: 16px 40px;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            border: none;
            cursor: none;
            transition: var(--transition-smooth);
            text-decoration: none;
            display: inline-block;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--primary-gold);
            color: var(--bg-darker);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

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

        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--text-primary);
        }

        .btn-outline::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--text-primary);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-outline:hover::before {
            left: 0;
        }

        .btn-outline:hover {
            color: var(--bg-darker);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 7px;
            background: none;
            border: none;
            cursor: none;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 35px;
            height: 1px;
            background: var(--text-primary);
            transition: var(--transition-smooth);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 200px 0 100px;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            overflow: hidden;
        }

        .hero-bg-video {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
            mask-image: linear-gradient(to right, transparent, black 40%);
            -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--primary-gold);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 20s infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero-label {
            font-size: 13px;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--primary-gold);
            margin-bottom: 30px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .hero-label::before {
            content: '';
            width: 60px;
            height: 1px;
            background: var(--primary-gold);
        }

        .hero h1 {
            font-size: 96px;
            margin-bottom: 30px;
            font-weight: 400;
            letter-spacing: 8px;
            line-height: 1;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .hero h2 {
            font-size: 36px;
            color: var(--primary-gold);
            margin-bottom: 40px;
            font-weight: 300;
            font-style: italic;
            font-family: 'Cormorant Garamond', serif;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.7s forwards;
        }

        .hero-text {
            font-size: 16px;
            line-height: 2.2;
            color: var(--text-secondary);
            margin-bottom: 60px;
            max-width: 600px;
            font-weight: 300;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.9s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 25px;
            align-items: center;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 1.1s forwards;
        }

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

        .scroll-indicator {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            color: var(--text-muted);
            font-size: 11px;
            letter-spacing: 3px;
            animation: scrollBounce 2s infinite;
        }

        .scroll-indicator i {
            font-size: 24px;
            color: var(--primary-gold);
        }

        @keyframes scrollBounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-15px);
            }
            60% {
                transform: translateX(-50%) translateY(-8px);
            }
        }

        /* Stats Section */
        .stats {
            background: var(--bg-darker);
            padding: 120px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            padding: 50px 40px;
            border-right: 1px solid var(--border-color);
            position: relative;
            transition: var(--transition-smooth);
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, transparent 100%);
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .stat-item:hover::before {
            opacity: 1;
        }

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

        .stat-item:last-child {
            border-right: none;
        }

        .stat-icon {
            font-size: 40px;
            color: var(--primary-gold);
            margin-bottom: 25px;
            opacity: 0.8;
        }

        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 64px;
            color: var(--primary-gold);
            margin-bottom: 15px;
            font-weight: 500;
            line-height: 1;
        }

        .stat-label {
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Section Styling */
        section {
            padding: 160px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 100px;
            position: relative;
        }

        .section-label {
            font-size: 12px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--primary-gold);
            margin-bottom: 20px;
            display: block;
            font-weight: 600;
            position: relative;
            display: inline-block;
        }

        .section-label::before,
        .section-label::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 50px;
            height: 1px;
            background: var(--primary-gold);
        }

        .section-label::before {
            right: calc(100% + 20px);
        }

        .section-label::after {
            left: calc(100% + 20px);
        }

        .section-title {
            font-size: 56px;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            font-weight: 400;
        }

        .section-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 40px auto 0;
            line-height: 2;
            font-weight: 300;
        }

        /* Services Section */
        .services {
            background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
            position: relative;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .service-card {
            background: linear-gradient(135deg, rgba(201, 169, 97, 0.03) 0%, rgba(201, 169, 97, 0.01) 100%);
            border: 1px solid var(--border-color);
            padding: 60px 50px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            cursor: none;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            transform: scaleX(0);
            transition: var(--transition-smooth);
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

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

        .service-card:hover::after {
            width: 400px;
            height: 400px;
        }

        .service-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary-gold);
            box-shadow: 0 30px 60px rgba(0,0,0,0.4);
        }

        .service-icon {
            font-size: 56px;
            color: var(--primary-gold);
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            transition: var(--transition-smooth);
        }

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

        .service-card h3 {
            font-size: 28px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            font-weight: 400;
        }

        .service-card p {
            color: var(--text-secondary);
            line-height: 2;
            font-size: 14px;
            font-weight: 300;
            position: relative;
            z-index: 1;
        }

        /* Team Section */
        .team {
            background: var(--bg-dark);
            position: relative;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .team-card {
            position: relative;
            overflow: hidden;
            background: var(--bg-darker);
            border: 1px solid var(--border-color);
            transition: var(--transition-smooth);
        }

        .team-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-gold);
            box-shadow: 0 30px 60px rgba(0,0,0,0.4);
        }

        .team-image {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
            filter: grayscale(30%);
        }

        .team-card:hover .team-image img {
            transform: scale(1.1);
            filter: grayscale(0%);
        }

        .team-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
            opacity: 0;
            transition: var(--transition-smooth);
            display: flex;
            align-items: flex-end;
            padding: 30px;
        }

        .team-card:hover .team-overlay {
            opacity: 1;
        }

        .team-social {
            display: flex;
            gap: 15px;
            transform: translateY(20px);
            transition: var(--transition-smooth);
        }

        .team-card:hover .team-social {
            transform: translateY(0);
        }

        .team-social a {
            width: 40px;
            height: 40px;
            border: 1px solid var(--primary-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-gold);
            transition: var(--transition-smooth);
        }

        .team-social a:hover {
            background: var(--primary-gold);
            color: var(--bg-darker);
        }

        .team-info {
            padding: 30px;
        }

        .team-info h3 {
            font-size: 24px;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .team-info .position {
            color: var(--primary-gold);
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
        }

        /* Projects Section */
        .projects {
            background: var(--bg-dark);
        }

        .projects-filter {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: none;
            padding: 10px 20px;
            position: relative;
            transition: var(--transition-smooth);
        }

        .filter-btn::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: var(--primary-gold);
            transition: var(--transition-smooth);
        }

        .filter-btn.active,
        .filter-btn:hover {
            color: var(--primary-gold);
        }

        .filter-btn.active::after,
        .filter-btn:hover::after {
            width: 100%;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .project-card {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/5;
            cursor: none;
            group: true;
        }

        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            filter: grayscale(20%);
        }

        .project-card:hover img {
            transform: scale(1.15);
            filter: grayscale(0%);
        }

        .project-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-category {
            font-size: 11px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--primary-gold);
            margin-bottom: 15px;
            transform: translateY(30px);
            transition: transform 0.5s ease 0.1s;
        }

        .project-card:hover .project-category {
            transform: translateY(0);
        }

        .project-title {
            font-size: 26px;
            margin-bottom: 20px;
            transform: translateY(30px);
            transition: transform 0.5s ease 0.15s;
            font-weight: 400;
        }

        .project-card:hover .project-title {
            transform: translateY(0);
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--text-primary);
            text-decoration: none;
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            transform: translateY(30px);
            transition: var(--transition-smooth);
            font-weight: 600;
        }

        .project-card:hover .project-link {
            transform: translateY(0);
        }

        .project-link:hover {
            color: var(--primary-gold);
            gap: 20px;
        }

        /* About Section */
        .about {
            background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

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

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 700px;
            object-fit: cover;
            box-shadow: 0 40px 80px rgba(0,0,0,0.5);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -40px;
            left: -40px;
            width: 100%;
            height: 100%;
            border: 1px solid var(--primary-gold);
            z-index: -1;
        }

        .about-image::after {
            content: '';
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            background: var(--primary-gold);
            opacity: 0.1;
            z-index: -1;
        }

        .about-text h2 {
            font-size: 48px;
            margin-bottom: 40px;
            font-weight: 400;
            line-height: 1.2;
        }

        .about-text p {
            color: var(--text-secondary);
            line-height: 2.2;
            margin-bottom: 30px;
            font-size: 15px;
            font-weight: 300;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-top: 50px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 18px;
            transition: var(--transition-smooth);
        }

        .about-feature:hover {
            transform: translateX(10px);
        }

        .about-feature i {
            color: var(--primary-gold);
            font-size: 24px;
            width: 24px;
        }

        .about-feature span {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(201, 169, 97, 0.02) 100%);
            padding: 140px 0;
            text-align: center;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a961' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .cta h2 {
            font-size: 56px;
            margin-bottom: 25px;
            font-weight: 400;
            position: relative;
            z-index: 1;
        }

        .cta p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 2;
            font-weight: 300;
            position: relative;
            z-index: 1;
        }

        /* Footer */
        footer {
            background: var(--bg-darker);
            padding: 120px 0 50px;
            border-top: 1px solid var(--border-color);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 80px;
            margin-bottom: 100px;
        }

        .footer-brand .logo {
            margin-bottom: 30px;
            display: inline-block;
        }

        .footer-brand p {
            color: var(--text-secondary);
            line-height: 2;
            margin-bottom: 40px;
            font-size: 14px;
            font-weight: 300;
        }

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

        .social-links a {
            width: 50px;
            height: 50px;
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            transition: var(--transition-smooth);
            cursor: none;
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gold);
            transform: translateY(100%);
            transition: var(--transition-smooth);
            z-index: -1;
        }

        .social-links a:hover::before {
            transform: translateY(0);
        }

        .social-links a:hover {
            border-color: var(--primary-gold);
            color: var(--bg-darker);
            transform: translateY(-5px);
        }

        .footer-column h4 {
            font-size: 14px;
            margin-bottom: 40px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
            color: var(--primary-gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 18px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition-smooth);
            display: inline-block;
            font-weight: 300;
            position: relative;
            padding-left: 0;
        }

        .footer-links a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: var(--transition-smooth);
            color: var(--primary-gold);
        }

        .footer-links a:hover {
            color: var(--primary-gold);
            padding-left: 20px;
        }

        .footer-links a:hover::before {
            opacity: 1;
            left: 0;
        }

        .footer-contact p {
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-size: 14px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            font-weight: 300;
            line-height: 1.8;
        }

        .footer-contact i {
            color: var(--primary-gold);
            width: 20px;
            margin-top: 3px;
        }

        .footer-bottom {
            padding-top: 50px;
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 300;
        }

        /* Live Chat Widget */
        .live-chat-widget {
            position: fixed;
            bottom: 100px;
            right: 30px;
            z-index: 999;
        }

        .chat-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            border: none;
            color: white;
            font-size: 28px;
            cursor: none;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            transition: var(--transition-smooth);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            }
            50% {
                box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
            }
        }

        .chat-button:hover {
            transform: scale(1.1) rotate(10deg);
            animation: none;
        }

        .chat-popup {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            background: var(--bg-darker);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.9);
            transition: var(--transition-smooth);
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .chat-popup.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .chat-header {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
            color: var(--bg-darker);
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .chat-header img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
        }

        .chat-header-info h4 {
            font-size: 16px;
            margin-bottom: 3px;
            font-weight: 600;
        }

        .chat-header-info span {
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .chat-header-info span::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #25D366;
            border-radius: 50%;
            display: inline-block;
        }

        .chat-body {
            padding: 20px;
            max-height: 300px;
            overflow-y: auto;
        }

        .chat-message {
            background: rgba(201, 169, 97, 0.1);
            border-left: 3px solid var(--primary-gold);
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 0 10px 10px 10px;
            font-size: 14px;
            line-height: 1.6;
        }

        .chat-actions {
            padding: 15px 20px;
            border-top: 1px solid var(--border-color);
            display: flex;
            gap: 10px;
        }

        .chat-actions button {
            flex: 1;
            padding: 12px;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: none;
            transition: var(--transition-smooth);
        }

        .chat-whatsapp {
            background: #25D366;
            color: white;
        }

        .chat-whatsapp:hover {
            background: #128C7E;
        }

        .chat-close {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
        }

        .chat-close:hover {
            background: var(--bg-dark);
            color: var(--text-primary);
        }

        /* 404 Page */
        .error-page {
            display: none;
            min-height: 100vh;
            align-items: center;
            justify-content: center;
            padding: 100px 20px;
            background: var(--bg-darker);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 10001;
        }

        .error-page.active {
            display: flex;
        }

        .error-content {
            text-align: center;
            max-width: 600px;
        }

        .error-code {
            font-family: 'Cormorant Garamond', serif;
            font-size: 180px;
            font-weight: 500;
            color: var(--primary-gold);
            line-height: 1;
            margin-bottom: 20px;
            animation: glitch 3s infinite;
        }

        @keyframes glitch {
            0%, 90%, 100% {
                transform: translate(0);
            }
            92% {
                transform: translate(-2px, 2px);
            }
            94% {
                transform: translate(2px, -2px);
            }
            96% {
                transform: translate(-2px, 0);
            }
            98% {
                transform: translate(2px, 0);
            }
        }

        .error-title {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .error-text {
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.8;
            font-size: 16px;
        }

        .error-image {
            width: 200px;
            height: 200px;
            margin: 0 auto 40px;
            opacity: 0.5;
            animation: float 6s ease-in-out infinite;
        }

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

        /* Responsive */
        @media (max-width: 1400px) {
            .container {
                padding: 0 40px;
            }

            .hero h1 {
                font-size: 72px;
            }

            .team-grid,
            .projects-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 1200px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-item:nth-child(2) {
                border-right: none;
            }

            .stat-item {
                border-bottom: 1px solid var(--border-color);
            }

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

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

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

        @media (max-width: 992px) {
            body {
                cursor: auto;
            }

            .cursor, .cursor-follower {
                display: none;
            }

            .btn, .service-card, .project-card, .social-links a, .mobile-menu-btn, .chat-button {
                cursor: pointer;
            }

            .nav-links,
            .header-actions .phone-link {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero {
                padding: 150px 0 100px;
            }

            .hero h1 {
                font-size: 56px;
            }

            .hero h2 {
                font-size: 28px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-image {
                order: -1;
            }

            .about-image::before,
            .about-image::after {
                display: none;
            }

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

            .section-title {
                font-size: 42px;
            }

            .live-chat-widget {
                bottom: 90px;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 42px;
                letter-spacing: 4px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stat-item {
                border-right: none;
                border-bottom: 1px solid var(--border-color);
            }

            .services-grid,
            .projects-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .section-title {
                font-size: 36px;
            }

            .cta h2 {
                font-size: 36px;
            }

            .error-code {
                font-size: 120px;
            }

            .chat-popup {
                width: calc(100vw - 40px);
                right: -10px;
            }

            .mobile-app-nav {
                padding-bottom: calc(15px + var(--safe-area-bottom));
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1s ease, transform 1s ease;
        }

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

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 1s ease, transform 1s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-gold);
            border: none;
            border-radius: 50%;
            color: var(--bg-darker);
            font-size: 20px;
            cursor: none;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
            z-index: 998;
            box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
        }