/* =========================
   ROOT COLORS
========================= */
:root {
    --teal: #88d3cf;
    --gold: #b8aa78;
}

/* =========================
   HEADER
========================= */
.sds-header {
    background: #fff;
}
.container{
    max-width: 1200px !important;
}
/* =========================
   LOGO
========================= */
.logo {
    max-width: 200px;
}

/* =========================
   CTA BUTTONS
========================= */
.cta-group {
    display: flex;
    background: var(--teal);
    border-radius: 30px;
    overflow: hidden;
}
.cta-group #left:hover{
    background-color: #b7ab81;
  color: #ffffff;
}
.cta-group #right:hover{
    background-color: #b7ab81;
  color: #ffffff;
}


.cta-btn {
    padding: 14px 30px;
    color: #3F6167;
    font-weight: 300;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    
}

.cta-btn.left {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}
@media(max-width:992px){
    .cta-group{
       display: block;
    }
}
/* =========================
   PHONE
========================= */

.phone-top{
    display: block;
}
.phone-box span {
    font-size: 14px;
    display: block;
    text-align: left;
}

.phone-box a {
    font-size: 22px;
    font-weight: 600;
    color: #5a7f82;
    text-decoration: none;
    
}
@media(max-width:992px){
    .phone-box{
        display: none !important;
    }
    #phone{
        display: none !important;
    }
}
/* =========================
   MOBILE HEADER FIX
========================= */
@media (max-width: 991.98px) {

    /* Stack header items vertically */
    .sds-header .row {
        flex-direction: column;
        align-items: stretch;
    }

    /* Logo first */
    .sds-header .col-md-6 {
        order: 1;
        text-align: center;
    }

    /* CTA buttons come below logo */
    .sds-header .col-md-12 {
        order: 2;
        display: flex !important;
        justify-content: center;
        background-color: #e3fffd;
        padding: 15px 0;
    }

    /* Make CTA buttons full width & stacked nicely */
    .cta-group {
        display: flex;
         flex-direction: row;   /* ← key change */
        width: 90%;
        max-width: 360px;
    }

    .cta-btn {
          justify-content: center;
        flex: 1; 
        
    }

    .cta-btn.left {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/* =========================
   NAVBAR
========================= */
.sds-nav {
    background: var(--teal);
    position: relative;
}

.navbar-nav .nav-link {
    color: #fff !important;
    padding: 18px 16px;
    font-size: 15px;
 font-family: 'Sweet Sans Pro', sans-serif !important;
.navbar-nav .nav-link:hover{
    color: #3F6167 !important;
}


/* =========================
   SIMPLE DROPDOWN (DESKTOP)
========================= */
@media (min-width: 992px) {
    .navbar .dropdown-menu.simple-dropdown {
        background: var(--teal);
        border: none;
        border-radius: 0;
        min-width: 240px;
    }

    .simple-dropdown a {
        color: #fff;
        padding: 10px 20px;
        display: block;
        text-decoration: none;
    }

    .simple-dropdown a:hover {
        background: rgba(255,255,255,0.15);
    }
}

/* =========================
   MEGA MENU (DESKTOP)
========================= */
@media (min-width: 992px) {

    .navbar .dropdown.mega {
        position: static;
    }

    .navbar .dropdown.mega .dropdown-menu {
        width: 100vw;
        left: 0;
        right: 0;
        top: 100%;
        margin-top: 0;
        border: none;
        border-radius: 0;
        background: var(--teal);
        padding: 40px 60px;
    }

    .mega-menu .row {
        display: flex;
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .mega-menu .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .mega-menu h6 {
        background: var(--gold);
        color: #fff;
        padding: 8px 12px;
        font-size: 13px;
        margin-bottom: 10px;
        border-radius: 4px;
    }

    .mega-menu a {
        display: block;
        color: #fff;
        padding: 6px 0;
        font-size: 14px;
        text-decoration: none;
    }

    .mega-menu a:hover {
        text-decoration: underline;
    }
}

/* =========================
   MOBILE DROPDOWNS
========================= */
@media (max-width: 991px) {

    .dropdown-menu {
        position: static !important;
        width: 100%;
        background: var(--teal);
        border: none;
        padding: 0;
    }

    .dropdown-menu a {
        padding: 12px 20px;
        color: #fff;
        text-decoration: none;
    }

    /* remove mega grid */
    .mega-menu .row {
        display: block;
    }

    .mega-menu .col-md-3 {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .mega-menu h6 {
        margin: 10px 20px;
    }
    #finance-btn {
        display: none;
    }
}

/* =========================
   FINANCE BUTTON
========================= */
#finance-btn {
    background: #b7ab81;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    height: 28px;
    padding: 3px 15px 20px;
    margin-top: 18px;
    outline: 2px solid white;
}
#finance-btn:hover{
    color: #3F6167 !important;
    outline: none !important;
}
#finance{
    background-color: var(--gold);
    border-radius: 20px;
    height: 20px;
    width: 100px;
    padding: 15px 10px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    outline: 2px solid white;
    
}
#finance:hover{
    color: #3F6167 !important;
    outline: none !important;
}
/* =========================================
   FORCE MEGA MENU → SIMPLE LIST (MOBILE)
========================================= */
@media (max-width: 991px) {

    .navbar .dropdown-menu.mega-menu {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        position: static !important;
        background: var(--teal);
    }

    .navbar .mega-menu .row {
        display: block !important;
        margin: 0 !important;
    }

    .navbar .mega-menu [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding: 0 !important;
    }

    .navbar .mega-menu h6 {
        margin: 16px 16px 8px;
        padding-bottom: 6px;
        background: none !important;
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        border-bottom: 1px solid rgba(255,255,255,0.35);
    }

    .navbar .mega-menu a {
        display: block !important;
        padding: 10px 16px !important;
        font-size: 15px;
        color: #ffffff !important;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .navbar .mega-menu a:last-of-type {
        border-bottom: none;
    }
}

/* =========================
   HIDE PHONE ON MOBILE
========================= */
@media (max-width: 767px) {
    .phone-box {
        display: none;
    }
}
#menu nav ul li {
    display: inline-block !important;
}

#menu nav ul li a {
    display: block !important;
}

.megamenu .dropdown-menu {
    background:#20c99700 !important;
}