/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #142c4c;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
}
   :root{
    --navy-deep: #071633;
    --navy: #0c1f47;
    --navy-mid: #12305f;
    --steel: #35507e;
    --blue-accent: #1f6fe0;
    --blue-accent-dark: #1857b3;
    --white: #ffffff;
    --off-white: #dbe4f2;
    --line: rgba(255,255,255,0.28);
  }

  *{ box-sizing: border-box; margin:0; padding:0; }

  html,body{
    width:100%;
    overflow-x:hidden;
  }
 

  

 .first-section .hero{
    position:relative;
    display:flex;
    align-items:center;
    min-height: 560px;
    background:
      linear-gradient(115deg, var(--navy-deep) 0%, var(--navy) 42%, var(--navy-mid) 68%, var(--steel) 100%);
    overflow:hidden;
    padding: 48px clamp(20px, 5vw, 64px);
    gap: clamp(16px, 3vw, 48px);
  }

  /* decorative diagonal panels + brushed-metal streak, mimicking the source banner */
 .first-section .hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
      linear-gradient(100deg, transparent 0 55%, rgba(255,255,255,0.05) 55% 58%, transparent 58% 100%),
      linear-gradient(100deg, transparent 0 62%, rgba(255,255,255,0.10) 62% 66%, transparent 66% 100%);
    pointer-events:none;
  }

 .first-section .hero::after{
    content:"";
    position:absolute;
    top:0; right:0; bottom:0;
    width: 55%;
    background:
      repeating-linear-gradient(
        100deg,
        rgba(255,255,255,0.05) 0px,
        rgba(255,255,255,0.05) 2px,
        transparent 2px,
        transparent 6px
      );
    opacity:0.5;
    mask-image: linear-gradient(90deg, transparent, black 30%, black 100%);
    pointer-events:none;
  }

 .first-section .content{
    position:relative;
    z-index:2;
    flex: 1 1 480px;
    max-width: 620px;
  }

 .first-section .eyebrow{
    font-size: clamp(0.7rem, 1.1vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--off-white);
    margin-bottom: 10px;
  }

 .first-section h1{
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.01em;
    font-size: clamp(2.2rem, 6vw, 4rem);
    text-transform: uppercase;
    color: var(--white);
  }

  .first-section h1 .accent{
    color: var(--blue-accent);
    display:block;
  }

  .first-section .subhead{
    margin-top: 18px;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 600;
    color: var(--white);
  }

  .first-section .desc{
    margin-top: 12px;
    max-width: 46ch;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.55;
    color: var(--off-white);
  }

  .first-section .cta-row{
    display:flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
  }

  .first-section .btn{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration:none;
    cursor:pointer;
    border: 2px solid transparent;
    transition: transform 0.15s ease, background 0.15s ease;
  }

        .first-section .btn svg{ width:18px; height:18px; flex-shrink:0; }

 .first-section .btn-primary{
    background: var(--blue-accent);
    color: var(--white);
  }
 .first-section .btn-primary:hover{ background: var(--blue-accent-dark); transform: translateY(-1px); }

 .first-section .btn-outline{
    background: transparent;
    border-color: var(--white);
    color: var(--white);
  }
  .first-section .btn-outline:hover{ background: rgba(255,255,255,0.1); transform: translateY(-1px); }

 .first-section .features{
    display:flex;
    gap: clamp(18px, 3vw, 40px);
    margin-top: 40px;
    flex-wrap: wrap;
  }

 .first-section .feature{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    width: 96px;
  }

 .first-section .feature-icon{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--line);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom: 10px;
    flex-shrink:0;
  }

  .first-section .feature-icon svg{
    width: 24px;
    height: 24px;
    stroke: var(--white);
  }
 
  .first-section .feature span{
    font-size: 0.78rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--off-white);
  }

  .first-section .media{
    position:relative;
    z-index:2;
    flex: 1 1 420px;
    max-width: 620px;
    display:flex;
    justify-content:center;
    align-items:center;
  }

  .first-section .media img{
    width:100%;
    height:auto;
    max-height: 480px;
    object-fit: contain;
    display:block;
    filter: drop-shadow(0 25px 35px rgba(0,0,0,0.45));
  }

  /* ---------- Responsive ---------- */

  @media (max-width: 900px){
    .first-section .hero{
      flex-direction: column;
      text-align:center;
      padding-top: 40px;
    }
    .first-section .content{ flex: none; width: 100%; max-width: 100%; }
    .first-section .desc{ margin-left:auto; margin-right:auto; }
    .first-section .cta-row{ justify-content:center; }
    .first-section .features{ justify-content:center; }
    .first-section .media{ order: -1; flex: none; width: 100%; max-width: 380px; }
  }

  @media (max-width: 480px){
    .first-section .cta-row{ flex-direction:column; align-items:stretch; }
    .first-section .btn{ justify-content:center; }
    .features{ gap: 14px; }
    .feature{ width: 80px; }
    .feature-icon{ width: 48px; height:48px; }
  } 


/* =========================================
   HEADER
========================================= */

.site-header {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 9999;
}


/* =========================================
   TOP BAR
========================================= */

.top-bar { 
    border-bottom: 1px solid #dddddd;
    background: #ffffff;
}

.top-container {
    max-width: 1400px; 
    margin: 0px auto !important;
    padding: 0 2px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Social */

.social-area {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    font-weight: 600;
    white-space: nowrap;
}

.social-area span {
    color: #333333;
}

.social-area a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    transition: 0.3s ease;
}

.social-area a:first-of-type {
    color: #e4405f;
}

.social-area a:last-of-type {
    color: #1877f2;
}

.social-area a:hover {
    transform: translateY(-2px);
}


/* Contact */

.contact-area {
    display: flex;
    align-items: center;
    gap: 65px;
}

.contact-area a {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 18px;
    font-weight: 600;

    color: #333333;
    transition: 0.3s ease;
}

.contact-area i {
    color: #1769c2;
    font-size: 22px;
}

.contact-area a:hover {
    color: #1769c2;
}


/* Quote Button */

.quote-btn {
    height: 72px;
    padding: 0 34px;

    background: #1769c2;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 16px;
    font-weight: 700;

    transition: 0.3s ease;
}

.quote-btn:hover {
    background: #0d4f98;
}

.quote-btn i {
    font-size: 20px;
}


/* =========================================
   MAIN NAV
========================================= */

.main-nav {
    background: #ffffff;
}

.nav-container {
    max-width: 1400px; 
    margin: auto;  
    padding: 5px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   LOGO
========================================= */

.logo-link{
    display: flex; 
    text-transform:uppercase; 
    gap: 10px;
    /* width: 30%; */
}

.logo {
    width: 90px;
    display: block;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}
.logo-link h3{
    font-size: 35px;
    font-weight:bolder;
    color: #001d43;
    text-align: center;
}
.logo-link h4{
    font-size: 18px;
    font-weight: 700;
    color: #2b3156; 
    text-align: center;
}
.logo-link p{
    font-size: 12px;
    color: #626777;
}


/* =========================================
   
========================================= */

.navigation {
    display: flex;
    align-items: center;
    /* width: 75%; */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap:30px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    height: 70px;

    display: flex;
    align-items: center;

    font-size: 18px;
    font-weight: 800;

    color: #101d32;
    white-space: nowrap;

    transition: 0.3s ease;
}


/* Active */

.nav-item.active > a {
    color: #1769c2;
}


/* Hover */

.nav-item > a:hover {
    color: #1769c2;
}


/* Home underline */

.nav-item.active > a::after {
    content: "";

    position: absolute;
    bottom: 4px;
    left: 0;

    width: 68px;
    height: 3px;

    background: #1769c2;
}


/* =========================================
   DROPDOWN
========================================= */

.dropdown-toggle {
    gap: 9px;
}

.dropdown-toggle i {
    font-size: 11px;
    transition: 0.3s ease;
}


/* Dropdown Box */

.dropdown-menu {
    position: absolute;

    top: calc(100% + 4px);
    left: 50%;

    width: 285px;

    transform: translateX(-50%) translateY(15px);

    background: #ffffff;

    border-top: 3px solid #1769c2;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;

    z-index: 1000;
}


/* Desktop hover */

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}


/* Dropdown Items */

.dropdown-menu li {
    border-bottom: 1px solid #eeeeee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    min-height: 52px;

    padding: 12px 18px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #1a2940;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.dropdown-menu a i {
    color: #1769c2;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #1769c2;
    color: #ffffff;
    padding-left: 23px;
}

.dropdown-menu a:hover i {
    color: #ffffff;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    border: none;
    background: #1769c2;

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 23px;
    height: 2px;
    background: #ffffff;

    transition: 0.3s ease;
}


/* =========================================
   DEMO CONTENT
========================================= */

.demo-section {
    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;

    background: #f6f9fc;
}

.demo-section h1 {
    font-size: 45px;
    margin-bottom: 15px;
}

.demo-section p {
    font-size: 20px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1250px) {
 .logo {
    width: 60px;
    display: block;
}
 
.logo-link h3{
    font-size: 15px; 
    text-align: left;
    margin-top: 5px;
}
.logo-link h4{
    font-size: 12px;
    font-weight: 500; 
    text-align: left;

}
.logo-link p{
    font-size: 8px; 
    text-align: left;

}
    .top-container {
        padding: 0 20px;
    }

    .contact-area {
        gap: 25px;
    }

    .contact-area a {
        font-size: 15px;
    }

    .quote-btn {
        padding: 0 22px;
    }

    .nav-container {
        min-height: 150px;
    }

  

    .nav-menu {
        gap: 25px;
    }

    .nav-item > a {
        font-size: 15px;
    }

}


/* =========================================
   TABLET / SMALL LAPTOP
========================================= */

@media (max-width: 1050px) {
    
    .logo {
    width: 60px;
    display: block;
}
 
.logo-link h3{
    font-size: 16px; 
    text-align: left;
    margin-top: 5px;
}
.logo-link h4{
    font-size: 12px;
    font-weight: 500; 
    text-align: left;

}
.logo-link p{
    font-size: 8px; 
    text-align: left;

}


    .top-bar {
        height: auto;
    }

    .top-container {
        min-height: 65px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .social-area {
        font-size: 14px;
    }

    .contact-area {
        gap: 15px;
    }

    .contact-area a {
        font-size: 13px;
    }

    .quote-btn {
        height: 55px;
        font-size: 13px;
        padding: 0 18px;
    }

    .nav-container {
        min-height: 120px;
    }

    

    .nav-menu {
        gap: 18px;
    }

    .nav-item > a {
        font-size: 13px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {

     .logo {
    width: 60px;
    display: block;
}
 
.logo-link h3{
    font-size: 15px; 
    text-align: left;
    margin-top: 5px;
}
.logo-link h4{
    font-size: 12px;
    font-weight: 500; 
    text-align: left;

}
.logo-link p{
    font-size: 8px; 
    text-align: left;

}

    /* TOP BAR */



    .top-container {
        padding: 10px 18px;
        justify-content: center;
    }

    .social-area {
        order: 1;
    }

    .contact-area {
        order: 2;
        width: 100%;
        justify-content: center;
    }

    .contact-area a {
        font-size: 12px;
    }

    .contact-area a span {
        display: inline;
    }

    .quote-btn {
        order: 3;
        height: 45px;
        padding: 0 18px;
    }


    /* MAIN NAV */

    .nav-container {
        min-height: 90px;
        padding: 12px 18px;
    }

    

    /* Hamburger */

    .menu-toggle {
        display: flex;
    }


    /* Navigation */

    .navigation {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #ffffff;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

        display: none;
    }

    .navigation.active {
        display: block;
    }

    .nav-menu {
        width: 100%;

        display: block;
    }

    .nav-item {
        border-bottom: 1px solid #eeeeee;
    }

    .nav-item > a {
        height: 55px;

        padding: 0 20px;

        font-size: 15px;
    }

    .nav-item.active > a::after {
        display: none;
    }


    /* Mobile Dropdown */

    .dropdown-menu {
        position: relative;

        width: 100%;

        transform: none;

        display: none;

        opacity: 1;
        visibility: visible;

        border-top: none;

        box-shadow: none;

        background: #f7f9fc;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown.open .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding-left: 40px;
        font-size: 13px;
    }

    .dropdown-menu a:hover {
        padding-left: 45px;
    }
   

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 550px) {

    .top-container {
        padding: 8px 12px;
    }

    .social-area {
        gap: 8px;
    }

    .social-area span {
        font-size: 13px;
    }

    .social-area a {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .contact-area {
        flex-direction: column;
        gap: 5px;
    }

    .contact-area a {
        font-size: 12px;
    }

    .contact-area i {
        font-size: 15px;
    }

    .quote-btn {
        width: 100%;
        height: 42px;
    }

    .nav-container {
        min-height: 75px;
    }

    .logo {
        width: 230px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

.logo-link{
    display: flex; 
    text-transform:uppercase; 
    gap: 10px;
    /* width: 30%; */
}

.logo {
    width: 40px;
    display: block;
}
 
.logo-link h3{
    font-size: 12px; 
    text-align: left;
    margin-top: 5px;
}
.logo-link h4{
    font-size: 8px;
    font-weight: 500; 
    text-align: left;

}
.logo-link p{
    font-size: 6px; 
    text-align: left;

}
}

:root{
    --navy: #142a63;
    --navy-dark: #0e1f4d;
    --blue: #1d4fc4;
    --blue-dark: #16399a;
    --text-body: #4a5468;
    --border: #e6e8ef;
    --bg: #ffffff;
  }

  
  /* body{
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--navy-dark);
  } */

  .second-section .machines{
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px 72px;
  }

 .second-section .machines-head{
    text-align:center;
    margin-bottom: 40px;
  }

 .second-section .machines-head h2{
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.01em;
  }

  .second-section.machines-head p{
    margin-top: 10px;
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: var(--text-body);
    font-weight: 500;
  }

  .second-section .grid{
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
  }

  .second-section .card{
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 20px 24px;
    display:flex;
    flex-direction:column;
    flex: 0 0 calc((100% - 44px) / 3);
    max-width: calc((100% - 44px) / 3);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }

    .second-section .card:hover{
    box-shadow: 0 12px 28px rgba(20,42,99,0.12);
    transform: translateY(-3px);
  }

  .second-section .card-photo{
    width:100%;
    position: relative;
    padding-top: 91.9%; /* maintains the 310:285 photo ratio */
    margin-bottom: 18px;
  }

     .second-section .card-photo img{
    position:absolute;
    top:0; left:0;
    width:100%;
    height:100%;
    object-fit: contain;
  }

  .second-section .card h3{
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .second-section .card p{
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-body);
    flex-grow:1;
    margin-bottom: 20px;
  }

     .second-section .btn-details{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background: var(--blue);
    color:#fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 13px 20px;
    border-radius: 6px;
    text-decoration:none;
    border:none;
    cursor:pointer;
    transition: background 0.15s ease;
    align-self:flex-start;
  }

  .second-section .btn-details:hover{ background: var(--blue-dark); }

 .second-section .view-all-wrap{
    display:flex;
    justify-content:center;
    margin-top: 44px;
  }

  .second-section .btn-view-all{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    background: var(--navy-dark);
    color:#fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 15px 30px;
    border-radius: 999px;
    text-decoration:none;
    border:none;
    cursor:pointer;
    transition: background 0.15s ease, transform 0.15s ease;
  }

  .second-section .btn-view-all:hover{ background:#000; transform: translateY(-1px); }

  .second-section .btn-view-all svg{ width:16px; height:16px; }

  /* ---------- Responsive ---------- */

  @media (max-width: 860px){
    .second-section .card{
      flex: 0 0 calc((100% - 22px) / 2);
      max-width: calc((100% - 22px) / 2);
    }
  }

  @media (max-width: 540px){
    .second-section .card{ flex: 0 0 100%; max-width: 100%; }
    .second-section .machines{ padding: 48px 18px 56px; }
    .second-section .card{ text-align:center; }
    .second-section .btn-details{ align-self:center; }
  }


 .third-section .why{
    max-width: 1200px;
    margin: 0 auto; 
  }

  .third-section .why-head{
    margin-bottom: 44px;
  }

 .third-section  .why-head h2{
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    color: var(--navy);
  }

  .third-section .underline{
    margin-top: 10px;
    display:flex;
    align-items:center;
    gap: 8px;
  }

 .third-section  .underline .bar{
    width: 130px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
  }

 .third-section  .underline svg{
    width: 18px;
    height: 18px;
    stroke: var(--blue);
    flex-shrink:0;
  }

 .third-section  .grid{
    display:flex;
    flex-wrap:wrap;
  }

 .third-section  .item{
    flex: 0 0 32.3333%;
    max-width: 30.3333%;
    padding: 0 30px 34px 0;
    border-right: 1px dashed var(--dash);
    border-bottom: 1px dashed var(--dash);
  }

 .third-section  .item:nth-child(3n){
    border-right: none;
  }

 .third-section  .item:nth-last-child(-n+3){
    border-bottom: none;
  }

 .third-section  .item{
    padding-top: 30px;
    padding-left: 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: 10px;
  }

 .third-section  .item{
    padding-left: 30px;
  }

 .third-section  .icon{
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

 .third-section  .icon svg{
    width: 100%;
    height: 100%;
  }

  .third-section  .item h3{
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 10px;
  }

 .third-section  .item p{
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-body);
    max-width: 30ch;
  }

  /* ---------- Responsive ---------- */

  @media (max-width: 860px){
   .third-section  .item{
      flex: 0 0 50%;
      max-width: 50%;
    }
   .third-section .item:nth-child(3n){ border-right: 1px dashed var(--dash); }
    .third-section .item:nth-child(2n){ border-right: none; }
    .third-section .item:nth-last-child(-n+3){ border-bottom: 1px dashed var(--dash); }
    .third-section .item:nth-last-child(-n+2){ border-bottom: none; } 
  }

  @media (max-width: 560px){
    .third-section .item{
      flex: 0 0 100%;
      max-width: 100%;
      border-right: none !important; 
      border-bottom: 1px dashed var(--dash) !important;
    }
    .third-section .item:last-child{ border-bottom: none !important; }
    .third-section .why{ padding: 48px 20px 56px; }
    .third-section .underline .bar{ width: 90px; }
  }

   :root{
    --bg: #0834a4;
    --bg-2: #142a63ed;
    --text: #eef3f1;
    --text-dim: #b7c7c3;
    --accent: #ffffff;
    --line: rgba(255,255,255,0.35);
  }

  
  .footer{
    position:relative;
    background:
      radial-gradient(circle at 15% 10%, rgba(255,255,255,0.05), transparent 40%),
      linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 100%);
    padding: 56px 40px 48px;
    overflow:hidden;
  }

 .footer .footer-grid{
    max-width: 1400px;
    margin: 0 auto;
    display:flex;
    flex-wrap:wrap;
    gap: 40px;
  }

  .footer .col{
    flex: 1 1 220px;
  }

  /* ---- About column ---- */
  .footer .col-about{
    flex: 1 1 320px;
    max-width: 420px;
  }

  .footer .logo-box{
    background:#fff;
    display:inline-block;
    padding: 14px 18px;
    border-radius: 4px;
    margin-bottom: 22px;
  }

 .footer .logo-box img{
    display:block;
    height: 62px;
    width:auto;
  }

  .footer .col-about p{
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 22px;
  }

  .footer .contact-line{
    display:flex;
    align-items:center;
    gap: 14px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 1rem;
  }

 .footer .contact-line svg{
    width: 20px;
    height: 20px;
    flex-shrink:0;
    stroke: var(--text);
  }

  .footer .contact-line a{
    color: var(--text);
    text-decoration:none;
  }

  .footer .socials{
    display:flex;
    gap: 16px;
    margin-top: 26px;
  }

  .footer .socials a{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--text);
    text-decoration:none;
  }

  .footer .socials svg{ width:18px; height:18px; fill: var(--text); }

  /* ---- Heading + underline ---- */
  .footer .col h4{
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #fff;
  }

  .footer .col h4 .rule{
    display:block;
    width: 56px;
    height: 2px;
    background: var(--line);
    margin-top: 12px;
  }

  /* ---- Useful links ---- */
  .footer .links{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap: 16px;
    margin-top: 28px;
  }

  .footer .links a{
    display:flex;
    align-items:center;
    gap: 12px;
    color: var(--text);
    text-decoration:none;
    font-size: 1.02rem;
    font-weight: 500;
  }

  .footer .links svg{ width:16px; height:16px; flex-shrink:0; stroke: var(--text); }

  /* ---- Location ---- */
  .footer .location{
    margin-top: 28px;
  }

  .footer .location .unit-label{
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .footer .location address{
    font-style:normal;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 26px;
  }

  /* ---- Map ---- */
  .footer .col-map{
    flex: 1 1 300px;
    max-width: 420px;
  }

  .footer .map-frame{
    margin-top: 28px;
    border-radius: 6px;
    overflow:hidden;
    border: 1px solid rgba(255,255,255,0.15);
    aspect-ratio: 4 / 3;
    background:#e8eaed;
  }

  .footer .map-frame iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
  }

  /* ---------- Responsive ---------- */

  @media (max-width: 1100px){
    .footer .footer-grid{ gap: 36px 30px; }
    .footer .col{ flex: 1 1 45%; }
    .footer .col-about{ flex: 1 1 100%; max-width: 100%; }
    .footer .col-map{ flex: 1 1 45%; }
  }

  @media (max-width: 640px){
    .footer{ padding: 44px 22px 36px; text-align:left; }
    .footer .footer-grid{ flex-direction:column; gap: 40px; }
    .footer .col, .footer .col-about, .footer .col-map{ flex: 0 0 auto; width: 100%; max-width: 100%; }
  }