/* ============================================
   INTERIOR DESIGN STUDIO – CUSTOM STYLESHEET
   Color ratio  : 70 % white · 25 % greige · 5 % red
   Typography   : FT Bureau (headings) · GT America (body)
   ============================================ */

/* ── LOCAL FONTS (public/fonts) ───────────── */
@font-face {
    font-family: "FT Bureau";
    src: url("../fonts/ft-bureau/FTBureau-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* GT America variable font (International) */
@font-face {
    font-family: "GT America";
    src: url("../fonts/gt-america/GT-America-Intl-VF_0.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "GT America";
    src: url("../fonts/gt-america/GT-America-Intl-VF-Italic-VF.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* ── ROOT VARIABLES ───────────────────────── */
:root {
    /* 5 % – Primary accent (CTA & key actions) */
    --primary-red:        #C0392B;      /* Alizarin crimson – 5.4 : 1 on white */
    --primary-red-dark:   #A93226;      /* Hover / active state               */
    --primary-red-light:  #E74C3C;      /* Subtle accent                      */

    /* 25 % – Secondary surfaces */
    --secondary-greige:       #F4F0EC;
    --secondary-greige-light: #F8F5F2;
    --secondary-greige-medium:#E0D6CC;
    --secondary-greige-dark:  #A18D7A;

    /* 70 % – Neutrals */
    --neutral-white: #FFFFFF;
    --neutral-light: #F7F7F7;
    --neutral-gray:  #555555;
    --neutral-dark:  #1A1A1A;

    /* Fonts */
    --font-heading: 'FT Bureau', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    --font-body:    'GT America', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    font-size: 16px;
}

/* ── BASE RESET ───────────────────────────── */
body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--neutral-dark);
    background-color: var(--neutral-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── CONTAINER WIDTH OVERRIDE ──────────────── */
/* Make container wider on desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px; /* Wider than Bootstrap's default 1320px */
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1600px; /* Even wider on larger screens */
    }
}

/* ── HEADINGS ─────────────────────────────── */
h1,.h1 { font-family:var(--font-heading); font-size:2.75rem; font-weight:700; line-height:1.15; letter-spacing:-0.02em; color:var(--neutral-dark); margin-bottom:1rem; }
h2,.h2 { font-family:var(--font-heading); font-size:2.15rem;  font-weight:700; line-height:1.2;  color:var(--neutral-dark); margin-bottom:.875rem; }
h3,.h3 { font-family:var(--font-heading); font-size:1.55rem;  font-weight:600; line-height:1.3;  color:var(--neutral-dark); margin-bottom:.75rem; }
h4,.h4 { font-family:var(--font-heading); font-size:1.25rem;  font-weight:600; line-height:1.35; margin-bottom:.625rem; }
h5,.h5 { font-family:var(--font-heading); font-size:1.1rem;   font-weight:600; line-height:1.4;  margin-bottom:.5rem; }
h6,.h6 { font-family:var(--font-heading); font-size:.95rem;   font-weight:600; line-height:1.5;  text-transform:uppercase; letter-spacing:1.5px; margin-bottom:.5rem; }

.display-1,.display-2,.display-3,.display-4,.display-5,.display-6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--neutral-dark);
}

/* ── BODY TEXT ─────────────────────────────── */
p { font-size:1rem; line-height:1.75; margin-bottom:1.2rem; color:var(--neutral-gray); }
.lead { font-family:var(--font-body); font-size:1.15rem; font-weight:400; line-height:1.75; color:var(--neutral-gray); }

/* ── BUTTONS (sans-serif) ─────────────────── */
.btn {
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .6px;
    padding: .75rem 1.75rem;
    border-radius: 2px;
    border-width: 2px;
    transition: all .3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

/* Primary – filled red */
.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--neutral-white);
    box-shadow: 0 2px 8px rgba(192,57,43,.2);
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-red-dark);
    border-color: var(--primary-red-dark);
    color: var(--neutral-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(192,57,43,.35);
}
.btn-primary:active { transform:translateY(0); }

/* Outline red */
.btn-outline-primary,
.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-red);
    color: var(--primary-red);
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--neutral-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192,57,43,.25);
}

.btn-lg { font-size:.9375rem; padding:.875rem 2.25rem; }
.btn-sm { font-size:.8125rem; padding:.45rem 1.1rem; }

/* ── NAVIGATION ───────────────────────────── */
.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--neutral-dark) !important;
}
.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--neutral-dark);
    padding: .5rem 1rem;
    transition: color .3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-red) !important;
}
@media(min-width:992px){ .navbar-nav.mx-auto{ flex-grow:1; justify-content:center; } }
@media(max-width:991px){
    .navbar-collapse{ margin-top:1rem; }
    .navbar-nav .nav-link{ padding:.75rem 1rem; border-bottom:1px solid var(--secondary-greige-medium); }
}
.navbar-toggler:focus { box-shadow:none; outline:2px solid var(--primary-red); }

/* ── CARDS ────────────────────────────────── */
.card {
    border: 1px solid var(--secondary-greige-medium);
    border-radius: 2px;
    background: var(--neutral-white);
    transition: box-shadow .35s ease, transform .35s ease;
}
.card:hover {
    box-shadow: 0 14px 32px rgba(0,0,0,.08);
    transform: translateY(-4px);
}
.card-title { font-family:var(--font-heading); font-size:1.2rem; font-weight:600; color:var(--neutral-dark); }
.card-text  { font-family:var(--font-body);    font-size:.9375rem; line-height:1.65; color:var(--neutral-gray); }

/* ── LINKS ────────────────────────────────── */
a { color:var(--primary-red); text-decoration:none; transition:color .3s ease; }
a:hover { color:var(--primary-red-dark); }

/* ── BREADCRUMBS ──────────────────────────── */
.breadcrumb { background:transparent; padding:1rem 0; font-size:.85rem; }
.breadcrumb-item+.breadcrumb-item::before { color:var(--neutral-gray); }
.breadcrumb-item.active { color:var(--primary-red); }

/* ── FORMS ────────────────────────────────── */
.form-label { font-family:var(--font-body); font-weight:600; font-size:.875rem; margin-bottom:.45rem; color:var(--neutral-dark); }
.form-control,.form-select { border:2px solid var(--secondary-greige-medium); border-radius:2px; padding:.7rem 1rem; transition:border-color .3s ease,box-shadow .3s ease; }
.form-control:focus,.form-select:focus { border-color:var(--primary-red); box-shadow:0 0 0 .2rem rgba(192,57,43,.12); }

/* ── UTILITY ──────────────────────────────── */
.text-primary { color:var(--primary-red) !important; }
.text-muted   { color:var(--neutral-gray) !important; }
.bg-primary   { background-color:var(--primary-red) !important; }
.bg-light     { background-color:var(--neutral-light) !important; }

.badge { font-family:var(--font-body); font-size:.7rem; font-weight:600; letter-spacing:.5px; padding:.35rem .65rem; }

/* ============================================
   HOMEPAGE – HERO FULL (Background Image + Glassy Card)
   ============================================ */
.ids-hero-full {
    position: relative;
    min-height: 75vh; /* 3/4 of screen on desktop */
    display: flex;
    align-items: center;
    overflow: hidden;
}
.ids-hero-full__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ids-hero-full__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    /* Subtle darkness to let frosted card stand out on colorful images */
    background: rgba(0, 0, 0, 0.22);
    pointer-events: none;
}
.ids-hero-full__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ids-hero-full__content {
    position: relative;
    z-index: 1;
    min-height: 75vh;
    display: flex;
    align-items: center; /* Vertically center on desktop */
}
.ids-hero-full__card {
    /* Glassy/Frost Effect */
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 3rem 2.5rem;
    max-width: 600px;
    border-radius: 0; /* No border radius */
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
}
.ids-hero-full__title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.ids-hero-full__lead {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.ids-hero-full__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.ids-hero-full__ctas .btn-primary {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}
.ids-hero-full__ctas .btn-outline-primary {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    backdrop-filter: blur(10px);
}
.ids-hero-full__ctas .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}
@media(max-width:991px){
    .ids-hero-full {
        min-height: 70vh;
    }
    .ids-hero-full__content {
        min-height: 70vh;
        justify-content: center; /* Center on mobile */
    }
    .ids-hero-full__card {
        max-width: 90%;
        padding: 2.5rem 2rem;
        text-align: center; /* Center text on mobile */
    }
}
@media(max-width:768px){
    .ids-hero-full {
        min-height: 60vh;
    }
    .ids-hero-full__content {
        min-height: 60vh;
    }
    .ids-hero-full__title {
        font-size: 2.25rem;
    }
    .ids-hero-full__lead {
        font-size: 1rem;
    }
    .ids-hero-full__ctas {
        flex-direction: column;
    }
    .ids-hero-full__ctas .btn {
        width: 100%;
    }
    .ids-hero-full__card {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   HOMEPAGE – CATEGORY GALLERY
   ============================================ */
.ids-gallery { padding:5rem 0; }
.ids-gallery__heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: .5rem;
    text-align: left; /* Left aligned */
}
.ids-gallery__sub {
    font-size: 1rem;
    color: var(--neutral-gray);
    margin-bottom: 2.5rem;
    text-align: left; /* Left aligned */
}

/* Category Card - Tall (First 3 - Double Height) */
.ids-cat-card-tall {
    display: block;
    text-decoration: none !important;
    transition: transform .3s ease;
}
.ids-cat-card-tall:hover {
    transform: translateY(-4px);
}
.ids-cat-card-tall__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 1rem;
    background: var(--neutral-light);
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transition: box-shadow .3s ease;
}
.ids-cat-card-tall:hover .ids-cat-card-tall__image-wrapper {
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.ids-cat-card-tall__image {
    width: 100%;
    aspect-ratio: 3/4; /* Tall aspect ratio - double height */
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.ids-cat-card-tall:hover .ids-cat-card-tall__image {
    transform: scale(1.08);
}
.ids-cat-card-tall__name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin: 0;
    line-height: 1.4;
    text-align: center;
    transition: color .3s ease;
}
.ids-cat-card-tall:hover .ids-cat-card-tall__name {
    color: var(--primary-red);
}

/* Category Card - Simple (Name Below Image) */
.ids-cat-card-simple {
    display: block;
    text-decoration: none !important;
    transition: transform .3s ease;
}
.ids-cat-card-simple:hover {
    transform: translateY(-4px);
}
.ids-cat-card-simple__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 1rem;
    background: var(--neutral-light);
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transition: box-shadow .3s ease;
}
.ids-cat-card-simple:hover .ids-cat-card-simple__image-wrapper {
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.ids-cat-card-simple__image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.ids-cat-card-simple:hover .ids-cat-card-simple__image {
    transform: scale(1.08);
}
.ids-cat-card-simple__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin: 0;
    line-height: 1.4;
    text-align: center;
    transition: color .3s ease;
}
.ids-cat-card-simple:hover .ids-cat-card-simple__name {
    color: var(--primary-red);
}
@media(max-width:768px){
    .ids-cat-card-tall__name { font-size:1.1rem; }
    .ids-cat-card-simple__name { font-size:.9rem; }
}

/* ============================================
   HOMEPAGE – STATS STRIP
   ============================================ */
.ids-stats {
    padding: 3.5rem 0;
    background: var(--secondary-greige);
    border-top: 1px solid var(--secondary-greige-medium);
    border-bottom: 1px solid var(--secondary-greige-medium);
}
.ids-stat__number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--neutral-dark);
    line-height: 1;
    margin-bottom: .35rem;
}
.ids-stat__label {
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--neutral-gray);
}

/* ============================================
   HOMEPAGE – ABOUT US SECTION
   ============================================ */
.ids-about {
    background: var(--secondary-greige-light);
    padding: 5rem 0;
}
.ids-about .row {
    min-height: 600px; /* Ensure minimum height for desktop */
}
.ids-about__content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.ids-about__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}
.ids-about__text {
    margin-bottom: 2.5rem;
}
.ids-about__text p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--neutral-gray);
    margin-bottom: 1.5rem;
}
.ids-about__text p:last-child {
    margin-bottom: 0;
}
.ids-about__cta {
    margin-top: auto;
}
.ids-about__image-wrapper {
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
    min-height: 400px;
}
.ids-about__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media(max-width:991px){
    .ids-about__content {
        padding: 4rem 2.5rem;
    }
    .ids-about__title {
        font-size: 2rem;
    }
    .ids-about__image-wrapper {
        min-height: 400px;
    }
}
@media(max-width:768px){
    .ids-about__content {
        padding: 3rem 2rem;
    }
    .ids-about__title {
        font-size: 1.75rem;
    }
    .ids-about__text p {
        font-size: 1rem;
    }
}

/* ============================================
   ABOUT PAGE – WHAT WE DO BOXES
   ============================================ */
.ids-what-we-do-box {
    min-height: 250px;
    display: flex;
    flex-direction: column;
}
.ids-what-we-do-box .row {
    flex: 1;
    min-height: 100%;
}
.ids-what-we-do-box .col-4[style*="padding: 0"] {
    display: flex;
    align-items: stretch;
    min-height: 100%;
}
.ids-what-we-do-box .col-4[style*="padding: 0"] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ids-what-we-do-box h3 {
    word-break: break-word;
}
@media(max-width:767.98px){
    .ids-what-we-do-box .row {
        flex-direction: column;
    }
    .ids-what-we-do-box .col-4 {
        width: 100% !important;
        max-width: 100% !important;
    }
    .ids-what-we-do-box .col-8 {
        width: 100% !important;
        max-width: 100% !important;
    }
    .ids-what-we-do-box .col-4[style*="padding: 0"] {
        min-height: 200px;
    }
}

/* ============================================
   HOMEPAGE – STATISTICS SECTION
   ============================================ */
.ids-stats-section {
    padding: 5rem 0;
    background: var(--neutral-white);
}
.ids-stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: transparent;
    border-radius: 2px;
    box-shadow: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ids-stat-card__number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 1rem;
}
.ids-stat-card__label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.ids-stat-card__description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--neutral-gray);
    line-height: 1.6;
    margin: 0;
}
@media(max-width:768px){
    .ids-stats-section {
        padding: 4rem 0;
    }
    .ids-stat-card {
        padding: 2.5rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    .ids-stat-card__number {
        font-size: 3rem;
    }
    .ids-stat-card__label {
        font-size: 1.25rem;
    }
}

/* ============================================
   HOMEPAGE – EDITORIAL / SEO BLOCK
   ============================================ */
.ids-editorial {
    padding: 5rem 0;
    background: var(--neutral-white);
}
.ids-editorial__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
}
.ids-editorial p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--neutral-gray);
}
.ids-choose-card {
    background: var(--neutral-white);
    border: 5px solid rgba(192, 57, 43, 0.2); /* Thick faint red border */
    border-radius: 2px;
    overflow: hidden;
}
.ids-choose-card__content {
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.ids-choose-card__image-wrapper {
    height: 100%;
    display: flex;
    align-items: stretch;
}
.ids-choose-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media(max-width:991.98px){
    .ids-choose-card__content {
        padding: 2.5rem 2rem;
    }
    .ids-choose-card__image-wrapper {
        min-height: 300px;
    }
}

/* ============================================
   HOMEPAGE – BLOG CARDS
   ============================================ */
.ids-blog-card {
    border: none;
    border-radius: 2px;
    overflow: hidden;
    background: var(--neutral-white);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: box-shadow .35s ease, transform .35s ease;
}
.ids-blog-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
    transform: translateY(-4px);
}
.ids-blog-card__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}
.ids-blog-card__body {
    padding: 1.5rem;
}
.ids-blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: .5rem;
    line-height: 1.35;
}

/* ============================================
   HOMEPAGE – CTA CARD SECTION
   ============================================ */
.ids-cta-card-section {
    padding: 5rem 0;
    background: var(--neutral-white);
}
.ids-cta-card {
    background: var(--secondary-greige-light);
    border: 2px solid rgba(192, 57, 43, 0.2); /* Faint red border */
    border-radius: 2px;
    padding: 4rem 3rem;
    text-align: center;
    width: 100%;
}
.ids-cta-card__title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}
.ids-cta-card__text {
    font-size: 1.05rem;
    color: var(--neutral-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.ids-cta-card__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.ids-cta-card__buttons .btn-outline-primary {
    background: transparent !important;
    border-color: var(--primary-red-light);
    border-width: 3px;
    color: var(--primary-red);
    padding: 0.875rem 2.25rem;
}
.ids-cta-card__buttons .btn-outline-primary:hover {
    background: var(--primary-red) !important;
    border-color: var(--primary-red);
    color: #fff;
}
@media(max-width:768px){
    .ids-cta-card {
        padding: 3rem 2rem;
    }
    .ids-cta-card__title {
        font-size: 1.75rem;
    }
    .ids-cta-card__buttons {
        flex-direction: column;
    }
    .ids-cta-card__buttons .btn {
        width: 100%;
    }
}

/* ============================================
   CATEGORY/SERVICE PAGE STYLES
   ============================================ */
.ids-category-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin: 0;
    line-height: 1.2;
}
.ids-category-above-fold {
    margin-top: 1.5rem;
}
.ids-category-above-fold__content {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--neutral-gray);
}
.ids-category-above-fold__content p {
    margin-bottom: 1rem;
}
.ids-category-above-fold__content p:last-child {
    margin-bottom: 0;
}
.ids-category-hero {
    padding: 0 0 3rem;
}
.ids-category-hero__image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
}
.ids-category-hero__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}
.ids-category-content {
    background: var(--neutral-white);
}
.ids-category-content__article {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--neutral-gray);
}
.ids-category-content__article h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}
.ids-category-content__article h2:first-child {
    margin-top: 0;
}
.ids-category-content__article h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.ids-category-content__article h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.ids-category-content__article p {
    margin-bottom: 1.5rem;
}
.ids-category-content__article ul,
.ids-category-content__article ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}
.ids-category-content__article li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}
.ids-category-content__article strong {
    color: var(--neutral-dark);
    font-weight: 600;
}
.ids-category-content__article a {
    color: var(--primary-red);
    text-decoration: underline;
}
.ids-category-content__article a:hover {
    color: var(--primary-red-dark);
}
@media(max-width:768px){
    .ids-category-title {
        font-size: 2.25rem;
    }
    .ids-category-hero__image {
        max-height: 400px;
    }
    .ids-category-content__article {
        font-size: 1rem;
    }
    .ids-category-content__article h2 {
        font-size: 1.75rem;
    }
    .ids-category-content__article h3 {
        font-size: 1.35rem;
    }
}

/* ============================================
   SERVICES PAGE – PILLAR PAGE STYLES
   ============================================ */
.ids-services-hero {
    padding: 4rem 0 3rem;
    background: var(--secondary-greige-light);
}
.ids-services-hero__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin: 0;
    line-height: 1.2;
    text-align: left;
}

/* Services Grid - Card Layout */
.ids-services-grid {
    background: var(--neutral-white);
}
.ids-services-grid__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
    text-align: left;
}
.ids-services-grid__lead {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--neutral-gray);
    margin-bottom: 0;
    text-align: left;
}
.ids-service-card {
    display: block;
    background: var(--neutral-white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: transform .3s ease, box-shadow .3s ease;
    text-decoration: none !important;
}
.ids-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    text-decoration: none;
}
.ids-service-card__image-wrapper {
    width: 100%;
    overflow: hidden;
    background: var(--neutral-light);
}
.ids-service-card__image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.ids-service-card:hover .ids-service-card__image {
    transform: scale(1.08);
}
.ids-service-card__footer {
    background: var(--secondary-greige-light);
    padding: 1.5rem;
    text-align: center;
}
.ids-service-card__name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin: 0;
    line-height: 1.4;
    transition: color .3s ease;
}
.ids-service-card:hover .ids-service-card__name {
    color: var(--primary-red);
}

/* Our Approach Section */
.ids-services-approach {
    background: var(--neutral-white);
}
.ids-services-approach__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    text-align: left;
    margin-bottom: 1rem;
}
.ids-services-approach__lead {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--neutral-gray);
    text-align: left;
    margin-bottom: 0;
}
.ids-approach-item {
    text-align: center;
    padding: 2rem 1.5rem;
}
.ids-approach-item__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--secondary-greige-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-red);
}
.ids-approach-item__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}
.ids-approach-item__text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-gray);
    margin: 0;
}

/* Service Areas Section */
.ids-services-areas {
    background: var(--secondary-greige-light);
}
.ids-services-areas__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    text-align: left;
    margin-bottom: 1rem;
}
.ids-services-areas__lead {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--neutral-gray);
    text-align: left;
    margin-bottom: 0;
}
.ids-service-type {
    background: var(--neutral-white);
    padding: 2.5rem;
    border-radius: 2px;
    height: 100%;
}
.ids-service-type__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}
.ids-service-type__text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--neutral-gray);
    margin-bottom: 1.5rem;
}
.ids-service-type__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ids-service-type__list li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--neutral-gray);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}
.ids-service-type__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 600;
}

/* Why Choose Us Section */
.ids-services-why {
    background: var(--neutral-white);
}
.ids-services-why__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    text-align: left;
    margin-bottom: 1rem;
}
.ids-services-why__lead {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--neutral-gray);
    text-align: left;
    margin-bottom: 0;
}
.ids-why-item {
    padding: 2rem 1rem;
}
.ids-why-item__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 1rem;
}
.ids-why-item__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 0.75rem;
}
.ids-why-item__text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--neutral-gray);
    margin: 0;
}

@media(max-width:768px){
    .ids-services-hero__title {
        font-size: 2.25rem;
    }
    .ids-service-card__image {
        height: 220px;
    }
    .ids-service-card__footer {
        padding: 1.25rem;
    }
    .ids-service-card__name {
        font-size: 1.1rem;
    }
    .ids-services-approach__title,
    .ids-services-areas__title,
    .ids-services-why__title {
        font-size: 2rem;
    }
    .ids-service-type {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */
.ids-blog-hero {
    padding: 4rem 0 3rem;
    background: var(--secondary-greige-light);
}
.ids-blog-hero__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
    text-align: left;
    line-height: 1.2;
}
.ids-blog-hero__lead {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--neutral-gray);
    text-align: left;
    max-width: 700px;
    margin: 0;
}

/* Blog Grid */
.ids-blog-grid {
    background: var(--neutral-white);
}
.ids-blog-card-link {
    display: block;
    text-decoration: none !important;
}
.ids-blog-card {
    background: var(--neutral-white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.ids-blog-card-link:hover .ids-blog-card {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.ids-blog-card__image-wrapper {
    width: 100%;
    overflow: hidden;
    background: var(--neutral-light);
}
.ids-blog-card__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.ids-blog-card-link:hover .ids-blog-card__image {
    transform: scale(1.08);
}
.ids-blog-card__body {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.ids-blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
    line-height: 1.35;
}
.ids-blog-card__excerpt {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--neutral-gray);
    margin-bottom: 1rem;
    flex-grow: 1;
}
.ids-blog-card__cta {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color .3s ease;
}
.ids-blog-card-link:hover .ids-blog-card__cta {
    color: var(--primary-red-dark);
}

/* Blog Empty State */
.ids-blog-empty {
    background: var(--neutral-white);
}
.ids-blog-empty__icon {
    font-size: 4rem;
    color: var(--secondary-greige-medium);
    margin-bottom: 1.5rem;
}
.ids-blog-empty__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}
.ids-blog-empty__text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--neutral-gray);
}

/* Blog Topics Section */
.ids-blog-topics {
    background: var(--secondary-greige-light);
}
.ids-blog-topics__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    text-align: left;
    margin-bottom: 1rem;
}
.ids-blog-topics__lead {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--neutral-gray);
    text-align: left;
    margin-bottom: 0;
}
.ids-topic-card {
    background: var(--neutral-white);
    padding: 2.5rem 2rem;
    border-radius: 2px;
    text-align: center;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.ids-topic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.ids-topic-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--secondary-greige-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-red);
}
.ids-topic-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}
.ids-topic-card__text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--neutral-gray);
    margin: 0;
}

/* Blog Pagination */
.ids-blog-pagination .pagination {
    justify-content: center;
}
.ids-blog-pagination .page-link {
    border-radius: 2px;
    border-color: var(--secondary-greige-medium);
    color: var(--neutral-dark);
    padding: 0.75rem 1rem;
}
.ids-blog-pagination .page-link:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}
.ids-blog-pagination .page-item.active .page-link {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}

@media(max-width:768px){
    .ids-blog-hero__title {
        font-size: 2.25rem;
    }
    .ids-blog-card__image {
        height: 200px;
    }
    .ids-blog-card__body {
        padding: 1.5rem;
    }
    .ids-blog-card__title {
        font-size: 1.15rem;
    }
    .ids-blog-topics__title {
        font-size: 2rem;
    }
    .ids-topic-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   FOOTER - Dark Black Background (80% Black)
   ============================================ */
footer {
    background-color: rgba(0, 0, 0, 0.8); /* 80% black */
    padding: 3rem 0 1rem;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff; /* High contrast white */
}
.footer-text {
    color: rgba(255, 255, 255, 0.9); /* High contrast light text */
    line-height: 1.7;
}
.footer-link {
    color: rgba(255, 255, 255, 0.85); /* High contrast light text for links */
    transition: color .3s ease;
}
.footer-link:hover {
    color: #ffffff; /* Pure white on hover */
    text-decoration: none;
}
.footer-icon {
    color: var(--primary-red-light); /* Light red for icons */
}
footer .border-top {
    border-top-color: rgba(255, 255, 255, 0.15) !important;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    transition: transform .3s ease;
}
.whatsapp-float:hover { transform:scale(1.1); }
.whatsapp-float i { font-size:30px; color:#fff; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:768px){
    :root { font-size:15px; }
    h1,.h1 { font-size:2rem; }
    h2,.h2 { font-size:1.7rem; }
    h3,.h3 { font-size:1.35rem; }
    .ids-gallery__heading { font-size:1.8rem; }
    .ids-cat-card__name   { font-size:1.1rem; }
}
@media(max-width:576px){
    :root { font-size:14px; }
    h1,.h1 { font-size:1.75rem; }
    h2,.h2 { font-size:1.5rem; }
}

/* ============================================
   HOMEPAGE - UTILITY CLASSES FOR INLINE STYLES
   ============================================ */

/* Section Backgrounds */
.ids-section-bg-greige {
    padding: 5rem 0;
    background: var(--secondary-greige-light);
}
.ids-section-bg-white {
    padding: 5rem 0;
    background: var(--neutral-white);
}
.ids-section-bg-white-only {
    background-color: var(--neutral-white);
}

/* Typography - Headings */
.ids-heading-primary {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--neutral-dark);
}
.ids-heading-secondary {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--neutral-dark);
}

/* Typography - H2 with spacing */
.ids-h2-primary {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-dark);
}
.ids-h2-primary-large {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-dark);
}

/* Typography - H3 with spacing */
.ids-h3-primary {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--neutral-dark);
}
.ids-h3-secondary {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neutral-dark);
}

/* Typography - Lead paragraphs */
.ids-lead-centered {
    max-width: 560px;
    margin: 0 auto;
}
.ids-lead-centered-small {
    max-width: 520px;
    margin: 0 auto;
}

/* Lists */
.ids-list-spaced {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

/* Paragraphs */
.ids-p-spaced {
    margin-top: 2rem;
}
