/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Inter:wght@400;600&display=swap');

:root {
    --brand-green : #363830;
    --brand-accent: #b4925a;
    --brand-blue  : #005a9c;
    --text-dark   : #111111;
    --text-light  : #555555;
    --border-gray : #347b36;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Font Awesome fix — prevent Montserrat from overriding FA icon font */
.fa, .fas, .fa-solid  { font-family: "Font Awesome 6 Free"   !important; font-weight: 900 !important; }
.far, .fa-regular     { font-family: "Font Awesome 6 Free"   !important; font-weight: 400 !important; }
.fab, .fa-brands      { font-family: "Font Awesome 6 Brands" !important; font-weight: 400 !important; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    color           : var(--text-dark);
    line-height     : 1.6;
    overflow-x      : hidden;
}

h1,h2,h3,h4,h5,h6 { font-weight: 600; color: var(--text-dark);  font-family: 'Plus Jakarta Sans', sans-serif !important;
 }
p { margin-bottom: 1rem; }


/* ================================================================
   HEADER — fully responsive
   ================================================================ */
header {
    position       : absolute;
    top            : 0; left: 0;
    width          : 100%;
    padding        : 16px 48px;
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    z-index        : 1000;
    background     : linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.0) 100%);
}

/* Left: logo + hamburger */
.header-left {
    display    : flex;
    align-items: center;
    gap        : 14px;
    flex-shrink: 0;
}


.logo img {
  width: 60px;
  height: 90px;
  border-radius:0%;
 }
 

/* ── Hamburger — hidden on desktop ── */
.hamburger {
    display       : none;
    font-size     : 1.4rem;
    color         : #fff !important;
    cursor        : pointer;
    padding       : 4px;
    mix-blend-mode: normal !important;
    background    : none;
    border        : none;
    line-height   : 1;
}

.hamburger i { color: #fff !important; }

/* ── Centered nav (desktop) ── */
.main-menu {
    display     : flex;
    align-items : center;
    position    : absolute;
    left        : 50%;
    transform   : translateX(-50%);
    white-space : nowrap;
    gap         : 0;
}

.main-menu > a,
.main-menu .dropdown > a {
    text-decoration: none;
    color          : white;
    margin         : 0 14px;
    font-size      : 0.88rem;
    font-weight    : 400;
    mix-blend-mode : difference;
    white-space    : nowrap;
}

/* ── Dropdown (desktop hover) ── */
.dropdown { position: relative; display: inline-flex; align-items: center; }

.dropdown::after {
    content : '';
    position: absolute;
    height  : 15px; width: 100%;
    bottom  : -15px; left: 0;
    z-index : 999;
}

.dropdown-menu {
    display         : flex;
    flex-direction  : column;
    opacity         : 0;
    visibility      : hidden;
    pointer-events  : none;
    position        : absolute;
    top             : calc(100% + 15px); left: 0;
    min-width       : 180px;
    background-color: #ffffff;
    box-shadow      : 0 8px 24px rgba(0,0,0,0.15);
    z-index         : 1001;
    border-radius   : 6px;
    padding         : 10px 0;
    transition      : opacity 0.2s ease, visibility 0.2s ease;
}

.dropdown-menu a {
    color         : #333 !important;
    padding       : 12px 18px;
    display       : block;
    font-size     : 0.88rem;
    font-weight   : 400;
    mix-blend-mode: normal !important;
    margin        : 0 !important;
    white-space   : nowrap;
    transition    : background 0.2s, color 0.2s;
}

.dropdown-menu a:hover { background-color: #f5f5f5; color: #0bbf8a !important; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; }

/* ── Right actions ── */
.header-actions {
    display    : flex;
    align-items: center;
    gap        : 20px;
    flex-shrink: 0;
}

.header-actions i,
.header-actions a,
.header-actions a i {
    font-size     : 1.05rem;
    color         : #fff !important;
    mix-blend-mode: normal !important;
    transition    : transform 0.3s ease;
    display       : inline-flex;
    align-items   : center;
}

.header-actions i:hover,
.header-actions a:hover i { transform: scale(1.15); }

.auth-links a   { color: #fff !important; }
.auth-links a i { color: #fff !important; }

/* Search */
.search-wrapper { position: relative; display: flex; align-items: center; cursor: pointer; }

.search-input {
    background   : transparent;
    border       : none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    color        : #fff;
    width        : 0;
    padding      : 4px 0;
    margin-left  : 0;
    outline      : none;
    font-size    : 0.85rem;
    transition   : width 0.35s ease, margin 0.35s ease, padding 0.35s ease;
    overflow     : hidden;
}

.search-wrapper:hover .search-input { width: 120px; margin-left: 8px; padding: 4px 6px; }
.search-input::placeholder { color: rgba(255,255,255,0.5); }


/* ================================================================
   MOBILE NAV  ≤ 1024px
   ================================================================ */
@media (max-width: 1024px) {

    header { padding: 12px 20px; }

    .main-menu {
        display   : none;
        position  : static;
        transform : none;
    }

    .hamburger { display: block; }

    /* Full-screen overlay */
    .main-menu.active {
        display        : flex;
        position       : fixed;
        top:0; left:0;
        width          : 100%; height: 100dvh;
        background     : rgba(10,10,10,0.97);
        backdrop-filter: blur(12px);
        flex-direction : column;
        align-items    : center;
        justify-content: center;
        gap            : 0;
        z-index        : 9999;
        padding        : 80px 30px 40px;
        overflow-y     : auto;
    }

    /* Top-level links */
    .main-menu.active > a,
    .main-menu.active .dropdown > a {
        color         : #fff !important;
        font-size     : 1.1rem;
        margin        : 0;
        padding       : 14px 20px;
        width         : 100%;
        text-align    : center;
        border-bottom : 1px solid rgba(255,255,255,0.08);
        mix-blend-mode: normal;
        display       : block;
        text-decoration: none;
    }

    /* Dropdown container on mobile */
    .main-menu.active .dropdown {
        flex-direction: column;
        width         : 100%;
        align-items   : stretch;
    }

    /* Submenu — hidden by default, revealed by max-height on .open */
    .main-menu.active .dropdown-menu {
        position      : relative !important;
        top           : 0 !important;
        opacity       : 1 !important;
        visibility    : visible !important;
        pointer-events: auto !important;
        box-shadow    : none !important;
        background    : rgba(255,255,255,0.06) !important;
        width         : 100% !important;
        min-width     : unset !important;
        border-radius : 0 !important;
        padding       : 0 !important;
        max-height    : 0;
        overflow      : hidden;
        display       : flex !important;
        flex-direction: column !important;
        transition    : max-height 0.3s ease !important;
    }

    .main-menu.active .dropdown.open .dropdown-menu {
        max-height: 300px;
    }

    .main-menu.active .dropdown-menu a {
        color         : rgba(255,255,255,0.75) !important;
        font-size     : 0.9rem !important;
        padding       : 12px 28px !important;
        text-align    : center !important;
        border-bottom : 1px solid rgba(255,255,255,0.05) !important;
        margin        : 0 !important;
        display       : block !important;
    }

    .main-menu.active .dropdown-menu a:hover {
        background: rgba(255,255,255,0.1) !important;
        color     : #0bbf8a !important;
    }

    /* Caret rotation when open */
    .main-menu.active .dropdown .dropbtn .fa-caret-down {
        transition: transform 0.3s ease;
        display   : inline-block;
    }

    .main-menu.active .dropdown.open .dropbtn .fa-caret-down {
        transform: rotate(180deg);
    }

    /* Search hidden on small screens — too cramped */
    .search-wrapper { display: none; }
}


/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
    width          : 100%;
    height         : 600px;
    background-size: cover;
    background-position: center;
    display        : flex;
    align-items    : center;
    padding-top    : 80px;
    background-repeat: no-repeat;
    position       : relative;
}

.hero::before {
    content : '';
    position: absolute;
    inset   : 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index : 1;
}

.hero-content {
    max-width: 1200px;
    margin   : 0 auto;
    width    : 100%;
    padding  : 0 20px;
    position : relative;
    z-index  : 2;
}

.hero-tag {
    display      : inline-block;
    background   : var(--brand-blue);
    color        : white;
    padding      : 4px 12px;
    font-size    : 0.75rem;
    font-weight  : 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    color         : white;
    font-size     : 4rem;
    font-weight   : 600;
    margin-bottom : 25px;
    letter-spacing: -1px;
}

.hero-description {
    border-left : 2px solid var(--brand-accent);
    padding-left: 25px;
    max-width   : 550px;
}

.hero-description p {
    color      : rgba(255,255,255,0.95);
    font-size  : 1.15rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero         { height: 420px; padding-top: 70px; }
    .hero h1      { font-size: 2.5rem; }
    .hero-description p { font-size: 1rem; }
}

@media (max-width: 480px) {
    .hero   { height: 360px; }
    .hero h1{ font-size: 2rem; letter-spacing: -0.5px; }
}


/* ================================================================
   FOOTER
   ================================================================ */
footer {
    background : #ffffff;
    color      : #334155;
    font-family: 'Plus Jakarta Sans', sans-serif;

    border-top : 1px solid #e5e7eb;
}

.footer-container {
    max-width: 1280px;
    margin   : 0 auto;
    padding  : 70px 6% 30px;
}

.footer-grid {
    display              : grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap                  : 48px;
}

.footer-brand .logo-wrap img { width: 120px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.95rem; line-height: 1.6; color: #475569; }

.footer h4 {
    font-size    : 0.95rem;
    font-weight  : 600;
    margin-bottom: 16px;
    color        : #0f172a;
}

.footer ul  { list-style: none; padding: 0; }
.footer li  { margin-bottom: 10px; }
.footer a {
    color          : #475569;
    font-size      : 0.9rem;
    text-decoration: none;
    border-bottom  : 1px solid transparent;
    transition     : all 0.2s ease;
}

.footer a:hover { color: #0f172a; border-bottom-color: #cbd5e1; }

.footer-social { display: flex; gap: 14px; margin-top: 18px; }

.footer-social a {
    width          : 38px; height: 38px;
    border-radius  : 50%;
    border         : 1px solid #e5e7eb;
    display        : flex;
    align-items    : center;
    justify-content: center;
    color          : #475569;
    transition     : all 0.3s;
}

.footer-social a:hover { background: #f8fafc; color: #098b64; }

.footer-bottom {
    border-top     : 1px solid #e5e7eb;
    margin-top     : 45px; padding-top: 20px;
    display        : flex;
    justify-content: space-between;
    font-size      : 0.8rem;
    color          : #64748b;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 520px) {
    .footer-grid    { grid-template-columns: 1fr; }
    .footer-bottom  { flex-direction: column; text-align: center; gap: 10px; }
    .footer-container{ padding: 40px 5% 24px; }
}


/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.whatsapp-float {
    position        : fixed;
    bottom          : 40px; left: 30px;
    background-color: #25d366;
    width           : 50px; height: 50px;
    border-radius   : 50%;
    display         : flex;
    align-items     : center;
    justify-content : center;
    z-index         : 100;
}