/* ==========================================================================
   D S ENTERPRISES — GLOBAL STYLESHEET
   Design tokens, reset, layout primitives, header/footer, shared components
   ========================================================================== */

:root {
  /* ---- Color tokens ---- */
  --navy-950: #071A33;
  --navy-900: #0B2545;
  --navy-700: #14315C;
  --navy-500: #3D6FB4;
  --steel-600: #5B6670;
  --steel-400: #9AA5AD;
  --steel-200: #C9D0D6;
  --steel-100: #E8EBEE;
  --cloud: #F6F8F9;
  --white: #FFFFFF;
  --ink: #1B2430;

  /* ---- Typography ---- */
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* ---- Spacing (Apple-like generous rhythm) ---- */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* ---- Shape / shadow ---- */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 45px -20px rgba(11, 37, 69, 0.25);
  --shadow-card: 0 10px 30px -12px rgba(11, 37, 69, 0.18);

  --header-h: 90px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--navy-950); }
p { margin: 0; }
svg { display: block; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 2.5px solid var(--navy-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--navy-900); color: var(--white); padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---- Layout primitives ---- */
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.site-header .container{
    max-width:100%;
    padding-left:0px;     /* Left se almost touch */
    padding-right:25px;
}
.container.narrow { max-width: 860px; }

.section { padding-block: var(--space-2xl); }
.section--tint { background: var(--cloud); }

.section__head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: var(--space-lg); }
.section__head--left { margin-inline: 0; text-align: left; }
.section__sub { margin-top: var(--space-sm); color: var(--steel-600); font-size: 1.05rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-sm);
}
.eyebrow--light { color: var(--steel-200); }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--navy-500);
  box-shadow: 0 0 0 4px rgba(61,111,180,0.25);
}

.h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.lede { font-size: 1.15rem; color: var(--ink); margin-block: var(--space-sm); }
.body-text { color: var(--steel-600); font-size: 1rem; margin-block: var(--space-sm); }

/* ---- Icons ---- */
.icon { width: 22px; height: 22px; stroke: currentColor; }
.icon--sm { width: 18px; height: 18px; }
.icon--xs { width: 15px; height: 15px; }

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
  background: var(--navy-950);
  color: var(--steel-200);
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 9px;
  gap: 1rem;
}
.topbar__item { display: flex; align-items: center; gap: 8px; }
.topbar__item .icon--xs { stroke: var(--steel-400); }
.topbar__item--right a { display: flex; align-items: center; gap: 8px; color: var(--white); font-weight: 500; }
.topbar__item--right a:hover { color: var(--navy-500); }
@media (max-width: 720px) { .topbar__item:not(.topbar__item--right) span { display: none; } }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:99999;
    background:#fff;
    border-bottom:1px solid #e5e5e5;
}
.site-header.is-scrolled { box-shadow: var(--shadow-card); }

.header__inner {
  display: flex; align-items: center; justify-content: flex-start;
  padding-block: 14px;
  gap: 1.5rem;
}

.brand { display: flex; align-items: center; gap: 12px; }
/* Desktop */
.brand__logo{
    width:110px;
    height:80px;
    object-fit:contain;
    border-radius:10px;
    transition:.3s;
}

/* Tablet */
@media (max-width: 992px) {
    .brand__logo {
        width: 70px;
        height: 70px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .brand__logo {
        width: 60px;
        height: 60px;
    }
}
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--navy-950); letter-spacing: 0.01em; }
.brand__tag { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; color: var(--steel-600); text-transform: uppercase; }

.nav__list { display: flex; gap: clamp(0.9rem, 1.6vw, 1.8rem); }
@media (min-width: 981px) {
  .nav { margin-left: auto; }
}
.nav__link {
  position: relative;
  font-size: 0.94rem; font-weight: 500; color: var(--ink);
  padding-block: 6px;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--navy-900); transition: width .25s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
/* =====================================================
   MOBILE MENU ACTIVE LINE REMOVE
===================================================== */

@media (max-width:980px){

    .nav__link::after{
        display:none;
    }

    .nav__link.is-active{
        color:var(--navy-900);
        font-weight:700;
    }

}
.nav__link.is-active { color: var(--navy-900); }

.header__actions { display: flex; align-items: center; gap: 10px; }

.nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; border: none; background: none; border-radius: 8px;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--navy-950); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width:980px){

.site-header{
    overflow:visible;
}

.nav{

    position:fixed;

    top:90px;

    left:0;

    width:100%;

    height:calc(100vh - 90px);

    background:#fff;

    transform:translateX(100%);

    transition:.35s;

    overflow-y:auto;

    padding:20px;

    z-index:9999;

}

.nav.is-open{

    transform:translateX(0);

}

.nav__list{

    display:flex;

    flex-direction:column;

    gap:0;

}

.nav__list li{

    width:100%;

}

.nav__link{

    display:block;

    width:100%;

    padding:16px 0;

    font-size:18px;

    border-bottom:1px solid #eee;

}

.nav__toggle{

    display:flex;

}

.header__actions .btn--icon{

    display:none;

}

.header__actions .btn--primary{

    padding:10px 16px;

}

}
@media (min-width: 981px) { .header__actions .btn--primary .btn__full { display: inline; } }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 12px 22px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--navy-900); color: var(--white); box-shadow: 0 10px 24px -10px rgba(11,37,69,0.55); }
.btn--primary:hover { background: var(--navy-700); }

.btn--ghost { background: transparent; color: var(--navy-900); border-color: var(--steel-200); }
.btn--ghost:hover { border-color: var(--navy-900); }

.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { border-color: var(--white); }

.btn--whatsapp-outline { background: transparent; color: #1B2430; border-color: #25D36655; }
.btn--whatsapp-outline:hover { border-color: #25D366; background: #25D36610; }

.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--icon { width: 42px; height: 42px; padding: 0; border-radius: 50%; }
.btn--icon .icon { width: 19px; height: 19px; }
.btn--call { background: var(--navy-900); color: var(--white); }
.btn--call:hover { background: var(--navy-700); }
.btn--whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn--whatsapp:hover { background: #1ebd58; }

@media (max-width: 560px) {
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .btn--lg { width: 100%; }
}

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.fab-stack {
  position: fixed; right: 20px; bottom: 22px; z-index: 90;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: var(--shadow-soft);
  transition: transform .2s var(--ease);
}
.fab:hover { transform: scale(1.08); }
.fab .icon { width: 24px; height: 24px; }
.fab--whatsapp { background: #25D366; }
.fab--call { background: var(--navy-900); }

/* ==========================================================================
   MODAL (Get Quote)
   ========================================================================== */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(7,26,51,0.55); backdrop-filter: blur(3px); }
.modal__panel {
  position: relative; z-index: 1; background: var(--white);
  max-width: 480px; width: calc(100% - 32px); margin: 6vh auto 0;
  border-radius: var(--radius-lg); padding: var(--space-lg) var(--space-md) var(--space-md);
  box-shadow: 0 30px 70px -20px rgba(7,26,51,0.4);
  max-height: 88vh; overflow-y: auto;
  animation: modalIn .3s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute; top: 16px; right: 18px; width: 34px; height: 34px; border-radius: 50%;
  border: none; background: var(--steel-100); font-size: 1.4rem; line-height: 1; color: var(--steel-600);
}
.modal__close:hover { background: var(--steel-200); }
.modal h3 { font-size: 1.4rem; margin-bottom: 6px; }
.modal__sub { color: var(--steel-600); margin-bottom: var(--space-md); }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form__row { margin-bottom: var(--space-sm); text-align: left; }
.form__row label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--navy-900); }
.form__row input, .form__row select, .form__row textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--steel-200); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.95rem; color: var(--ink); background: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form__row input:focus, .form__row select:focus, .form__row textarea:focus {
  border-color: var(--navy-500); box-shadow: 0 0 0 4px rgba(61,111,180,0.15); outline: none;
}
.form__row textarea { resize: vertical; }
.form__note { font-size: 0.78rem; color: var(--steel-400); margin-top: var(--space-xs); text-align: center; }
.form__success { margin-top: var(--space-sm); background: #E7F6EC; color: #1E7A3C; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.9rem; text-align: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-950); color: var(--steel-200); padding-top: var(--space-2xl); }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}
.brand--footer .brand__name { color: var(--white); }
.brand--footer .brand__tag { color: var(--steel-400); }
.footer__about { margin-top: var(--space-sm); font-size: 0.92rem; color: var(--steel-400); max-width: 320px; }
.footer__social { display: flex; gap: 10px; margin-top: var(--space-md); }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; color: var(--steel-200);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.footer__social a:hover { background: rgba(255,255,255,0.08); border-color: var(--navy-500); }

.footer__heading { font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: var(--space-sm); }
.footer__heading--spaced { margin-top: var(--space-md); }
.footer__list { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.footer__list a:hover { color: var(--white); }
.footer__list--hours li{
    display:flex;
    align-items:center;
    gap:15px;
}

.footer__list--hours li span:first-child{width:90px;min-width:90px;font-weight:600;}

.footer__list--hours li span:last-child{flex:1;text-align:left;}


.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding-block: var(--space-md); border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem; color: var(--steel-400);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ==========================
   Desktop
========================== */

/* Mobile Header
========================== */

@media (max-width:980px){

    .brand__text{

        display:flex;

        flex-direction:column;

        margin-left:10px;

        line-height:1.1;

        flex:1;

    }

    .brand__name{

        font-size:18px;

        font-weight:700;

        color:#0B2545;

    }

    .brand__tag{

        font-size:10px;

        letter-spacing:1px;

        color:#666;

    }

}

/* =====================================================
   PREMIUM MOBILE HEADER
===================================================== */

@media (max-width:980px){

.header__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 0;
    gap:1.5rem;
}

.brand__logo{

    width:58px;

    height:58px;

}

.header__actions{

    margin-left:auto;

    gap:12px;
    
}

/* Get Quote Hide */

.header__actions .btn--primary{

    display:none;

}


/* Burger */

.nav__toggle{

    display:flex;

    width:46px;

    height:46px;

    justify-content:center;

    align-items:center;

}

}

