.hero {
    background: 
        radial-gradient(circle at 80% 20%, rgba(191, 149, 63, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(191, 149, 63, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, #0f0f0f 0%, #000000 100%);
    color: var(--lux-white);
    position: relative;
    padding: 120px 0 180px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 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='%23ffffff' fill-opacity='0.02'%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;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(233, 78, 27, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--lux-white);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

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

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.2s backwards;
}

.hero-visual img {
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-visual:hover img {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-overlap {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--bg);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

/* Brand Presentation */
.about-block {
    padding: 100px 0;
    background-color: var(--bg);
}

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

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 24px;
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 0;
    list-style: none;
}

.features li {
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    font-weight: 600;
    color: var(--lux-gold);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
}

.features li:hover {
    transform: translateX(10px);
}

.features li i {
    color: var(--lux-orange);
    font-size: 1.4rem;
}

.location {
    font-weight: 700;
    color: var(--lux-orange);
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.about-media img {
    border-radius: var(--radius);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
}

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

.process-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 24px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: rgba(233, 78, 27, 0.1);
}

.process-icon {
    width: 90px;
    height: 90px;
    background: rgba(233, 78, 27, 0.08);
    color: var(--lux-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 30px;
    transition: all 0.4s;
}

.process-card:hover .process-icon {
    background: var(--lux-orange);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.process-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
}

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

/* Highlights */
.highlights {
    padding: 120px 0;
    background-color: var(--bg);
}

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

.card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-color: rgba(197, 160, 45, 0.1);
}

.card-img-wrapper {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.2));
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.card-body {
    padding: 30px 24px;
    text-align: center;
}

.card .product-category {
    font-size: 0.75rem;
    color: var(--lux-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Contact Section Redesign */
.contact-section {
    padding: 140px 0;
    background: #080808;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(191, 149, 63, 0.05) 0%, transparent 80%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: #111;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.6);
    border: 1px solid rgba(191, 149, 63, 0.1);
}

/* Panel Right Form adjustments for Dark Theme */
.contact-form-panel {
    background: #1a1a1a;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.luxury-form .form-control {
    background: #222;
    border: 1px solid #333;
}

.luxury-form .form-control:focus {
    background: #252525;
}

/* Left Panel: Info */
.contact-info-panel {
    background: #111; /* Fond sombre pour faire ressortir l'or */
    padding: 80px 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(233, 78, 27, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.panel-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info-panel .panel-title {
    color: white;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.panel-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 48px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.method-icon {
    width: 54px;
    height: 54px;
    background: rgba(233, 78, 27, 0.2);
    color: var(--lux-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.method-content h4 {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.method-content a, .method-content p {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-decoration: none;
    font-weight: 500;
    margin: 0;
}

.method-content a:hover {
    color: var(--lux-orange);
}

.panel-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.panel-footer p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.social-mini {
    display: flex;
    gap: 16px;
}

.social-mini a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-mini a:hover {
    background: var(--lux-orange);
    border-color: var(--lux-orange);
    transform: translateY(-5px);
}

/* Right Panel: Form */
.contact-form-panel {
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.luxury-form {
    width: 100%;
}

.luxury-form .form-group {
    margin-bottom: 28px;
}

.luxury-form label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lux-gold);
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-form .form-control {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    transition: all 0.3s;
}

.luxury-form .form-control:focus {
    background: white;
    border-color: var(--lux-orange);
    box-shadow: 0 8px 20px rgba(233, 78, 27, 0.05);
}

.btn-full {
    width: 100%;
    padding: 18px 30px;
    justify-content: space-between;
    font-size: 1rem;
}

.btn-full i {
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.btn-full:hover i {
    transform: translateX(5px) scale(1.1);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero {
        padding: 60px 0 100px;
    }

    .hero-inner, .about-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .about-text h2 {
        text-align: center !important;
        margin: 0 auto 20px !important;
        font-size: 2.5rem;
    }

    .about-text h2::after {
        margin: 16px auto 0 !important;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 40px;
        order: 2;
    }

    .hero-content {
        order: 1;
    }
    
    .process-grid, .highlight-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-panel, .contact-form-panel {
        padding: 60px 30px;
    }

    .contact-info-panel .panel-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .hero-actions .btn {
        width: 100%;
        margin-top: 0;
        padding: 16px 20px;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 30px 0 60px;
    }
    
    .hero-overlap {
        height: 40px;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
    }

    .about-block {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .features li {
        padding: 15px;
        font-size: 0.95rem;
    }

    .process-section, .highlights, .contact-section {
        padding: 60px 0;
    }

    .process-card {
        padding: 30px 20px;
    }

    .contact-info-panel, .contact-form-panel {
        padding: 40px 20px;
    }

    .contact-info-panel .panel-title {
        font-size: 1.8rem;
    }

    .hero-visual {
        padding: 0 15px;
    }
}

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

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

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: #222;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid #b39359;
}

.toast.active {
    transform: translateX(0);
}

.toast i {
    font-size: 1.2rem;
}

.toast-success i {
    color: #4CAF50;
}

.toast-error i {
    color: #f44336;
}

.toast-success {
    border-left-color: #4CAF50;
}

.toast-error {
    border-left-color: #f44336;
}
