/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0B2D4E;
    --blue: #1A5080;
    --mid: #2272B6;
    --orange: #F7941D;
    --orange-dark: #D97A10;
    --light: #EFF5FB;
    --white: #FFFFFF;
    --dark: #111827;
    --muted: #5A6475;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 20px 60px rgba(11, 45, 78, 0.14);
    --radius: 18px;
    --radius-sm: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

/* ===== HEADER / NAV ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 45, 78, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

nav {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 74px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-wrap img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.3px;
}

.logo-text span {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--orange);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.2rem;
}

.nav-links a {
    display: block;
    padding: 0.5rem 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s;
    letter-spacing: 0.2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    padding: 0.55rem 1.4rem !important;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 74px;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('./images/hero.jpeg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 45, 78, 0.75) 0%, rgba(11, 45, 78, 0.3) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 148, 29, 0.15);
    border: 1px solid rgba(247, 148, 29, 0.35);
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 0.45rem 1.2rem;
    border-radius: 99px;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(8px);
}

.hero-badge::before {
    content: '●';
    font-size: 0.5rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--orange);
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 8px 24px rgba(247, 148, 29, 0.4);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(247, 148, 29, 0.5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.25s;
    backdrop-filter: blur(6px);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0;
    z-index: 3;
    background: rgba(11, 45, 78, 0.9);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
}

.hero-stat {
    flex: 1;
    max-width: 220px;
    padding: 1.2rem 1rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--orange);
}

.hero-stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* ===== SECTION BASE ===== */
.section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 1.2rem 1.6rem;
    box-shadow: 0 12px 30px rgba(247, 148, 29, 0.35);
    font-weight: 800;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.3;
}

.about-image-badge strong {
    display: block;
    font-size: 2rem;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-extra-text {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 1rem;
}

.about-text p strong {
    color: var(--navy);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.1rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
}

.feature-chip .chip-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(247, 148, 29, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
    background: var(--white);
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3.5rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.services-cta {
    flex-shrink: 0;
}

.category-block {
    margin-bottom: 4rem;
}

.cat-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.45rem 1.2rem;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cat-pill.blue {
    background: rgba(26, 80, 128, 0.1);
    color: var(--blue);
}

.cat-pill.orange {
    background: rgba(247, 148, 29, 0.1);
    color: var(--orange-dark);
}

.cat-line {
    flex: 1;
    height: 1px;
    background: #e5eaf0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 45, 78, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #EDF1F6;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(11, 45, 78, 0.13);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--mid));
    border-radius: var(--radius) var(--radius) 0 0;
}

.securite .service-card::before {
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .card-img-wrap img {
    transform: scale(1.07);
}

.card-body {
    padding: 1.4rem 1.5rem 1.6rem;
}

.card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.card-body p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--light);
}

.gallery-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.gallery-header .section-label {
    justify-content: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-sm);
    position: relative;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 24px rgba(11, 45, 78, 0.08);
    background: #dbe5f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 45, 78, 0.5), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--navy);
    overflow: hidden;
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-label {
    color: var(--orange);
}

.testimonials .section-sub {
    color: rgba(255, 255, 255, 0.55);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.tcard {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    transition: background 0.3s;
}

.tcard:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tcard-stars {
    color: var(--orange);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.tcard p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tcard-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.tcard-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.92rem;
}

.tcard-role {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--white);
}

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

.contact-header .section-label {
    justify-content: center;
}

.contact-header .section-sub {
    margin: 0 auto;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.contact-card {
    background: var(--light);
    border-radius: var(--radius-sm);
    padding: 1.4rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--orange);
}

.contact-card h4 {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-card p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.25s;
    margin-top: 0.5rem;
}

.whatsapp-btn:hover {
    background: #1ebc5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.contact-form-wrap {
    background: var(--light);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(11, 45, 78, 0.07);
}

.contact-form-wrap h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-form-wrap>p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #D9E2EC;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--mid);
    box-shadow: 0 0 0 3px rgba(34, 114, 182, 0.15);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    cursor: pointer;
    background: var(--navy);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

.submit-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 45, 78, 0.3);
}

.honey-field {
    display: none;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 2.5rem 2rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand img {
    height: 38px;
    border-radius: 6px;
}

.footer-brand span {
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.footer-tagline {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

footer p {
    font-size: 0.85rem;
}

footer a {
    color: var(--orange);
    text-decoration: none;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrap {
        max-width: 600px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 1.2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: rgba(11, 45, 78, 0.98);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        gap: 0.3rem;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-image-badge {
        right: 0;
        bottom: -16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
