:root {
    --red: rgb(196, 19, 0);
    --red-lt: rgb(250, 116, 101);
    --red-dk: #970f00;

    --ocean: #0097A7;
    --teal: #00BCD4;
    --aqua: #00E5FF;
    --seafoam: #1DE9B6;
    --coral: #FF6B4A;
    --deep: #003D47;
    --midnight: #001E26;
    --card: #012830;
    --card-hover: #023540;
    --white: #FFFFFF;
    --muted: #7FB3BB;
    --muted-dim: #4A7B82;
    --border: rgba(0, 188, 212, 0.18);
    --border-strong: rgba(0, 188, 212, 0.35);
    --gold: #F0A500;
    --gold-lt: #FBB724;
    --max: 1240px;
    --nav-height: 84px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    --gray-100: #EEF0F4;
    --gray-300: #C4C9D4;
    --gray-500: #8892A2;
    --gray-700: #4A5568;
    --gray-900: #2D3748;

    --navy: #0D1B2A;
    --navy-mid: #1A2E45;
    --navy-soft: #243B55;
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --gray-100: #EEF0F4;
    --gray-300: #C4C9D4;
    --gray-500: #8892A2;
    --gray-700: #4A5568;
    --text: #1A2333;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(13, 27, 42, 0.10);
    --shadow-lg: 0 16px 48px rgba(13, 27, 42, 0.16);

    --transition: 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    /* height: 300vh; */
    scroll-behavior: smooth
}

.hidden {
    display: none !important;
    transition: 0.5s;
}



.navbar {
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 0px);
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

/* .logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    text-decoration: none;
} */


.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #C41300;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #222;
    transition: 0.3s;
}





.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}


.logo-svg {
    width: 30px;
    height: 30px;
    margin-right: 8px;
    fill: #C41300;

}

.logo-text {
    font-size: 1.2rem;
    font-weight: 750;
    color: #222;
    text-decoration: none;
    text-align: left;
    vertical-align: middle;
    letter-spacing: -1.5px
}


/* ─── Mobile sticky bottom bar ──────────────────────────────── */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 210;
    /* background:rgba(0,20,28,.0);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-top:1px solid var(--border-strong); */
    padding: .7rem;
    gap: .7rem;
}

.mobile-sticky a {
    flex: 1;
    padding: .85rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

/* .mobile-sticky .ms-call{
  background:rgba(0,188,212,.15);
  color:var(--aqua);
  border:1px solid var(--border-strong);
} */
.mobile-sticky .ms-report {
    background: linear-gradient(135deg, var(--red-dk), var(--red-lt));
    color: #fff;
    /* box-shadow:0 4px 14px rgba(255,107,74,.4); */
}



.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}


.panel {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3rem;
}


.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red-lt);
    margin-bottom: 16px;
}

.heading-display {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    color: var(--navy);
}

.heading-xl {

    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.15;
    color: var(--navy);
}

.heading-lg {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.2;
    color: var(--navy);
}

.body-lg {
    font-size: 18px;
    line-height: 1.65;
    color: var(--gray-700);
    font-weight: 400;
}

.body-md {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-700);
}



/* =============================================
       BLOG PREVIEW
       ============================================= */
.blog {
    background: var(--gray-100);
    padding: 120px 20px;
    
}

.blog__container {
display: block;
    max-width: 760px;
    margin: 0px auto;    
}
.blog__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}

.blog__grid {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 24px;
}

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

/* .card_open{
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-500) 100%);
} */

.blog-card.card_open{
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-500) 100%);
}

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

.blog-card__thumb {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-500) 100%);
    aspect-ratio: 16/9;
    display: flex;

    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;


}


.blog-card__thumb img {

    width: 100%;
    height: auto;
    object-fit: fill;
}

.blog-card__thumb--sm {
    aspect-ratio: 16/8;
    font-size: 32px;
    display: flex;

    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
    transition: 0.5s;

}


.blog-card__thumb--sm.open {
      aspect-ratio: 16/2;
    transition: 0.5s;
  
}

.blog-card__body {
    padding: 24px;
}

.blog-card__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250, 116, 101, 1);
    margin-bottom: 10px;
}

.blog-card__title {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 10px;
    cursor: pointer;
}

.blog-card__title--sm {
    font-size: 14px;
}

.blog-card__excerpt {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
    cursor: pointer;
}

.blog-card__content {
    font-size: 13px;
    color: var(--gray-900);
    line-height: 1.6;
    transform: translateY(-100%);
    display: none;
    /* Step 1: Set transition behavior */
    transition-behavior: allow-discrete;
    /* Make sure to set display as transition property value */
    transition-property: transform, opacity, display;
    transition-duration: 500ms;
    opacity: 0%;
}


.blog-card__content.open {
  transform: translateY(0%);
  opacity: 100%;
  display: block;
}

@starting-style {
  .blog-card__content.open {
    transform: translateY(-100%);
      opacity: 0%;
    /* Don't set display none agian here */
  }
}



.blog-card__meta {
    font-size: 12px;
    color: var(--gray-300);
    margin-top: 16px;
}

.blog__case-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 10px;
    /* padding: 15px 18px;  */
    background: rgba(250, 116, 101, 0.15);
    ;
    /* background: linear-gradient(135deg, var(--red-dk), var(--red-lt)); */
    border: 0px solid rgba(250, 116, 101, 1);
    color: var(--red-lt);
    font-size: 12px;
    font-weight: 400;
    border-radius: 16px;
    text-decoration: none;

    width: 100%;
    height: 32px;
    text-align: center;

    cursor: pointer;
    transition: 0.5s;
    transition: background var(--transition);
}

.blog__case-btn:hover {
    background: rgba(250, 116, 101, 0.5);
    background: var(--red);
    transition: 0.5s;
    color: var(--white);
}


/* =============================================
       FOOTER
       ============================================= */
    .footer {
      background: var(--gray-900);
      padding: 64px 0 32px;
    }
    .footer__inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer__logo-text {
      font-family: 'DM Serif Display', serif;
      font-size: 22px;
      color: var(--white);
      margin-bottom: 12px;
    }
    .footer__desc {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .footer__col-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-bottom: 16px;
    }
    .footer__links li { margin-bottom: 10px; list-style: none;}
    .footer__links a {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      transition: color var(--transition);
    }
    .footer__links a:hover { color: var(--red-lt); }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: rgba(255,255,255,0.3);
    }
    .footer__legal { display: flex; gap: 24px; }
    .footer__legal a { color: rgba(255,255,255,0.3); }
    .footer__legal a:hover { color: var(--gold); }




/* Mobile Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .scroll-indicator {
        bottom: 20%;
    }

    .nav-links {
        max-height: 0;
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        /* border-radius: 0 0 16px 16px; */
        transition: max-height 0.4s ease;
    }

    .nav-links li {
        border-top: 1px solid rgba(196, 19, 0, 0.25);
    }

    .nav-links a {
        display: block;
        padding: 18px 24px;
    }

    .nav-links.active {
        max-height: 400px;
    }

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

    .blog__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }


    .mobile-sticky {
        display: flex;
    }


            .footer__inner { grid-template-columns: 1fr 1fr; }
      .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }


}