/* ==========================================================================
   LA BOUTIQUE LA DIFFÉRENCE - CLEAN & PROFESSIONAL
   MUTED RWANDA | MAX READABILITY | SIMPLE ELEGANCE
   ========================================================================== */

/* CLEAN MUTED RWANDA PALETTE - HIGH CONTRAST */
:root {
    --rwanda-blue: #4A7C9A;
    --rwanda-yellow: #B89C3C;
    --rwanda-green: #6A8C74;
    --rwanda-dark: #1A1A1A;
    --rwanda-light: #F5F5F5;
    --white: #FFFFFF;
    --gray-dark: #333333;
    --gray-light: #E5E5E5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--rwanda-dark);
    background: var(--rwanda-light);
}
/* FIXED NAVBAR - TRANSPARENT OVER HERO */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 18px 0;
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* NAVBAR CONTENT */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--rwanda-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--rwanda-blue);
}

.logo i {
    color: var(--rwanda-yellow);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--rwanda-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--rwanda-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--rwanda-yellow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    color: var(--rwanda-dark);
    font-size: 1.4rem;
    padding: 12px;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.cart-icon:hover {
    background: rgba(184, 156, 60, 0.1);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--rwanda-yellow);
    color: var(--rwanda-dark);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HERO - FULLSCREEN NO GAP */
.cinematic-hero {
    position: relative;
    height: 100vh;
    /* Exactly viewport height */
    margin-top: 0 !important;
    /* NO GAP */
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(74, 124, 154, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(106, 140, 116, 0.4) 100%);
    z-index: 2;
}

/* HERO CONTENT - PERFECTLY CENTERED */
.hero-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 4;
    max-width: 900px;
    padding: 0 20px;
}

.hero-main {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.7),
        0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    margin: 0 auto 40px;
    max-width: 700px;
}
.intro-visual {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 4;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.executive-badge {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.flag-image {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.executive-badge:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 25px 60px rgba(0, 102, 204, 0.4);
}

.executive-badge:hover .flag-image {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .executive-badge {
        width: 75px;
        height: 75px;
    }

    .flag-image {
        width: 55px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .intro-visual {
        bottom: 25px;
        right: 25px;
    }

    .executive-badge {
        width: 65px;
        height: 65px;
    }

    .flag-image {
        width: 48px;
        height: 35px;
    }
}/* SECTIONS */
.boutique-info,
.categories-section,
.testimonials-section,
.contact-section,
.newsletter-section {
    padding: 80px 0;
}

.boutique-info {
    background: linear-gradient(135deg, var(--rwanda-blue), var(--rwanda-yellow), var(--rwanda-green));
    color: white;
    text-align: center;
}

.info-body {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.info-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    color: var(--rwanda-dark);
    min-width: 180px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--rwanda-blue);
    display: block;
}

.stat-label {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
}

/* CATEGORIES - SIMPLE FLOATING BG */
.categories-section {
    background: var(--rwanda-light);
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(4px 4px at 20px 30px, rgba(74, 124, 154, 0.1), transparent),
        radial-gradient(4px 4px at 80% 80%, rgba(184, 156, 60, 0.1), transparent),
        radial-gradient(4px 4px at 40% 60%, rgba(106, 140, 116, 0.1), transparent);
    animation: floatSimple 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatSimple {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1) translateX(0);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05) translateX(-10px);
    }
}

.categories-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--rwanda-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-dark);
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 124, 154, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-overlay i {
    font-size: 2.5rem;
    color: white;
}

.category-content {
    padding: 25px 20px;
    text-align: center;
}

.category-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--rwanda-dark);
}

.category-content p {
    color: var(--gray-dark);
    font-weight: 500;
}

/* TEAM */
.testimonials-section {
    background: var(--rwanda-blue);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.team-member-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.team-member-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.team-role {
    color: var(--rwanda-yellow);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-contact a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    text-decoration: none;
}

.team-contact a:hover {
    background: rgba(255, 255, 255, 0.2);
}
/* CONTACT SECTION - YELLOW THEME + UPGRADED PRESENTATION */
.contact-section {
    background: var(--rwanda-yellow);
    color: white;
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* UPGRADED BOXES WITH RWANDA COLORS */
.hours-table-box,
.contact-info-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    color: var(--rwanda-dark);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hours-table-box {
    border-top: 4px solid var(--rwanda-blue);
}

.contact-info-box {
    border-top: 4px solid var(--rwanda-yellow);
}

/* HOURS TABLE HEADER */
.hours-table-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hours-table-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
    color: var(--rwanda-dark);
    font-weight: 700;
}

.hours-table-header i {
    color: var(--rwanda-blue);
    font-size: 1.6rem;
}

/* PROFESSIONAL HOURS TABLE */
.hours-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.hours-table thead {
    background: linear-gradient(135deg, var(--rwanda-blue), var(--rwanda-yellow));
}

.hours-table th {
    font-weight: 700;
    color: white;
    padding: 18px 20px;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
}

.hours-table th:first-child {
    border-top-left-radius: 12px;
}

.hours-table th:last-child {
    border-top-right-radius: 12px;
}

.hours-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-weight: 500;
}

.hours-table tr:hover td {
    background: rgba(184, 156, 60, 0.08);
    transform: scale(1.01);
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.hours-table tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.weekday td {
    border-left: 4px solid var(--rwanda-blue);
}

.weekend td {
    border-left: 4px solid var(--rwanda-green);
}

.hours-table td strong {
    color: var(--rwanda-dark);
    font-weight: 700;
}

/* LIVE STATUS BAR - GREEN PULSING DOT */
.live-status-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 25px;
    background: linear-gradient(135deg, var(--rwanda-green), #5A7B68);
    color: white;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(106, 140, 116, 0.3);
    backdrop-filter: blur(15px);
}

.live-status-bar i {
    color: #22C55E;
    font-size: 1rem;
    animation: greenPulse 2s infinite;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

@keyframes greenPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.live-status-bar span {
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* UPGRADED CONTACT TITLE */
.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--rwanda-dark);
    font-weight: 700;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--rwanda-yellow), var(--rwanda-blue));
    border-radius: 2px;
}

/* UPGRADED CONTACT INFO CARDS */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 25px;
    background: rgba(255, 255, 255, 1);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-left: 5px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rwanda-blue), var(--rwanda-yellow));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-left-color: var(--rwanda-green);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.phone-item .contact-icon {
    background: linear-gradient(135deg, var(--rwanda-blue), #4A7C9A);
}

.email-item .contact-icon {
    background: linear-gradient(135deg, var(--rwanda-yellow), #D4A017);
}

.location-item .contact-icon {
    background: linear-gradient(135deg, var(--rwanda-green), #6A8B6F);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--rwanda-dark);
    margin: 0 0 8px 0;
    font-weight: 600;
}

.contact-details p,
.contact-details a {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: #555;
    line-height: 1.5;
}

.contact-details a {
    color: var(--rwanda-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--rwanda-green);
    text-shadow: 0 2px 8px rgba(106, 140, 116, 0.3);
}

/* PERFECT MAP CONTAINER */
.map-container {
    height: 260px;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 15px;
}

.map-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.map-link {
    background: linear-gradient(135deg, var(--rwanda-dark), #2D3B45);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    margin-top: 20px;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(45, 59, 69, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.map-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 59, 69, 0.4);
    background: linear-gradient(135deg, var(--rwanda-blue), var(--rwanda-dark));
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hours-table {
        font-size: 0.9rem;
    }

    .hours-table th,
    .hours-table td {
        padding: 15px 15px;
    }

    .live-status-bar {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info {
        gap: 20px;
    }

    .contact-item {
        padding: 20px;
        gap: 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .map-container {
        height: 220px;
        margin: 25px 0;
    }
}

@media (max-width: 480px) {

    .hours-table th,
    .hours-table td {
        padding: 12px 12px;
        font-size: 0.85rem;
    }

    .hours-table-header h4 {
        font-size: 1.3rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-icon {
        align-self: center;
    }

    .contact-title {
        font-size: 1.5rem;
    }
}

/* EXCELLENT FEEDBACK SECTION - HORIZONTAL LAYOUT */
.feedback-section {
    background: linear-gradient(135deg,
            #2d5a3e 0%,
            #3a6f50 30%,
            #4a7a5f 70%,
            #2d5a3e 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 30% 20% at 20% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 20% 15% at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.feedback-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.feedback-main-box {
    flex: 1;
    max-width: 850px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    padding: 50px 45px;
    border-radius: 24px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feedback-preview-box {
    flex: 0 0 420px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
    position: sticky;
    top: 30px;
    align-self: flex-start;
}

.feedback-main-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
            var(--rwanda-blue) 0%,
            var(--rwanda-yellow) 50%,
            var(--rwanda-green) 100%);
    box-shadow: 0 2px 10px rgba(74, 124, 154, 0.3);
}

.feedback-preview-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
            var(--rwanda-yellow) 0%,
            var(--rwanda-green) 50%,
            var(--rwanda-blue) 100%);
    box-shadow: 0 2px 10px rgba(184, 156, 60, 0.3);
}

.feedback-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--rwanda-dark);
    text-align: center;
    margin: 0 0 20px 0;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
}

.feedback-subtitle {
    font-size: 1.2rem;
    color: #5a6c6d;
    text-align: center;
    margin-bottom: 45px;
    font-weight: 500;
    line-height: 1.6;
}

/* FORM - SAME STYLES */
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--rwanda-dark);
    margin-bottom: 12px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.form-group input,
.form-group textarea,
.numeric-rating {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(45, 90, 62, 0.3);
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.92);
    color: var(--rwanda-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.form-group input:focus,
.form-group textarea:focus,
.numeric-rating:focus {
    outline: none;
    border-color: var(--rwanda-green);
    background: rgba(255, 255, 255, 1);
    box-shadow:
        0 0 0 4px rgba(37, 211, 102, 0.15),
        0 12px 35px rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

.numeric-rating {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 16px;
    cursor: pointer;
    appearance: none;
    padding-right: 50px;
}

.boutique-general {
    background: linear-gradient(135deg,
            rgba(184, 156, 60, 0.15),
            rgba(74, 124, 154, 0.15)) !important;
    border-color: var(--rwanda-yellow) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
}

.rating-questions {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 35px 0;
}

.rating-question {
    background: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--rwanda-blue);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.rating-question:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.rating-question label {
    display: block;
    font-weight: 800;
    color: var(--rwanda-dark);
    margin-bottom: 20px;
    font-size: 1.15rem;
    font-family: 'Playfair Display', serif;
}

.boutique-rating {
    border-left-color: var(--rwanda-yellow) !important;
    background: linear-gradient(135deg,
            rgba(184, 156, 60, 0.12),
            rgba(74, 124, 154, 0.08)) !important;
}

.file-upload {
    border: 3px dashed rgba(45, 90, 62, 0.4);
    border-radius: 18px;
    padding: 45px 25px;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload:hover {
    border-color: var(--rwanda-green);
    background: rgba(37, 211, 102, 0.08);
    transform: translateY(-2px);
}

.file-hint {
    display: block;
    margin-top: 15px;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.feedback-submit-btn {
    width: 100%;
    background: linear-gradient(135deg,
            var(--rwanda-green) 0%,
            #25D366 50%,
            var(--rwanda-blue) 100%);
    color: white;
    padding: 24px 35px;
    border: none;
    border-radius: 22px;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow:
        0 15px 40px rgba(37, 211, 102, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feedback-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 25px 55px rgba(37, 211, 102, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.preview-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--rwanda-dark);
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.whatsapp-bubble {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 22px;
    padding: 35px;
    position: relative;
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.whatsapp-message-preview {
    background: rgba(255, 255, 255, 0.95);
    padding: 28px;
    border-radius: 18px;
    color: var(--rwanda-dark);
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.98rem;
    line-height: 1.65;
    flex: 1;
    max-height: 500px;
    overflow-y: auto;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.whatsapp-status {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .feedback-container {
        gap: 40px;
    }

    .feedback-preview-box {
        flex: 0 0 360px;
    }
}

@media (max-width: 992px) {
    .feedback-container {
        flex-direction: column;
        gap: 35px;
    }

    .feedback-preview-box {
        position: static;
        height: auto;
    }
}

@media (max-width: 768px) {

    .feedback-main-box,
    .feedback-preview-box {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .feedback-title {
        font-size: 2rem;
    }
}

/* CENTERED SUCCESS MODAL */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.success-modal.active {
    display: flex;
    animation: modalSlideIn 0.4s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    margin: auto;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 25px 60px rgba(37, 211, 102, 0.4);
    transform: scale(0.8);
    animation: modalPop 0.4s ease-out forwards;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalPop {
    to {
        transform: scale(1);
    }
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.success-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.success-text {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.5;
}

.success-received {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 15px;
    font-weight: 600;
}


/* FLOATING FIXED CALL & WHATSAPP BUTTONS - RWANDA STYLE */
.phone-widget,
.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 1002;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.phone-widget {
    bottom: 105px;
    background: linear-gradient(135deg, var(--rwanda-blue), #3B6A89);
    color: white;
}

.whatsapp-widget {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow:
        0 10px 30px rgba(37, 211, 102, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* EMAIL SUCCESS MODAL */
.email-success-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.email-success-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.email-modal-content {
    margin: auto;
    padding: 40px 25px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border-radius: 20px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.phone-widget:hover,
.whatsapp-widget:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.phone-widget:hover {
    box-shadow:
        0 20px 50px rgba(74, 124, 154, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.phone-widget:active,
.whatsapp-widget:active {
    transform: translateY(-5px) scale(0.98);
}

/* PULSE ANIMATION */
@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 124, 154, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(74, 124, 154, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 124, 154, 0);
    }
}

.phone-widget::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(74, 124, 154, 0.3);
    animation: pulseRing 2s infinite;
    z-index: -1;
}

@keyframes pulseRingGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-widget::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: pulseRingGreen 2s infinite;
    z-index: -1;
}

/* MOBILE RESPONSIVE */
@media (max-width: 480px) {

    .phone-widget,
    .whatsapp-widget {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .phone-widget {
        bottom: 85px;
    }
}

/* LANDSCAPE MOBILE */
@media (max-height: 500px) and (orientation: landscape) {

    .phone-widget,
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .phone-widget {
        bottom: 75px;
    }
}

/* PERFECT RWANDA FLAG FOOTER - ALL 3 COLORS */
.site-footer {
    background: linear-gradient(135deg,
            var(--rwanda-blue) 0%,
            var(--rwanda-yellow) 40%,
            var(--rwanda-green) 70%,
            var(--rwanda-dark) 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--rwanda-yellow) 25%,
            var(--rwanda-green) 50%,
            var(--rwanda-blue) 75%,
            transparent 100%);
    box-shadow: 0 2px 15px rgba(184, 156, 60, 0.4);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--rwanda-yellow), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.1;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-column {
    padding: 10px 0;
}

.footer-column h4 {
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: white;
    transform: translateX(5px);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }

    .footer-top {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        padding: 0 15px;
    }

    .map-container {
        height: 200px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* FULL DEVICE RESPONSIVENESS */

/* Make hero never overflow vertical height on tiny & huge screens */
@media (max-height: 500px) and (orientation: landscape) {
    .cinematic-hero {
        height: auto;
        min-height: 500px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }
}

/* Ensure all cards scale nicely from phone to TV */
.category-card,
.team-member-card,
.hours-table-box,
.contact-info-box,
.feedback-main-box,
.feedback-preview-box,
.cinematic-hero .intro-visual {
    width: auto;
    max-width: 100%;
}

/* Multiply‑device grid scalability for categories & team */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .testimonials-grid,
    .feedback-container {
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categories-section {
        padding: 60px 0;
    }
}

/* Force max-width and padding on very wide TV screens */
@media (min-width: 1440px) and (min-height: 900px) {

    .container,
    .feedback-container,
    .contact-grid,
    .footer-bottom {
        max-width: 1800px;
    }

    /* Hero stays readable on ultra‑wide */
    .hero-container {
        max-width: 1100px;
    }

    /* Footer keeps columns but looks balanced */
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* Phone‑only sanity for hero text */
@media (max-width: 414px) {

    .hero-title {
        font-size: clamp(2.2rem, 6vw, 3.2rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.2rem);
        max-width: 100%;
        margin: 0 0 30px;
    }

    .intro-visual {
        bottom: 20px;
        right: 20px;
    }

    .executive-badge {
        width: 60px;
        height: 60px;
    }

    .flag-image {
        width: 45px;
        height: 32px;
    }
}

/* Tablet portrait – keep breathable padding */
@media (max-width: 768px) and (orientation: portrait) {
    .contact-grid {
        flex-direction: column;
        margin-top: 15px;
    }

    .contact-title {
        text-align: center;
    }

    .site-footer {
        padding: 50px 0 20px;
    }
}

/* Tiny‑screen phones (e.g. 320–360 px) */
@media (max-width: 360px) {

    body,
    h1,
    h2,
    h3,
    p,
    .nav-link {
        font-size: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 6.8vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    }

    .main-nav,
    .logo,
    .nav-link {
        padding: 14px 0;
    }

    .main-nav .nav-wrapper {
        padding: 0 16px;
    }

    .sections {
        padding: 70px 0;
    }
}