/* ================================
   GRANULITE-BV - Style CSS Complet
   Police: Raleway
   Couleurs: Bleu Marine (#1A2332, #2C3E50) + Or (#D4AF37)
   ================================ */

/* Reset & Variables */
:root {
    --primary-color: #1A2332;
    --secondary-color: #2C3E50;
    --accent-gold: #D4AF37;
    --gold-light: #FFD700;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --text-dark: #1A2332;
    --text-gray: #6C757D;
    --border-color: #E1E8ED;
    --success: #28A745;
    --danger: #DC3545;
    --shadow: 0 2px 10px rgba(26, 35, 50, 0.1);
    --shadow-lg: 0 10px 30px rgba(26, 35, 50, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ================================
   TOP BAR
   ================================ */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a {
    color: var(--white);
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left a:hover {
    color: var(--accent-gold);
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: var(--white);
    font-size: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.top-bar-right a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-color);
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.logo i {
    font-size: 32px;
    color: var(--accent-gold);
}

.logo-accent {
    color: var(--accent-gold);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu > li > a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-radius: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background-color: var(--light-bg);
    color: var(--accent-gold);
    padding-left: 25px;
}

/* Button Login */
.btn-login {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    color: var(--primary-color) !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-login::after {
    display: none;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* ================================
   HERO SECTION
   ================================ */
.hero-section {
    background: linear-gradient(rgba(26, 35, 50, 0.85), rgba(44, 62, 80, 0.85)), url('../images/hero-gold.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Particules d'or flottantes */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 15s infinite ease-in-out;
    box-shadow: 0 0 20px var(--accent-gold);
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 25%;
    animation-delay: 2s;
    animation-duration: 15s;
    width: 15px;
    height: 15px;
}

.particle:nth-child(3) {
    left: 40%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    left: 55%;
    animation-delay: 1s;
    animation-duration: 14s;
    width: 12px;
    height: 12px;
}

.particle:nth-child(5) {
    left: 70%;
    animation-delay: 3s;
    animation-duration: 16s;
}

.particle:nth-child(6) {
    left: 85%;
    animation-delay: 5s;
    animation-duration: 13s;
    width: 8px;
    height: 8px;
}

.particle:nth-child(7) {
    left: 15%;
    animation-delay: 6s;
    animation-duration: 17s;
    width: 14px;
    height: 14px;
}

.particle:nth-child(8) {
    left: 90%;
    animation-delay: 2.5s;
    animation-duration: 19s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 700px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .highlight {
    color: var(--accent-gold);
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--gold-light));
    border-radius: 2px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}



/* ================================
   FEATURES SECTION
   ================================ */
.features-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--gold-light));
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.service-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transition: var(--transition);
}

.service-box:hover::before {
    top: -60%;
    right: -60%;
}

.service-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-box .btn-secondary {
    margin-top: 10px;
}

/* ================================
   STATS SECTION
   ================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* ================================
   FOOTER
   ================================ */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-content {
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--accent-gold);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-color);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact span,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

/* ================================
   SCROLL TO TOP BUTTON
   ================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
}

/* ================================
   PACKAGES SECTION
   ================================ */
.packages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.03), rgba(212, 175, 55, 0.03));
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card.featured {
    border-color: var(--accent-gold);
    transform: scale(1.03);
}

.package-card.featured::before {
    transform: scaleX(1);
}

.package-card.elite-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(255, 215, 0, 0.05));
    border: 2px solid var(--accent-gold);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.elite-badge {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    color: var(--white);
}

/* Package Icons */
.package-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.bronze-icon {
    background: linear-gradient(135deg, #CD7F32, #C87533);
}

.silver-icon {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
}

.gold-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
}

.platinum-icon {
    background: linear-gradient(135deg, #E5E4E2, #BCC6CC);
}

.diamond-icon {
    background: linear-gradient(135deg, #B9F2FF, #00CED1);
}

.elite-icon {
    background: linear-gradient(135deg, #8B0000, #DC143C);
}

.package-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.package-range {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 20px;
}

.package-return {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 10px;
    margin-bottom: 20px;
}

.return-rate {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.return-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-example {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.package-example p {
    margin: 5px 0;
    color: var(--text-dark);
    font-size: 14px;
}

.package-example .amount {
    font-weight: 700;
    color: var(--primary-color);
}

.package-example .profit {
    font-weight: 700;
    color: #28A745;
}

.package-features {
    margin: 25px 0;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-dark);
    font-size: 14px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--accent-gold);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.package-cta {
    margin-top: 30px;
}

.btn-package {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 35, 50, 0.3);
}

.package-card.featured .btn-package {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    color: var(--primary-color);
}

.package-card.elite-card .btn-package {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    color: var(--white);
    font-size: 18px;
    padding: 18px 35px;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    color: var(--accent-gold);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 20px;
}

.testimonial-info h4 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-gray);
}

.testimonial-rating {
    margin-top: 15px;
}

.testimonial-rating i {
    color: var(--gold-light);
    font-size: 16px;
}

/* ================================
   TRUST BADGES SECTION
   ================================ */
.trust-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    padding: 20px;
    border-radius: 10px;
}

.trust-item:hover {
    transform: translateY(-5px);
    background: var(--light-bg);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 215, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.trust-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.trust-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* ================================
   PROCESS SECTION
   ================================ */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    opacity: 0.9;
}

/* ================================
   ANIMATIONS & KEYFRAMES
   ================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Animation classes */
.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease forwards;
    opacity: 0;
}

.animate-scale {
    animation: scaleIn 0.6s ease forwards;
    opacity: 0;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* ================================
   IMAGE SECTIONS WITH ROUNDED BORDERS
   ================================ */
.image-section {
    padding: 100px 0;
    overflow: hidden;
}

.image-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-content-wrapper.reverse {
    direction: rtl;
}

.image-content-wrapper.reverse > * {
    direction: ltr;
}

.image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 35, 50, 0.15);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: var(--transition);
}

.image-box:hover img {
    transform: scale(1.05);
}

.image-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: var(--transition);
    opacity: 0;
}

.image-box:hover::before {
    opacity: 1;
    animation: shine 1.5s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.9), transparent);
    padding: 30px;
    transform: translateY(100%);
    transition: var(--transition);
}

.image-box:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.image-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.content-box {
    padding: 20px 0;
}

.content-box h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-box h2 .highlight {
    color: var(--accent-gold);
    position: relative;
}

.content-box h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--gold-light));
}

.content-box p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.content-box ul {
    list-style: none;
    margin: 30px 0;
}

.content-box ul li {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

.content-box ul li:last-child {
    border-bottom: none;
}

.content-box ul li i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.content-box ul li div h4 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 18px;
}

.content-box ul li div p {
    margin: 0;
    font-size: 15px;
    color: var(--text-gray);
}

/* ================================
   DECORATIVE ELEMENTS
   ================================ */
.decorative-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.05;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    border-radius: 50%;
    filter: blur(60px);
}

.shape-2 {
    bottom: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    filter: blur(80px);
}

/* ================================
   HOVER EFFECTS
   ================================ */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.hover-glow {
    position: relative;
    overflow: hidden;
}

.hover-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hover-glow:hover::before {
    width: 300px;
    height: 300px;
}

/* ================================
   PARALLAX EFFECT
   ================================ */
.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9), rgba(44, 62, 80, 0.9));
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .image-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-content-wrapper.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .content-box h2 {
        font-size: 28px;
    }
    
    .content-box p {
        font-size: 16px;
    }
}

/* ================================
   SHOP BANNER SECTION
   ================================ */
.shop-banner-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.shop-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.shop-banner-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.shop-banner-content {
    color: var(--white);
}

.banner-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.shop-banner-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--white);
}

.shop-banner-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.banner-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
}

.banner-feature-item i {
    color: var(--accent-gold);
    font-size: 20px;
}

.banner-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-banner-primary,
.btn-banner-secondary {
    padding: 16px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.btn-banner-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    color: var(--primary-color);
    border: none;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-banner-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-banner-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-banner-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.shop-banner-image {
    position: relative;
}

.banner-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.banner-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: var(--transition);
}

.banner-image-box:hover img {
    transform: scale(1.05);
}

.banner-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.badge-text span {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .shop-banner-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .banner-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .shop-banner-content h2 {
        font-size: 32px;
    }
    
    .banner-cta {
        flex-direction: column;
    }
    
    .btn-banner-primary,
    .btn-banner-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .banner-badge {
        bottom: 15px;
        right: 15px;
        padding: 15px 20px;
    }
}

/* ================================
   SHOP / BOUTIQUE STYLES
   ================================ */

/* Filters Section */
.shop-filters {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-form {
    width: 100%;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper i {
    color: var(--text-gray);
    font-size: 18px;
}

.search-input-wrapper input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
}

.btn-search {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.filters-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-group label {
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    color: var(--primary-color);
    border-color: var(--accent-gold);
}

.sort-select {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.sort-select:focus {
    border-color: var(--accent-gold);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.featured-badge {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    color: var(--primary-color);
}

.stock-badge {
    background: #FFA500;
    color: var(--white);
    top: 50px;
}

.outstock-badge {
    background: var(--danger);
    color: var(--white);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-quick-view:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.product-info {
    padding: 25px;
}

.product-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-bg);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.product-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-details {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.detail-item i {
    color: var(--accent-gold);
}

.product-manufacturer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.product-manufacturer i {
    color: var(--accent-gold);
}

.product-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid var(--border-color);
    margin-bottom: 20px;
}

.product-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-gold);
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
}

.btn-product {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 35, 50, 0.3);
}

/* No Products */
.no-products {
    text-align: center;
    padding: 80px 20px;
}

/* Shop Info Section */
.shop-info-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-color);
}

.info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .filters-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   OFFERTE / DEVIS PAGE
   ================================ */

.offerte-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.offerte-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--accent-gold);
}

.form-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-header h2 i {
    color: var(--accent-gold);
}

.form-header p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: #D4EDDA;
    color: #155724;
    border-left: 4px solid #28A745;
}

.alert-error {
    background: #F8D7DA;
    color: #721C24;
    border-left: 4px solid #DC3545;
}

/* Selected Product */
.selected-product {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px solid var(--accent-gold);
}

.selected-product h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-summary {
    display: flex;
    gap: 20px;
    align-items: center;
}

.product-summary-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-summary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-summary-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.summary-details {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.summary-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.summary-details i {
    color: var(--accent-gold);
}

.summary-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-gold);
}

/* Form Sections */
.form-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: var(--accent-gold);
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Quantity Input */
.quantity-input {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 200px;
}

.quantity-input button {
    width: 45px;
    height: 45px;
    border: 2px solid var(--accent-gold);
    background: var(--white);
    color: var(--accent-gold);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.quantity-input button:hover {
    background: var(--accent-gold);
    color: var(--primary-color);
}

.quantity-input input {
    width: 80px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 12px;
}

/* Checkboxes */
.form-checkbox {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--accent-gold);
    font-weight: 700;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

/* Submit */
.form-submit {
    text-align: center;
    padding-top: 30px;
}

.btn-submit {
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    color: var(--primary-color);
    border: none;
    border-radius: 30px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.submit-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-note i {
    color: var(--accent-gold);
}

/* Sidebar */
.offerte-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-box-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-color);
}

.info-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-box p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 30px;
    border-radius: 15px;
    color: var(--white);
    text-align: center;
}

.contact-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-box p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    transition: var(--transition);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .offerte-wrapper {
        grid-template-columns: 1fr;
    }
    
    .offerte-sidebar {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
}

@media (max-width: 768px) {
    .offerte-form-container {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .product-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .product-summary-image {
        width: 100%;
        height: 200px;
    }
    
    .offerte-sidebar {
        grid-template-columns: 1fr;
    }
}
/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .hero-section {
        background-attachment: scroll;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-menu > li > a {
        padding: 15px;
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--light-bg);
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero-section {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}