/* Gunjan Beauty World — Services Page
   FINAL RESPONSIVE CSS — Home Page system + same responsive footer */

:root {
    --ivory: #F4EEE7;
    --paper: #F8F7F5;
    --gold: #CFA57A;
    --gold2: #D5AD84;
    --ink: #111;
    --muted: rgba(102, 102, 102, .8);
    --espresso: #2A2019;
    --ease: cubic-bezier(.16, 1, .3, 1);
    --font-display: "Urbanist", sans-serif;
    --font-body: "outfit", sans-serif;
    --container-max: 1440px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    overflow-x: clip
}

html,
body {
    min-width: 320px
}

body {
    font-family: "Urbanist", sans-serif;
    background: var(--ivory);
    color: var(--ink);
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit
}

button,
input,
textarea,
select {
    font: inherit
}

button {
    cursor: pointer
}

button,
a {
    -webkit-tap-highlight-color: transparent
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px
}

.container {
    width: min(var(--container-max), calc(100% - 64px));
    margin-inline: auto
}

.section {
    position: relative
}

.eyebrow {
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500
}

.section-title {
    font-family: "Urbanist", sans-serif;
    font-size: 48px;
    line-height: 56px;
    font-weight: 600;
    text-transform: uppercase;
    overflow-wrap: anywhere
}

.section-copy {
    font-family: "outfit", sans-serif;
    font-weight: 300;
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 26px;
    color: var(--muted);
    max-width: 700px
}

/* NAV */
.hero-nav {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 24px;
    padding: 16px clamp(20px, 4vw, 56px);
    background: linear-gradient(180deg, rgba(15, 10, 6, .55), rgba(15, 10, 6, 0));
    transition: background-color .25s ease, padding .25s ease
}

.hero-logo {
    grid-column: 1;
    justify-self: start
}

.hero-nav.scrolled {
    position: fixed;
    background: rgba(30, 22, 16, .86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding-block: 14px
}

.hero-logo img {
    width: auto;
    height: clamp(42px, 4vw, 54px);
    max-width: 150px;
    object-fit: contain
}

.hero-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 1.6vw, 22px);
    grid-column: 2;
    justify-self: center
}

.hero-links a {
    font-family: "Urbanist", sans-serif;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ivory);
    position: relative;
    white-space: nowrap
}

.hero-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: #E4C793;
    transition: width .3s var(--ease)
}

.hero-links a:hover::after,
.hero-links .active::after {
    width: 100%
}

.hero-right {
    display: flex;
    align-items: center;
    gap: 24px;
    grid-column: 3;
    justify-self: end
}

.hero-login {
    font-family: "outfit", sans-serif;
    font-size:16px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: -2%;
    text-decoration: none;
    color: var(--ivory);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding-bottom: 0px;
    white-space: nowrap
}

.hero-login::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #E4C793;
    transition: width .3s var(--ease)
}

.hero-login:hover::after {
    width: 100%
}

.hero-login:hover {
    color: #E4C793
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 12px 24px;
    border: 0;
    border-radius: 10px;
    background: var(--gold);
    color: var(--paper);
    text-decoration: none;
    font-family: "outfit", sans-serif;
    font-weight: 300;
    font-size: 17px;
    transition: background-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease)
}

.hero-cta:hover {
    background: var(--gold2);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .25)
}

.hero-toggle {
    display: none;
    border: 0;
    background: rgba(0, 0, 0, .2);
    border-radius: 8px;
    padding: 9px;
    gap: 5px;
    flex-direction: column
}

.hero-toggle span {
    width: 23px;
    height: 1px;
    background: var(--ivory)
}

.hero-menu {
    display: none
}

/* BANNER */
.page-banner {
    position: relative;
    min-height: clamp(420px,42vw,600px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #17110c;
    color: var(--ivory)
}

.page-banner-media {
    position: absolute;
    inset: 0
}

.page-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%
}

.page-banner-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 10, 6, .62) 0%, rgba(15, 10, 6, .42) 50%, rgba(12, 8, 5, .72) 100%)
}

.page-banner .container {
    position: relative;
    z-index: 2
}

.page-banner-eyebrow {
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--ivory);
    text-transform: uppercase;
    margin-bottom: 16px
}

.page-banner h1 {
    max-width: 1100px;
    font-family: "Urbanist", sans-serif;
    font-size: clamp(34px, 6.2vw, 56px);
    line-height: 64px;
    font-weight: 600;
    text-transform: uppercase
}

/* SERVICES */
.services-page {
    background: var(--paper);
    padding: clamp(64px, 8vw, 110px) 0;
    overflow: hidden
}

.services-page-head {
    max-width: 1240px;
    margin: 0 auto clamp(36px, 5vw, 52px);
    text-align: center
}

.services-page-head .section-copy {
    margin: 16px auto 0
}

.cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: rgba(207, 165, 122, .20);
    border: 1px solid rgba(207, 165, 122, .2);
    border-radius: 18px;
    padding: 11px;
    margin-bottom: clamp(24px, 3vw, 32px);
    overflow: hidden
}

.cat-tab {
    flex: 1 1 0;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--gold);
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.2;
    padding: 14px 20px;
    border-radius: 10px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background .35s var(--ease), color .35s var(--ease), transform .3s var(--ease)
}

.cat-tab:hover {
    transform: translateY(-2px)
}

.cat-tab.active {
    background: var(--gold);
    color: var(--ivory)
}

.services-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start
}

.services-body.with-subcats {
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr)
}

.subcat-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(207, 165, 122, .20);
    border: 1px solid rgba(207, 165, 122, .2);
    border-radius: 18px;
    padding: 10px;
    min-width: 0
}

.subcat-tab {
    border: 0;
    background: transparent;
    color: var(--gold);
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    padding: 14px 16px;
    border-radius: 12px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .01em;
    white-space: nowrap;
    transition: background .35s var(--ease), color .35s var(--ease)
}

.subcat-tab.active {
    background: var(--gold);
    color: var(--ivory)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 20px;
    min-width: 0
}

.service-card {
    min-width: 0;
    background: rgba(207, 165, 122, .20);
    border: 1px solid rgba(207, 165, 122, .2);
    border-radius: 18px;
    padding: 11px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .6s var(--ease), box-shadow .6s var(--ease)
}

.service-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 24px 55px rgba(42, 31, 20, .14)
}

.service-media {
    position: relative;
    width: 100%;
    aspect-ratio: 369/246;
    border-radius: 10px;
    overflow: hidden;
    background: #e9e2d8
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease)
}

.service-card:hover .service-media img {
    transform: scale(1.06)
}

.badges {
    position: absolute;
    inset: 12px 12px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    pointer-events: none
}

.badge {
    max-width: calc(50% - 4px);
    font-family: "outfit", sans-serif;
    font-weight: 600;
    font-size: 09px;
    letter-spacing: .08em;
    padding: 5px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    overflow-wrap: anywhere
}

.badge.cat {
    background: var(--gold);
    color: var(--ivory)
}

.badge.pop {
    background: var(--ivory);
    color: #111
}

.badge.dur {
    position: absolute;
    right: 12px;
    top: 40px;
    max-width: 70%;
    background: rgba(248, 247, 245, .82);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #111
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0 10px;
    min-width: 0
}

.service-title {
    min-width: 0;
    font-family: "Urbanist", sans-serif;
    font-size: clamp(18px, 1.6vw, 20px);
    font-weight: 600;
    margin-bottom: 4px;
    overflow-wrap: anywhere
}

.price-wrap {
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: right
}

.price {
    font-family: "outfit", sans-serif;
    color: var(--gold);
    font-size: 16px;
    font-weight: 600
}

.old-price {
    font-family: "outfit", sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: var(--muted);
    text-decoration: line-through;
    margin-right: 5px
}

.service-desc {
    font-family: "outfit", sans-serif;
    font-weight: 300;
    color: var(--muted);
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 06px;
    overflow-wrap: anywhere
}

.service-book {
    width: 100%;
    min-height: 44px;
    margin-top: auto;
    border: 0;
    background: var(--gold);
    color: var(--ivory);
    padding: 12px;
    border-radius: 12px;
    font-family: "outfit", sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
    transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease)
}

.service-book:hover {
    background: #b8895c;
    transform: translateY(-2px)
}

.services-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 48px 20px;
    color: var(--muted);
    font-family: "outfit", sans-serif;
    font-weight: 400;
    font-size: 16px
}

/* FOOTER — same responsive structure as Home */
.footer{
  background:#D1A77D;
  color:var(--ivory);
  padding:clamp(56px,6vw,72px) 0 30px;
}

.footer-top{
  display:flex;

  justify-content:space-between;
  align-items:flex-start;

  flex-wrap:wrap;

  gap:40px;

  padding-bottom:48px;
}

.footer-brand{
  flex:0 1 300px;
  min-width:0;
}

.footer-links{
  display:flex;
  justify-content:flex-end;
  flex:1;
  flex-wrap:wrap;

  gap:clamp(25px,4vw,55px);

  min-width:0;
}

.footer-col{
  min-width:130px;
}

.footer-contact{
  max-width:230px;
}

.footer-brand img{
  width:120px;
  height:auto;
  filter:none;
}

.footer-brand p{
  font-family:"Urbanist", sans-serif;
  font-weight:600;

  margin-top:12px;

  font-size:16px;
  line-height:22px;

  max-width:250px;

  color:rgba(244,238,231,.9);
}

.footer-socials{
  display:flex;
  gap:8px;
  margin-top:48px;
}

.footer-socials a{
  text-decoration:none;

  background-color:rgba(244,238,231,.2);

  padding:12px;

  border-radius:12px;
}

.footer-socials img{
  width:20px;
  height:auto;
}

.footer-col h4{
  font-family:"Urbanist", sans-serif;
  font-size:18px;
  font-weight:600;
  margin-bottom:12px;
}

.footer-col a{
  font-family:"outfit", sans-serif;
  font-weight:400;

  display:block;

  text-decoration:none;

  font-size:16px;
  line-height:28px;

  color:rgba(244,238,231,.9);

  transition:
    transform .3s,
    color .3s;
}

.footer-col a:hover{
  transform:translateX(5px);
  color:#fff;
}

.footer-contact p{
  font-family:"outfit", sans-serif;
  font-size:16px;
  line-height:28px;
  margin-bottom:6px;
}

.footer-divider{
  height:1px;
  background:rgba(244,238,231,.2);
}

.footer-bottom{
  display:flex;

  justify-content:space-between;
  align-items:center;

  gap:20px;

  padding-top:22px;

  font-family:"outfit", sans-serif;
  font-size:16px;
}

.back-top{
  border:0;
  background:none;

  color:var(--ivory);

  cursor:pointer;

  font:inherit;

  display:flex;

  gap:8px;

  align-items:center;

  transition:transform .25s ease;
}

.back-top:hover{
  transform:translateY(-2px);
}

/* 1200 */
@media(max-width:1200px) {
    .hero-nav {
        padding-inline: 32px
    }

    .hero-links {
        gap: 14px
    }

    .hero-right {
        gap: 16px
    }

    .hero-cta {
        padding-inline: 18px;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0px;
    }
    
    .page-banner {
    position: relative;
    min-height: 500px;
    }

    .page-banner h1 {
    font-size: 48px;
    line-height: 56px;
    }
    
    .section-title{
    font-size: 48px
    }

    .services-body.with-subcats {
        grid-template-columns: 220px minmax(0, 1fr)
    }
    
    .services-page-head .section-copy{
    margin: 14px auto 0;
    }

    .services-grid {
        gap: 16px
    }

    .service-card {
        padding: 10px
    }

    .service-meta {
        gap: 10px
    }

    .footer-top {
        gap: 45px
    }

    .footer-links {
        gap: 28px
    }
}

/* 1000 */
@media(max-width:1000px) {

    .hero-links,
    .hero-right {
        display: none
    }

    .hero-nav {
        display: flex;
        justify-content: space-between
    }

    .hero-toggle {
        display: flex
    }

    .hero-menu {
        position: fixed;
        inset: 0;
        z-index: 30;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        padding: 80px 24px;
        background: var(--espresso);
        transform: translateY(-100%);
        transition: transform .5s var(--ease);
        overflow-y: auto
    }

    .hero-menu.open {
        transform: none
    }

    .hero-menu a {
        color: var(--ivory);
        text-decoration: none;
        font-family: var(--font-display);
        font-size: clamp(25px, 6vw, 32px);
        line-height: 1.15;
        text-align: center
    }

    .hero-menu .close {
        position: absolute;
        top: 22px;
        right: 24px;
        width: 44px;
        height: 44px;
        border: 0;
        background: none;
        color: var(--ivory);
        font-size: 34px
    }
    
    .page-banner-eyebrow{
    font-size:15px;
    }
    
    .page-banner h1 {
    font-size: 48px;
    line-height: 56px;
    }

    .section-title{
    font-size:40px
    }
    
    .section-copy{
    font-size: 16px;
    }

    .services-page-head .section-copy{
    margin: 8px auto 0;
    }

    .services-page {
        padding-block: 76px
    }

    .cat-tabs {
        gap: 8px
    }

    .cat-tab {
        padding: 13px 16px
    }

    .services-body.with-subcats {
        grid-template-columns: 1fr
    }

    .subcat-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch
    }

    .subcat-tabs::-webkit-scrollbar {
        display: none
    }

    .subcat-tab {
        flex: 1 1 auto;
        min-width: max-content
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px
    }

    .footer-links{
    display:flex;
    justify-content:flex-start;
    flex:1;
    flex-wrap:nowrap;
    gap:24px;
  }

  .footer-contact{
    flex-basis:100%;
    max-width:none;
  }
}

/* 900 */
@media(max-width:900px) {

    .page-banner {
        min-height: 450px
    }
    
    .page-banner h1 {
    font-size: 40px;
    line-height: 48px;
    }

    .services-page-head {
        max-width: 720px
    }

    .services-grid {
        gap: 16px
    }

    .service-title {
        font-size: 18px
    }
    
    .footer-col {
    min-width: 90px;
    }
}

/* 680 */
@media(max-width:680px) {
    .container {
        width: calc(100% - 48px)
    }

    .hero-nav {
        padding: 12px 16px
    }

    .hero-logo img {
        height: 46px;
        max-width: 125px
    }

    .hero-toggle {
        padding: 8px
    }

    .hero-menu {
        padding: 80px 24px
    }

    .page-banner {
        min-height: 400px
    }

    .page-banner-media img {
        object-position: center center
    }

    .page-banner-scrim {
        background: linear-gradient(180deg, rgba(15, 10, 6, .68), rgba(15, 10, 6, .48) 48%, rgba(12, 8, 5, .78))
    }

    .page-banner .container {
        padding-top: 48px
    }

    .page-banner-eyebrow {
        font-size: 14px;
        margin-bottom: 12px
    }

    .page-banner h1 {
        font-size: 36px;
        line-height: 44px;
    }
    
    .section-title{
    font-size:32px
    }
    
    .section-copy{
    font-size:16px
    }
    
    .services-page {
        padding-block: 64px
    }

    .services-page-head {
        margin-bottom: 34px
    }

    .section-title {
        font-size: 32px;
        line-height: 38px;
    }

    .section-copy {
        font-size: 16px;
        line-height: 25px
    }

    .cat-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 8px;
        padding: 8px;
        border-radius: 14px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch
    }

    .cat-tabs::-webkit-scrollbar {
        display: none
    }

    .cat-tab {
        flex: 0 0 auto;
        min-width: max-content;
        padding: 12px 16px;
        font-size: 14px
    }

    .subcat-tabs {
        gap: 7px;
        padding: 8px;
        border-radius: 14px
    }

    .subcat-tab {
        padding: 12px 14px;
        font-size: 13px
    }

    .services-body {
        gap: 16px
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .service-card {
        border-radius: 16px;
        padding: 10px
    }

    .service-media {
        aspect-ratio: 16/10;
        border-radius: 9px
    }

    .badges {
        inset: 10px 10px auto
    }

    .badge {
        font-size: 9px;
        padding: 5px 7px
    }

    .badge.dur {
        top: 36px
    }

    .service-meta {
        padding: 14px 0 9px;
        gap: 12px
    }

    .service-title {
        font-size: 18px;
        line-height: 1.22
    }

    .price {
        font-size: 15px
    }

    .old-price {
        font-size: 9px
    }

    .service-desc {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 06px
    }

    .service-book {
        min-height: 44px;
        padding: 12px;
        font-size: 15px
    }

    /* FOOTER */
  .footer{
    padding-top:56px;
  }

  .footer-top{
    flex-direction:column;
    gap:35px;
    padding-bottom: 32px;
  }

  .footer-brand{
    flex-basis:auto;
  }
  
  .footer-col {
    min-width: 120px;
}

  .footer-links{
    width:100%;
    justify-content:flex-start;
    gap:20px;
  }

  .footer-contact{
    flex-basis:100%;
    max-width:none;
  }

  .footer-socials{
    margin-top:30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction:row;
    gap: 12px;
    font-size: 14px;
    padding-top: 24px;
  }
  
  .back-top{
    min-height:14px;
  }
}

/* 480 */
@media(max-width:480px) {

    .page-banner {
        min-height: 350px
    }

    .page-banner h1 {
        font-size:  32px;
        line-height: 38px;
    }
    
    .section-title{
    font-size: 24px;
    line-height: 32px;
    }
    
    .section-copy{
    font-size:15.5px;
    line-height:22px;
    }
    
    .services-page-head .section-copy {
    margin: 6px auto 0;
    }
    .services-page{
        padding-block: 56px
    }

    .services-page-head {
        margin-bottom: 30px
    }

    .cat-tabs {
        padding: 7px
    }

    .cat-tab {
        padding: 11px 14px;
        font-size: 13px
    }

    .subcat-tab {
        padding: 11px 13px;
        font-size: 12px
    }

    .services-grid {
        gap: 14px
    }

    .service-card {
        padding: 9px;
        border-radius: 15px
    }

    .service-media {
        aspect-ratio: 16/10
    }

    .service-title {
        font-size: 16px
    }

    .service-desc {
        font-size: 13px
    }

    .service-book {
        font-size: 16px
    }

    .footer-links{
    flex-direction:column;
    gap:24px;
  }

  .footer-col{
    min-width:0;
}
 .footer-brand p{
    font-size: 15px;
    line-height: 21px;
    max-width: 200px;
  }
  
  .footer-col a{
    font-size:16px;
    line-height:26px;
  }
  
  .footer-contact p{
    font-size:16px;
    line-height: 22px;
  }

  .footer-bottom {
    text-align: center;    
    align-items: center;
    flex-direction:column;
    gap: 8px;
    font-size: 15px;
  }
  
  .back-top{
    min-height:14px;
  }
}

/* 380 */
@media(max-width:380px){

    .container,
    .footer .container {
        width: calc(100% - 32px)
    }

    .hero-nav {
        padding-inline: 12px
    }

    .hero-logo img {
        height: 42px;
        max-width: 112px
    }

    .hero-menu a {
        font-size: 25px
    }

    .page-banner {
        min-height: 380px
    }

    .page-banner h1 {
        font-size: 30px
    }

    .section-title{
    font-size: 24px;
    line-height: 32px;
    }
    
    .section-copy{
    font-size:15px;
    line-height:22px;
    }
    
    .services-page-head .section-copy{
    margin: 6px auto 0;
    }
    .cat-tab {
        padding: 10px 12px;
        font-size: 12px;
    }

    .subcat-tab {
        padding: 10px 12px;
        font-size: 11px;
    }

    .service-card {
        padding: 8px
    }

    .service-media {
        border-radius: 8px
    }

    .service-meta {
        gap: 8px;
        padding-top: 12px
    }

    .service-title {
        font-size: 16px
    }

    .price {
        font-size: 14px
    }

    .service-desc {
        font-size: 13px
    }

    .footer{
    padding-top:48px;
  }

  .footer-brand img{
    width:110px;
  }
  
  .footer-socials{
    margin-top: 24px;
  }
  
  .footer-socials img{
    width:20px;
  }

  .footer-brand p{
    font-size: 15px;
    line-height: 21px;
    max-width: 200px;
  }
  
  .footer-col a{
    font-size:16px;
    line-height:26px;
  }
  
  .footer-contact p{
    font-size:16px;
    line-height: 22px;
  }

  .footer-bottom{
    font-size:14px;
  }
}

/* Touch */
@media(hover:none) and (pointer:coarse) {

    .cat-tab:hover,
    .service-card:hover,
    .service-book:hover,
    .hero-cta:hover,
    .footer-socials a:hover,
    .footer-col a:hover,
    .back-top:hover {
        transform: none
    }

    .service-card:hover {
        box-shadow: none
    }

    .service-card:hover .service-media img {
        transform: none
    }

    .hero-cta:hover {
        box-shadow: none
    }
}

/* Reduced motion */
@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }
}