/* ============================================
   Tawafy - Modern & Clean CSS
   ============================================ */

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

:root {
    /* Couleurs SALSABIL TRAVEL selon le flyer */
    --primary-color: #8c6b2d; /* Doré principal */
    --primary-dark: #6f5322; /* Doré sombre */
    --accent-color: #8c6b2d;
    --accent-gold: #8c6b2d;
    --accent-hover: #6f5322;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Note: Font Awesome et Google Fonts sont chargés dans le HTML */

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
}

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

/* Top Bar */
.top-bar {
    background: var(--bg-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-admin-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
}

.contact-info {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
}

.contact-item:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 16px;
    background: var(--accent-gold);
    margin-left: 20px;
    margin-right: 20px;
}

.contact-item i {
    font-size: 14px;
    margin-right: 8px;
    color: var(--accent-gold);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-gold);
}

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

.social-link {
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar,
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 30px;
}

.nav-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    min-width: 200px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 10px;
}

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

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
}

.dropdown a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta .btn {
    padding: 12px 24px;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    background: #1a1a1a;
    padding: 100px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-content {
    color: var(--white);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-gold);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--white);
}

.hero-badge i {
    color: var(--white);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-title .highlight {
    color: var(--accent-gold);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
}

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

.hero-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: var(--white);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    padding: 25px;
    border-radius: 0 0 8px 8px;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.overlay-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.overlay-label {
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 600;
}

.overlay-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.overlay-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 8px 0;
}

.btn-overlay {
    margin-top: 15px;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
}

.btn i.fa-circle {
    font-size: 6px;
    margin-left: 10px;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    display: inline-block;
}

.btn-primary i.fa-circle {
    color: var(--white);
    opacity: 1;
}

.btn-overlay i.fa-circle {
    margin-left: 12px;
}

/* Statistics Section */
.statistics-section {
    background: var(--bg-light);
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.statistics-section .container {
    max-width: 1200px;
}

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

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--text-color);
}

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

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    border-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp i {
    font-size: 18px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--accent-color);
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* Services Section */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 24px;
}

.service-icon i {
    color: var(--white);
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
    min-height: 500px;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-images {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.image-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.image-item:hover img {
    transform: scale(1.05);
}

.image-top-left {
    grid-column: 1;
    grid-row: 1;
}

.image-top-right {
    grid-column: 2;
    grid-row: 1;
}

.image-bottom-left {
    grid-column: 1;
    grid-row: 2;
}

.image-bottom-right {
    grid-column: 2;
    grid-row: 2;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-card-mission {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-card-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
}

.about-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.about-card-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-card-mission .btn-small {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 14px;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}

.feature-list i {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 12px;
}

/* Packages Section */
.packages-section {
    background: var(--bg-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.package-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.package-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.package-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.package-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.package-price {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.package-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color);
}

.package-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
}

.package-price .period {
    font-size: 16px;
    color: var(--text-light);
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.package-features i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 14px;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: #ffc107;
}

.testimonial-rating i {
    font-size: 16px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 2px 8px rgba(140, 107, 45, 0.2);
}

.author-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

/* Blog Section */
.blog-section {
    background: var(--bg-light);
}

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

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 30px;
}

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

.blog-category {
    color: var(--accent-color);
    font-weight: 600;
}

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

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.blog-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 10px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social .social-link {
    background: rgba(255, 255, 255, 0.1);
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--accent-gold);
    width: 20px;
    font-size: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    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);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* Icons sont maintenant gérés par Font Awesome directement dans le HTML */

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .top-bar-right .social-links {
        display: none !important;
    }
    
    .top-bar-admin-link span {
        display: none;
    }
    
    .top-bar-admin-link {
        padding: 6px 10px !important;
    }
    
    .header-cta {
        display: flex;
        gap: 8px;
        align-items: center;
        flex-shrink: 0;
    }
    
    .header-cta .btn {
        padding: 10px 12px !important;
        min-width: 44px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }
    
    .header-cta .btn-primary {
        background: var(--primary-color);
        color: var(--white);
    }
    
    .header-cta .btn-whatsapp {
        background: #25D366;
        color: var(--white);
    }
    
    /* Masquer le texte des boutons sur mobile et garder seulement les icônes */
    .header-cta .btn {
        position: relative;
    }
    
    .header-cta .btn-primary,
    .header-cta .btn-whatsapp {
        padding: 12px !important;
        min-width: 44px;
        width: 44px;
        height: 44px;
        justify-content: center;
    }
    
    .header-cta .btn-primary .btn-text,
    .header-cta .btn-whatsapp .btn-text {
        display: none !important;
    }
    
    .header-cta .btn-primary i,
    .header-cta .btn-whatsapp i {
        margin: 0 !important;
        font-size: 20px;
        display: inline-block;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .statistics-section {
        margin-top: -20px;
        padding: 40px 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   Form Styles
   ============================================ */

.form-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.demande-devis-form .form-group {
    margin-bottom: 25px;
}

.demande-devis-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 15px;
}

.demande-devis-form .form-group input,
.demande-devis-form .form-group select,
.demande-devis-form .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.demande-devis-form .form-group input:focus,
.demande-devis-form .form-group select:focus,
.demande-devis-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(140, 107, 45, 0.1);
}

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

.demande-devis-form .form-section-title {
    font-size: 24px;
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    color: var(--primary-color);
    font-weight: 600;
}

.demande-devis-form .form-section-title:first-child {
    margin-top: 0;
}

/* Radio buttons styling */
.demande-devis-form .form-group input[type="radio"] {
    width: auto;
    margin-right: 8px;
    margin-top: 0;
    cursor: pointer;
}

.demande-devis-form .form-group .radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.demande-devis-form .form-group .radio-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.demande-devis-form .form-group .radio-item:hover {
    border-color: var(--accent-gold);
    background: rgba(140, 107, 45, 0.05);
}

.demande-devis-form .form-group .radio-item input[type="radio"]:checked ~ label,
.demande-devis-form .form-group .radio-item:has(input[type="radio"]:checked) {
    border-color: var(--accent-gold);
    background: rgba(140, 107, 45, 0.1);
}

.demande-devis-form .form-group .radio-item input[type="radio"]:checked ~ label {
    color: var(--primary-color);
    font-weight: 600;
}

.demande-devis-form .form-group .radio-item label {
    margin: 0;
    cursor: pointer;
    flex: 1;
}

/* Checkboxes styling */
.demande-devis-form .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.demande-devis-form .checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.demande-devis-form .checkbox-item:hover {
    border-color: var(--accent-gold);
    background: rgba(140, 107, 45, 0.05);
}

.demande-devis-form .checkbox-item:has(input[type="checkbox"]:checked) {
    border-color: var(--accent-gold);
    background: rgba(140, 107, 45, 0.1);
}

.demande-devis-form .checkbox-item input[type="checkbox"]:checked ~ label {
    color: var(--primary-color);
    font-weight: 600;
}

.demande-devis-form .checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
}

.demande-devis-form .checkbox-item label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
    flex: 1;
}

.demande-devis-form .form-group .form-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.demande-devis-form .form-group .form-help {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .demande-devis-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .demande-devis-form .form-section-title {
        font-size: 20px;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

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

.whatsapp-card {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--white);
}

.whatsapp-card i {
    color: var(--white);
}

.whatsapp-card h3 {
    color: var(--white);
}

.whatsapp-card p {
    color: rgba(255, 255, 255, 0.9);
}

.whatsapp-card a {
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    margin-top: 10px;
}

.whatsapp-card a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
}

