/* Chrome-specific fixes for consistent header rendering */
@supports (-webkit-appearance: none) {
    .header,
    .header .container,
    .navigation,
    .logo-image,
    .language-dropdown,
    .language-options {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* Fix product image sizing to eliminate white space */
.product-image-container img,
.product-image,
.product-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* View Details Overlay Button */
.view-details-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(212, 175, 55, 0.9);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
}

/* Desktop: Show buttons only on hover */
@media (min-width: 769px) {
    .product-image-container:hover .view-details-overlay {
        opacity: 1;
    }
}

/* Mobile: Always show buttons */
@media (max-width: 768px) {
    .view-details-overlay {
        opacity: 1 !important;
        background: rgba(212, 175, 55, 0.95) !important;
        font-size: 0.8rem;
        padding: 10px 16px;
    }
    
    .view-details-overlay i {
        font-size: 0.9rem;
    }
    
    /* Make buttons more prominent on mobile */
    .view-details-overlay {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.3);
        font-weight: 700;
        letter-spacing: 0.5px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
}

.view-details-overlay:hover {
    background: rgba(212, 175, 55, 1);
    transform: translate(-50%, -50%) scale(1.05);
}

.view-details-overlay i {
    font-size: 1rem;
}

/* Photo Modal */
.photo-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Ensure modal is visible when displayed */
.photo-modal.show {
    display: block !important;
}

.photo-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.photo-modal-close {
    color: #fff;
    float: right;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.photo-modal-close:hover,
.photo-modal-close:focus {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.8);
    transform: scale(1.1);
}

.modal-photo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f6f2;
    color: #8b7355;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Loading Screen - Hidden by default, shown only on refresh */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.show {
    display: flex; /* Only show when .show class is added */
}

.loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('House.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(30px) brightness(0.7);
    z-index: -1;
}

.loading-logo {
    text-align: center;
    animation: logoAppear 1s ease-out 0.5s both;
    background: rgba(0, 0, 0, 0.9);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.loading-logo-image {
    width: 120px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    animation: logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8)) brightness(1.2) contrast(1.3);
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 30px;
    opacity: 0;
    animation: textFadeIn 1s ease-out 1s forwards;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(139, 115, 85, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    border-radius: 2px;
    animation: progressFill 2s ease-in-out forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

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

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8)) brightness(1.2) contrast(1.3);
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.9)) brightness(1.3) contrast(1.4);
    }
}

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

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

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

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

/* Header Styles */
.header {
    padding: 1.5rem 0;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* Chrome-specific fixes */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
}

/* Mobile Page Title */
.mobile-page-title {
    display: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #8b7355;
    text-align: center;
    margin: 0 auto;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(139, 115, 85, 0.1);
}

/* Mobile Menu Drawer - Hidden on Desktop */
.mobile-menu-drawer {
    display: none;
}

/* Ensure mobile menu elements are properly hidden on desktop */
.mobile-menu-toggle,
.mobile-menu-backdrop,
.mobile-menu-content {
    display: none;
}

/* Remove white space above "Notre Histoire" section on About Us page for desktop */
body.about-page .about-hero {
    margin-top: 0;
    padding-top: 0;
}

body.about-page .about-content {
    margin-top: 0;
    padding-top: 0;
}

/* Override any other spacing that might affect About Us page */
body.about-page main {
    margin-top: 0;
    padding-top: 0;
}

body.about-page .about-hero .container {
    margin-top: 0;
    padding-top: 0;
}

/* Reduce top spacing for Products page on mobile */
body.products-page {
    padding-top: 93px;
}

/* Ensure Products page content has minimal top spacing */
body.products-page .products-content {
    margin-top: 0;
    padding-top: 0;
}

body.products-page .products-header {
    margin-top: 0;
    padding-top: 0;
}

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

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

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
    animation: logoFloat 3s ease-in-out infinite;
    -webkit-animation: logoFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
    /* Chrome-specific fixes */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.logo-image:hover {
    transform: scale(1.1) rotate(5deg);
    animation-play-state: paused;
}

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

.navigation {
    display: flex;
    background: rgba(248, 246, 242, 0.8);
    background: -webkit-linear-gradient(135deg, rgba(248, 246, 242, 0.8), rgba(248, 246, 242, 0.9));
    background: -moz-linear-gradient(135deg, rgba(248, 246, 242, 0.8), rgba(248, 246, 242, 0.9));
    background: -o-linear-gradient(135deg, rgba(248, 246, 242, 0.8), rgba(248, 246, 242, 0.9));
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.1);
    border: 1px solid rgba(248, 246, 242, 0.3);
    /* Chrome-specific fixes */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.nav-link {
    text-decoration: none;
    color: #8b7355;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.nav-link.active {
    background-color: #d4af37;
    color: white;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-btn {
    background: rgba(248, 246, 242, 0.8);
    border: 1px solid rgba(139, 115, 85, 0.3);
    color: #8b7355;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-btn:hover {
    background-color: #d4af37;
    color: #f8f6f2;
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.15);
    padding: 0.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    min-width: 120px;
    /* Chrome-specific fixes */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

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

.language-option {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: #8b7355;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
}

.language-option:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.language-option.active {
    background-color: #d4af37;
    color: white;
}

/* Main Content Styles */
.main-content {
    margin-top: 0;
    background-color: #f8f6f2;
}

/* Old container styles removed - now handled by individual sections */

/* Left Content Styles */
.left-content {
    padding-right: 2rem;
}

.headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: black;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.body-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cta-btn {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #f8f6f2;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* Right Content Styles */
.right-content {
    position: relative;
    height: 600px;
}

/* Hero Section Styles */
.hero-section {
    padding: 120px 0 80px;
    background: url('House.PNG') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 246, 242, 0) 0%, rgba(230, 215, 195, 0) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-section .left-content {
    flex: 1;
    padding-right: 40px;
}

.hero-section .right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: auto;
    padding-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: #8b7355;
    border: 2px solid #d4af37;
}

.cta-btn.secondary:hover {
    background: #d4af37;
    color: white;
}

/* 3D House Rendering - Removed to show background image */
.house-rendering {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    z-index: 1;
    /* House elements removed to show background image */
}

/* Enhanced Homepage Sections */
.highlights-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f6f2 0%, #e6d7c3 100%);
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #a69b8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 115, 85, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.highlight-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 15px;
}

.highlight-card p {
    color: #a69b8d;
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b7355, #6b5b47);
    color: white;
}

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

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f6f2 0%, #e6d7c3 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 115, 85, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 20px;
}

.service-card p {
    color: #a69b8d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #b8860b;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e6d7c3, #d4c4a8);
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    margin-top: 40px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonials-carousel::before,
.testimonials-carousel::after {
    content: '';
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100px;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonials-carousel::before {
    left: 0;
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

.testimonials-carousel::after {
    right: 0;
    background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}

/* Show fades only when testimonials section is in view */
.testimonials-section.in-view .testimonials-carousel::before,
.testimonials-section.in-view .testimonials-carousel::after {
    opacity: 1;
}

.testimonials-track {
    display: flex !important;
    gap: 30px;
    animation: scrollTestimonials 60s linear infinite;
    width: max-content;
    visibility: visible !important;
    opacity: 1 !important;
}

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

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 115, 85, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
    justify-content: center;
}

.testimonial-rating i {
    color: #d4af37;
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #8b7355;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 3px;
    font-size: 0.9rem;
}

.author-location {
    color: #a69b8d;
    font-size: 0.8rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b7355, #6b5b47);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
          font-weight: 700;
      margin-bottom: 20px;
      color: black;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.cta-buttons .cta-btn {
    margin: 0;
}

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

/* Project Cards */
.project-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 320px;
    margin-top: 60px;
}

.project-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.25);
    border-color: rgba(212, 175, 55, 0.3);
}

.project-card.next {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.project-card.next::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.5s ease;
}

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

.project-card.next:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.project-card.next .card-text::after {
    content: ' 👆';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card.next:hover .card-text::after {
    opacity: 1;
}

.project-card.latest {
    flex-direction: column;
    align-items: flex-start;
}

.card-image {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.project-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.card-image:hover .project-photo {
    transform: scale(1.1);
}

.card-content {
    flex: 1;
}

.card-text {
    font-weight: 600;
    color: #8b7355;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.project-name {
    font-weight: 500;
    color: #a69b8d;
    font-size: 0.85rem;
}

.project-location {
    font-weight: 400;
    color: #a69b8d;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .left-content {
        padding-right: 0;
        text-align: center;
    }
    
    .headline {
        font-size: 2.5rem;
    }
    
    .right-content {
        height: 400px;
    }
    
    .house-rendering {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* Add top padding to prevent content from being hidden behind fixed header */
    body {
        padding-top: 0;
    }
    
    /* Remove top padding specifically for About Us page to eliminate white space */
    body.about-page {
        padding-top: 0;
    }
    
    /* Ensure About Us page content starts at the very top */
    body.about-page .about-hero {
        margin-top: 0;
        padding-top: 0;
    }
    
    body.about-page .about-content {
        margin-top: 0;
        padding-top: 0;
    }
    
    /* Hide Latest Achievement box on mobile */
    .project-card.latest {
        display: none !important;
    }
    
    /* Alternative selector for better specificity */
    .hero-section .project-cards .project-card.latest {
        display: none !important;
    }
    
    /* Hide Next Project box on mobile */
    .project-card.next {
        display: none !important;
    }
    
    /* Alternative selector for better specificity */
    .hero-section .project-cards .project-card.next {
        display: none !important;
    }
    
    /* Mobile Header Styles - Enhanced Aesthetic */
    .header {
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    
    .header .container {
        justify-content: space-between;
        align-items: center;
        padding: 18px 24px;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-radius: 60px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        margin: 20px;
        width: calc(100% - 40px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .logo-image {
        height: 44px;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    }
    
    .navigation {
        display: none;
    }
    
    .language-dropdown {
        display: none;
    }
    
    /* Mobile Menu Toggle - Enhanced Aesthetic */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    /* Mobile Page Title - Show on Mobile */
    .mobile-page-title {
        display: block !important;
        font-size: 1.1rem;
        font-weight: 600;
        color: #8b7355;
        text-align: center;
        margin: 0 auto;
        letter-spacing: 0.5px;
        text-shadow: 0 1px 2px rgba(139, 115, 85, 0.1);
        flex: 1;
        max-width: 200px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }
    
    .mobile-menu-toggle span {
        height: 3px;
        background: #8b7355;
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform-origin: center;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu-toggle span:nth-child(1) {
        width: 100%;
    }
    
    .mobile-menu-toggle span:nth-child(2) {
        width: 100%;
    }
    
    .mobile-menu-toggle span:nth-child(3) {
        width: 70%;
        align-self: flex-start;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        width: 100%;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        width: 100%;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        width: 100%;
    }
    
    /* Mobile Menu Drawer */
    .mobile-menu-drawer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 1000;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s, opacity 0.25s ease-out;
        display: block;
    }
    
    .mobile-menu-drawer.active {
        visibility: visible;
        opacity: 1;
        transition: visibility 0s, opacity 0.25s ease-out;
    }
    
    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: block;
        opacity: 0;
        transition: opacity 0.25s ease-out;
    }
    
    .mobile-menu-drawer.active .mobile-menu-backdrop {
        opacity: 1;
    }
    
    .mobile-menu-content {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 70vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: flex;
        flex-direction: column;
        padding: 20px;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.25);
        border-radius: 0 0 0 25px;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 5vh;
    }
    
    .mobile-menu-drawer.active .mobile-menu-content {
        transform: translateX(0);
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 20px;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 24px;
        color: #8b7355;
        cursor: pointer;
        padding: 10px;
        border-radius: 50%;
        transition: all 0.3s ease;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-close:hover {
        background: rgba(139, 115, 85, 0.1);
        color: #d4af37;
        transform: scale(1.1);
    }
    
    .mobile-navigation {
        flex: 1;
        margin-bottom: 20px;
    }
    
    .mobile-nav-link {
        display: block;
        color: #8b7355;
        text-decoration: none;
        font-size: 1.3rem;
        font-weight: 600;
        padding: 15px 0;
        border-bottom: 1px solid rgba(139, 115, 85, 0.15);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .mobile-nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        color: #d4af37;
        padding-left: 20px;
        background: rgba(139, 115, 85, 0.05);
        border-radius: 8px;
    }
    
    .mobile-nav-link.navigating {
        opacity: 0.7;
        background-color: rgba(139, 115, 85, 0.1);
        color: #d4af37;
        cursor: not-allowed;
        padding-left: 20px;
        border-radius: 8px;
    }
    
    /* Desktop rules - hide slide button, show regular CTA */
    .mobile-slide-button-container {
        display: none !important;
    }
    
    .cta-btn.primary {
        display: inline-block !important;
    }
    
    .mobile-language-section {
        border-top: 2px solid rgba(139, 115, 85, 0.15);
        padding-top: 20px;
        margin-top: 10px;
    }
    
    .mobile-language-label {
        display: block;
        color: #8b7355;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 18px;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
    }
    
    .mobile-language-buttons {
        display: flex;
        gap: 12px;
    }
    
    .mobile-lang-btn {
        background: none;
        border: 2px solid rgba(139, 115, 85, 0.25);
        color: #8b7355;
        font-size: 0.95rem;
        font-weight: 600;
        padding: 10px 16px;
        border-radius: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        flex: 1;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .mobile-lang-btn.active {
        background: #d4af37;
        border-color: #d4af37;
        color: white;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    
    .mobile-lang-btn:hover {
        border-color: #d4af37;
        color: #d4af37;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(139, 115, 85, 0.2);
    }
    
    /* Enhanced mobile typography */
    .headline {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }
    
    .body-text {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    /* Move hero content lower on mobile */
    .hero-section .left-content {
        margin-bottom: 1rem;
        padding-bottom: 2rem;
    }
    
    /* Mobile Slide Button */
    .mobile-slide-button-container {
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 0;
        display: block !important;
    }
    
    .mobile-slide-button {
        position: relative;
        width: 100%;
        height: 60px;
        background: linear-gradient(135deg, #d4af37, #b8860b);
        border-radius: 30px;
        cursor: pointer;
        overflow: hidden;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        transition: all 0.3s ease;
        user-select: none;
        touch-action: pan-y;
    }
    
    .mobile-slide-button .slide-text {
        color: white;
        font-size: 1rem;
        font-weight: 600;
        z-index: 2;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .mobile-slide-button .slide-handle {
        width: 50px;
        height: 50px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        z-index: 3;
        flex-shrink: 0;
    }
    
    .mobile-slide-button .slide-handle i {
        color: #d4af37;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    /* Slide Button States */
    .mobile-slide-button.sliding {
        background: linear-gradient(135deg, #b8860b, #8b7355);
    }
    
    .mobile-slide-button.sliding .slide-text {
        opacity: 0.8;
    }
    
    .mobile-slide-button.sliding .slide-handle {
        transform: translateX(calc(100% - 70px));
        background: #d4af37;
    }
    
    .mobile-slide-button.sliding .slide-handle i {
        color: white;
        transform: rotate(90deg);
    }
    
    /* Slide Button Hover Effects */
    .mobile-slide-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    }
    
    .mobile-slide-button:hover .slide-handle {
        transform: scale(1.05);
    }
    
    .house-rendering {
        width: 300px;
        height: 300px;
    }
    
    .project-cards {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        max-width: 100%;
    }
    
    /* Enhanced homepage mobile styles */
    .hero-section {
        padding: 120px 0 60px;
        background-attachment: scroll;
    }
    
    .hero-section .container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .left-content {
        padding-right: 0;
        margin-top: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-section .right-content {
        justify-content: center;
    }
    
    /* Hide regular CTA button on mobile */
    .cta-btn.primary {
        display: none !important;
    }
    
    /* Ensure mobile slide button is visible and properly positioned */
    .mobile-slide-button-container {
        position: relative !important;
        z-index: 10 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .highlights-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-card,
    .service-card,
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* Contact Page Styles */
.contact-content {
    margin-top: 100px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #e6d7c3, #d4c4a8);
    min-height: calc(100vh - 100px);
}

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

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #a69b8d;
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-card h3 {
    color: #8b7355;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info {
    color: #a69b8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Professional Opening Hours Styling */
.opening-hours {
    margin: 1.5rem 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
    transition: all 0.3s ease;
}

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

.hours-row:hover {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.days {
    font-weight: 600;
    color: #8b7355;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.9rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.contact-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.map-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
}

.map-section h2 {
    color: #8b7355;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.address-info {
    text-align: center;
}

.address-info h3 {
    color: #8b7355;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.address-info p {
    color: #a69b8d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #b8860b;
}

/* Responsive Design for Contact Page */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

/* Products Page Styles */
.products-content {
    margin-top: 100px;
    padding: 8rem 0 4rem 0;
    background: linear-gradient(135deg, #e6d7c3, #d4c4a8);
    min-height: calc(100vh - 100px);
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-title {
    font-size: 3rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1rem;
}

.products-subtitle {
    font-size: 1.2rem;
    color: #a69b8d;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Filter */
.category-filter {
    display: none !important;
}

.filter-btn {
    background: white;
    border: 2px solid transparent;
    color: #8b7355;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.1);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    border-color: #d4af37;
}

/* Products Header */
.products-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.products-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b7355, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(139, 115, 85, 0.1);
}

.products-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Professional Filter System */
.products-filter-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-categories {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-category {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(139, 115, 85, 0.15);
    color: #8b7355;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.1);
}

.filter-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(139, 115, 85, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.filter-category.active {
    background: linear-gradient(135deg, #8b7355, #d4af37);
    color: white;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(139, 115, 85, 0.3);
}

.filter-category i {
    font-size: 1.2rem;
}

.filter-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #8b7355;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(139, 115, 85, 0.15);
    color: #8b7355;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.filter-group select:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.15);
}

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

/* Products Grid */
.products-grid {
    margin-bottom: 4rem;
    margin-top: 2rem;
    padding-top: 3rem;
}

/* Product Pages */
.product-page {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-page.active {
    display: grid;
}

/* Pagination Section */
.pagination-section {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

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

.page-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(139, 115, 85, 0.15);
    color: #8b7355;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
}

.page-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.page-btn.active {
    background: linear-gradient(135deg, #8b7355, #d4af37);
    color: white;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

.product-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
    transform: scale(1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.product-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(139, 115, 85, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.2);
}

.product-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #8b7355;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.05), rgba(212, 175, 55, 0.05));
}

.product-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.product-image-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.4;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.view-details-btn {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.view-details-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #b8860b, #d4af37);
}

.product-info {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
}

.product-name {
    color: #8b7355;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.product-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.spec-item {
    background: linear-gradient(135deg, #e6d7c3, #d4c4a8);
    color: #8b7355;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(139, 115, 85, 0.1);
}

/* Pagination Section */
.pagination-section {
    text-align: center;
    margin-top: 3rem;
}

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

.page-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(139, 115, 85, 0.15);
    color: #8b7355;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
}

.page-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.page-btn.active {
    background: linear-gradient(135deg, #8b7355, #d4af37);
    color: white;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

/* Product Pages */
.product-page {
    display: none;
}

.product-page.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
    border: 2px dashed rgba(139, 115, 85, 0.2);
}

.empty-state i {
    font-size: 4rem;
    color: rgba(139, 115, 85, 0.3);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 1rem;
    font-weight: 600;
}

.empty-state p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
}

.load-more-btn {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.load-more-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #b8860b, #d4af37);
}

/* Responsive Design for Products Page */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .products-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .product-card {
        margin: 0 1rem;
    }
}

/* About Us Page Styles */
.about-content {
    margin-top: 100px;
}

/* Hero Section */
.about-hero {
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a, #1a1a1a, #2d2d2d);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(212,175,55,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    animation: gridMove 20s linear infinite;
}

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

.cgi-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

/* CGI Doors */
.cgi-door {
    position: absolute;
    transform-style: preserve-3d;
    animation: doorFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

.cgi-door::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
    border-radius: 12px;
    z-index: -1;
    animation: doorGlow 4s ease-in-out infinite;
}

.door-1 {
    top: 20%;
    left: 15%;
    width: 120px;
    height: 200px;
    animation-delay: 0s;
}

.door-2 {
    top: 40%;
    right: 20%;
    width: 100px;
    height: 180px;
    animation-delay: 2s;
}

.door-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37, #b8860b, #d4af37);
    background-size: 200% 200%;
    border-radius: 8px;
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(212, 175, 55, 0.1);
    transform: translateZ(-5px);
    animation: doorFrameShine 3s ease-in-out infinite;
}

.door-panel {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: linear-gradient(135deg, #8b7355, #6b5b47);
    border-radius: 4px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.door-handle {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 8px;
    height: 20px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 4px;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.door-reflection {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 2px;
}

/* CGI Windows */
.cgi-window {
    position: absolute;
    transform-style: preserve-3d;
    animation: windowFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 8px 25px rgba(230, 215, 195, 0.4));
}

.cgi-window::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, rgba(230, 215, 195, 0.15), transparent);
    border-radius: 10px;
    z-index: -1;
    animation: windowGlow 5s ease-in-out infinite;
}

.window-1 {
    top: 25%;
    right: 15%;
    width: 150px;
    height: 120px;
    animation-delay: 1s;
}

.window-2 {
    top: 60%;
    left: 25%;
    width: 100px;
    height: 80px;
    animation-delay: 3s;
}

.window-3 {
    bottom: 30%;
    right: 35%;
    width: 80px;
    height: 60px;
    animation-delay: 5s;
}

.window-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6d7c3, #d4c4a8);
    border-radius: 6px;
    box-shadow: 
        0 0 15px rgba(230, 215, 195, 0.4),
        inset 0 0 15px rgba(0, 0, 0, 0.1);
    transform: translateZ(-3px);
}

.window-glass {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: 
        linear-gradient(135deg, rgba(135, 206, 235, 0.4), rgba(70, 130, 180, 0.3)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 3px;
    backdrop-filter: blur(2px);
    box-shadow: 
        inset 0 0 15px rgba(255, 255, 255, 0.15),
        0 0 20px rgba(135, 206, 235, 0.2);
    animation: glassShimmer 4s ease-in-out infinite;
}

.window-reflection {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    height: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 2px;
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #d4af37, #b8860b);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.8),
        0 0 30px rgba(212, 175, 55, 0.4);
    filter: blur(0.5px);
}

.particle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
    border-radius: 50%;
    animation: particlePulse 2s ease-in-out infinite;
}

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

.particle-2 {
    top: 35%;
    right: 10%;
    animation-delay: 1s;
}

.particle-3 {
    top: 70%;
    left: 20%;
    animation-delay: 2s;
}

.particle-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 3s;
}

.particle-5 {
    top: 50%;
    left: 50%;
    animation-delay: 1.5s;
}

/* Animations */
@keyframes doorFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg) rotateX(0deg);
    }
    33% {
        transform: translateY(-15px) rotateY(5deg) rotateX(2deg);
    }
    66% {
        transform: translateY(-10px) rotateY(-3deg) rotateX(-1deg);
    }
}

@keyframes windowFloat {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    50% {
        transform: translateY(-20px) rotateZ(2deg);
    }
}

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

/* Hero Content */
.about-hero .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-text-container {
    /* Removed white zone styling */
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(212, 175, 55, 0.3);
    animation: titleGlow 3s ease-in-out infinite, titleGradient 4s ease-in-out infinite;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-accent-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #b8860b);
    background-size: 200% 100%;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(212, 175, 55, 0.3);
    animation: lineGlow 2s ease-in-out infinite, lineGradient 3s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

.hero-accent-line::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #b8860b);
    border-radius: 6px;
    opacity: 0.3;
    animation: linePulse 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

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

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

@keyframes windowGlow {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.03); }
}

@keyframes glassShimmer {
    0%, 100% { 
        background: 
            linear-gradient(135deg, rgba(135, 206, 235, 0.4), rgba(70, 130, 180, 0.3)),
            radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
    }
    50% { 
        background: 
            linear-gradient(135deg, rgba(135, 206, 235, 0.5), rgba(70, 130, 180, 0.4)),
            radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.3), transparent);
    }
}

@keyframes particlePulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

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

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

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

@keyframes linePulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

@keyframes lineGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.9);
    }
}

/* Owner Section */
.owner-section {
    padding: 6rem 0;
    background: white;
}

.owner-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.owner-image {
    text-align: center;
    position: relative;
}

.owner-photo-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #e6d7c3, #d4c4a8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 4rem;
    color: #8b7355;
    position: relative;
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.2);
}

.owner-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.owner-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1.5rem;
}

.owner-description {
    font-size: 1.1rem;
    color: #a69b8d;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.owner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f6f2, #e6d7c3);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #8b7355;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f6f2, #e6d7c3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b7355;
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    color: #8b7355;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    color: #a69b8d;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.timeline:hover::before {
    width: 6px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

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

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

.timeline-marker {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px white;
    transition: all 0.3s ease;
}

.timeline-marker:hover {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 0 10px white, 0 5px 15px rgba(212, 175, 55, 0.3);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
    width: 45%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-content h3 {
    color: #8b7355;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #a69b8d;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e6d7c3, #d4c4a8);
}

.section-subtitle {
    text-align: center;
    color: #a69b8d;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
    transition: transform 0.3s ease;
}

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

.member-photo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e6d7c3, #d4c4a8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #8b7355;
}

.team-member h3 {
    color: #8b7355;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #a69b8d;
    font-size: 0.9rem;
}

/* CTA Section */
.about-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #8b7355, #6b5b47);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.cta-btn.primary {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Responsive Design for About Page */
@media (max-width: 1200px) {
    .about-hero .container {
        text-align: center;
    }
    
    .owner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    /* Adjust CGI elements for smaller screens */
    .door-1, .door-2 {
        transform: scale(0.8);
    }
    
    .window-1, .window-2, .window-3 {
        transform: scale(0.7);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-text-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .owner-name {
        font-size: 2rem;
    }
    
    .owner-stats {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Hide some CGI elements on mobile for better performance */
    .door-2, .window-3 {
        display: none;
    }
    
    .particle-3, .particle-4, .particle-5 {
        display: none;
    }
    
    /* Scale down remaining elements */
    .door-1 {
        transform: scale(0.6);
        top: 30%;
        left: 10%;
    }
    
    .window-1, .window-2 {
        transform: scale(0.5);
    }
} 

/* Next Project Page Styles */
.project-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 115, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.floating-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    opacity: 0.6;
}

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

.floating-particles .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 5s;
    animation-duration: 25s;
}

.floating-particles .particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 10s;
    animation-duration: 18s;
}

.floating-particles .particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 15s;
    animation-duration: 22s;
}

.floating-particles .particle:nth-child(5) {
    top: 70%;
    left: 60%;
    animation-delay: 8s;
    animation-duration: 30s;
}

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

.project-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.project-info {
    animation: slideInLeft 1s ease-out;
}

.project-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37, #b8860b, #8b7355);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.project-subtitle {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.project-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.stat:nth-child(2) {
    animation-delay: 1.2s;
}

.stat:nth-child(3) {
    animation-delay: 1.4s;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #a69b8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-image-container {
    animation: slideInRight 1s ease-out 0.3s both;
}

.project-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
    min-height: 500px;
    background: linear-gradient(135deg, #f8f6f2, #e6d7c3);
}

.image-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f6f2, #e6d7c3);
    z-index: 2;
    color: #8b7355;
    font-weight: 500;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(139, 115, 85, 0.2);
    border-top: 3px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.project-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.3s ease;
    opacity: 0;
    position: relative;
    z-index: 1;
    will-change: opacity, transform;
}

.project-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.project-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.3s ease;
    opacity: 0;
    position: relative;
    z-index: 1;
    will-change: opacity, transform;
    background: linear-gradient(135deg, #f8f6f2, #e6d7c3);
}

.project-hero-image:not([src]), 
.project-hero-image[src=""],
.project-hero-image[src*="error"] {
    background: linear-gradient(135deg, #f8f6f2, #e6d7c3);
    position: relative;
}

.project-hero-image:not([src])::after, 
.project-hero-image[src=""]::after,
.project-hero-image[src*="error"]::after {
    content: '🏠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.5;
    color: #8b7355;
}

.project-image-wrapper:hover .project-hero-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Products Used Section */
.products-used-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f6f2 0%, #e6d7c3 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8b7355, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #a69b8d;
    max-width: 600px;
    margin: 0 auto;
}

.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.product-category {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.product-category:nth-child(2) {
    animation-delay: 0.3s;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    border-radius: 2px;
}

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

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.2s; }
.product-item:nth-child(3) { animation-delay: 0.3s; }

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.product-item:hover .product-img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-overlay .overlay-content i {
    font-size: 2rem;
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #a69b8d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-specs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.spec {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Project Details Section */
.project-details {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.detail-card:nth-child(1) { animation-delay: 0.1s; }
.detail-card:nth-child(2) { animation-delay: 0.2s; }
.detail-card:nth-child(3) { animation-delay: 0.3s; }
.detail-card:nth-child(4) { animation-delay: 0.4s; }

.detail-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.detail-card h3 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.detail-card p {
    color: #a69b8d;
    font-size: 1rem;
}

/* Project CTA Section */
.project-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f6f2 0%, #e6d7c3 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #a69b8d;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #8b7355;
    border-color: #8b7355;
}

.cta-btn.secondary:hover {
    background: #8b7355;
    color: white;
    transform: translateY(-3px);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes backgroundShift {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-10px) translateY(-10px);
    }
    50% {
        transform: translateX(10px) translateY(-5px);
    }
    75% {
        transform: translateX(-5px) translateY(10px);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .project-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .project-title {
        font-size: 3rem;
    }
    
    .project-stats {
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .project-title {
        font-size: 2.5rem;
    }
    
    .project-subtitle {
        font-size: 1.2rem;
    }
    
    .project-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
} 

/* Desktop rules - hide entire slide button */
@media (min-width: 769px) {
    .mobile-slide-button {
        display: none !important;
    }
}

/* Coming Soon Section Styling */
.coming-soon-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(248, 246, 242, 0.1), rgba(139, 115, 85, 0.05));
    border-radius: 20px;
    border: 2px dashed rgba(139, 115, 85, 0.3);
    margin: 2rem 0;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.coming-soon-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 500px;
}

.coming-soon-icon {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.coming-soon-text {
    font-size: 1.2rem;
    color: #6b5b47;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
}

/* Mobile Responsiveness for Coming Soon */
@media (max-width: 768px) {
    .coming-soon-section {
        min-height: 250px;
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Hover effects for Coming Soon */
.coming-soon-section:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, rgba(248, 246, 242, 0.15), rgba(139, 115, 85, 0.08));
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.coming-soon-section:hover .coming-soon-icon {
    color: #b8941f;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Ensure loading screen is hidden on navigation */
body.navigating .loading-screen {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Fast navigation - no loading screen */
.fast-navigation .loading-screen {
    display: none !important;
}

/* Mobile Slide Button - Arrow on left side */
.mobile-slide-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(212, 175, 55, 0.9);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-direction: row; /* Normal order: arrow first, then text */
}

.mobile-slide-button .slide-handle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; /* Increased from 24px */
    height: 32px; /* Increased from 24px */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
    flex-shrink: 0;
    order: 1; /* Arrow first */
    margin-right: 8px; /* Move more to the left (increased from -8px) */
}

.mobile-slide-button .slide-handle i {
    color: white;
    font-size: 1.6rem; /* Increased from 1.2rem */
    transition: all 0.3s ease;
    transform: rotate(0deg) !important; /* Always point right */
}

.mobile-slide-button .slide-text {
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    white-space: nowrap;
    order: 2; /* Text second */
}

/* Ensure arrow always points right, even when sliding */
.mobile-slide-button.sliding .slide-handle i {
    transform: rotate(0deg) !important; /* Always point right, never down */
}

/* Add blur effect to text when sliding, but keep "Contacting" clear */
.mobile-slide-button.sliding .slide-text {
    filter: blur(2px);
    -webkit-filter: blur(2px);
    transition: all 0.3s ease;
}

/* Keep "Contacting" text clear and visible when sliding */
.mobile-slide-button.sliding .slide-text[data-fr*="Contacting"],
.mobile-slide-button.sliding .slide-text[data-en*="Contacting"] {
    filter: blur(0px) !important;
    -webkit-filter: blur(0px) !important;
}