/* ============================================
   INTELLIGENT DESIGN - Main Stylesheet
   Clean, minimal, light design
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Questrial', 'Montserrat', sans-serif;
    color: #111111;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.7; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 400; line-height: 1.2; }

/* === CONTAINER === */
.id-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === HEADER === */
.id-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
    transition: box-shadow 0.3s;
}
.id-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.id-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.id-logo img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}
.id-nav-list {
    display: flex;
    gap: 0;
    align-items: center;
}
.id-nav-list > li {
    position: relative;
}
.id-nav-list > li > a {
    display: block;
    padding: 24px 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: color 0.3s;
}
.id-nav-list > li > a:hover {
    opacity: 1;
    color: #888;
}
/* Dropdown */
.has-dropdown:hover .id-dropdown {
    display: block;
}
.id-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 100;
}
.id-dropdown li a {
    display: block;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid #f5f5f5;
}
.id-dropdown li:last-child a { border-bottom: none; }
.id-dropdown li a:hover { background: #f9f9f9; opacity: 1; }

/* Mobile toggle */
.id-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.id-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111;
    transition: 0.3s;
}

/* Side nav */
.id-side-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
}
.id-side-overlay.open { display: block; }
.id-side-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1200;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 60px 30px 30px;
}
.id-side-nav.open { right: 0; }
.id-side-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #111;
}
.id-side-nav ul { padding: 0; }
.id-side-nav > ul > li {
    border-bottom: 1px solid #f0f0f0;
}
.id-side-nav > ul > li > a {
    display: block;
    padding: 14px 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}
.id-side-nav .has-dropdown.open .id-sub-menu {
    display: block;
}
.id-sub-menu {
    display: none;
    padding-left: 15px;
    padding-bottom: 10px;
}
.id-sub-menu li a {
    display: block;
    padding: 8px 0;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
    color: #666;
}

/* === HERO SLIDER === */
/* === HERO SPLIT SLIDER === */
.id-hero-split {
    margin-top: 70px;
    display: flex;
    height: calc(100vh - 70px);
    min-height: 500px;
    max-height: 900px;
    position: relative;
    overflow: hidden;
}
.id-hero-split-left {
    flex: 0 0 48%;
    width: 48%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 60px 40px 80px;
    position: relative;
}
.id-hero-split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.id-hero-title {
    font-family: 'Questrial', sans-serif;
    font-size: clamp(36px, 4.5vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    color: #111;
    margin-bottom: 40px;
    transition: opacity 0.3s ease;
}
.id-hero-explore {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #999;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: #111;
    text-transform: uppercase;
    transition: all 0.3s;
    align-self: flex-start;
}
.id-hero-explore:hover {
    background: #111;
    color: #fff;
    border-color: #111;
    opacity: 1;
}
.id-hero-split-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.id-hero-arrow {
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid #bbb;
    font-size: 16px;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.id-hero-arrow:hover {
    border-color: #111;
    color: #111;
}
.id-hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    color: #aaa;
    text-transform: lowercase;
    margin-top: 20px;
}
.id-hero-split-right {
    flex: 0 0 52%;
    width: 52%;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}
.id-hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}
.id-hero-media.active {
    opacity: 1;
    pointer-events: auto;
}
.id-hero-media video,
.id-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
}

/* === SECTION COMMON === */
.id-section {
    padding: 100px 0;
}
.id-section-light {
    background: #fff;
}
.id-section-gray {
    background: #f8f8f8;
}
.id-section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.id-section-title {
    font-family: 'Questrial', sans-serif;
    font-size: 42px;
    color: #111;
    margin-bottom: 40px;
    font-weight: 400;
}
.id-section-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
}

/* === ESSENCE / ABOUT SECTION (homepage) === */
.id-essence {
    padding: 100px 0;
    text-align: left;
}
.id-essence-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}
.id-essence-img {
    flex: 1;
    min-width: 0;
}
.id-essence-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.id-essence-content {
    flex: 1;
    min-width: 0;
}
.id-essence h3 {
    font-family: 'Questrial', sans-serif;
    font-size: 32px;
    color: #111;
    margin-bottom: 20px;
}
.id-essence p {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 30px;
}
.id-btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #111;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.id-btn:hover {
    background: #111;
    color: #fff;
    opacity: 1;
}
.id-btn-light {
    border-color: #fff;
    color: #fff;
}
.id-btn-light:hover {
    background: #fff;
    color: #111;
}

/* === SERVICES SECTION === */
.id-services {
    padding: 100px 0;
}
.id-services-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.id-services-header {
    text-align: left;
    margin-bottom: 60px;
}
.id-services-header .id-section-subtitle {
    margin-bottom: 8px;
}
.id-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.id-service-card {
    padding: 40px 30px;
    border: 1px solid #eee;
    transition: box-shadow 0.3s;
}
.id-service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.id-service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: #ddd;
    line-height: 1;
    margin-bottom: 15px;
}
.id-service-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.id-service-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* === CLIENTS SECTION === */
.id-clients {
    padding: 80px 0;
    background: #f8f8f8;
}
.id-clients-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.id-clients-header {
    margin-bottom: 50px;
}
.id-clients-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}
.id-client-logo {
    text-align: center;
    padding: 20px;
}
.id-client-logo img {
    max-width: 120px;
    max-height: 120px;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}
.id-client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* === PROJECTS GALLERY === */
.id-projects {
    padding: 100px 0;
}
.id-projects-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.id-projects-header {
    margin-bottom: 50px;
}
.id-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.id-project-item {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}
.id-project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.id-project-item:hover img {
    transform: scale(1.05);
}
.id-view-more {
    text-align: center;
    margin-top: 40px;
}

/* === PARTNERS SECTION === */
.id-partners {
    padding: 100px 0;
    background: #f8f8f8;
}
.id-partners-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.id-partners-header {
    margin-bottom: 60px;
}
.id-partner-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.id-partner-block:last-child {
    margin-bottom: 0;
}
.id-partner-block.reverse {
    flex-direction: row-reverse;
}
.id-partner-img {
    flex: 1;
    min-width: 0;
}
.id-partner-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.id-partner-content {
    flex: 1;
    min-width: 0;
}
.id-partner-content h3 {
    font-family: 'Questrial', sans-serif;
    font-size: 32px;
    color: #111;
    margin-bottom: 20px;
}
.id-partner-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    text-align: justify;
}
.id-partner-logo {
    margin-top: 20px;
    max-width: 200px;
}

/* === CASE STUDY SECTION === */
.id-casestudy {
    padding: 100px 0;
}
.id-casestudy-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.id-casestudy-header {
    margin-bottom: 60px;
}
.id-casestudy-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.id-casestudy-block:last-child { margin-bottom: 0; }
.id-casestudy-block.reverse { flex-direction: row-reverse; }
.id-casestudy-text {
    flex: 1;
    min-width: 0;
}
.id-casestudy-text h3 {
    font-family: 'Questrial', sans-serif;
    font-size: 28px;
    color: #111;
    margin-bottom: 20px;
}
.id-casestudy-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
}
.id-casestudy-img {
    flex: 1;
    min-width: 0;
}
.id-casestudy-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* === CONTACT SECTION === */
.id-contact-section {
    padding: 100px 0;
    background: #f8f8f8;
}
.id-contact-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.id-contact-header {
    margin-bottom: 50px;
}
.id-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.id-contact-form input,
.id-contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    font-family: 'Questrial', sans-serif;
    font-size: 15px;
    background: #fff;
    margin-bottom: 16px;
    transition: border-color 0.3s;
    outline: none;
}
.id-contact-form input:focus,
.id-contact-form textarea:focus {
    border-color: #111;
}
.id-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}
.id-contact-form .id-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.id-contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #555;
    font-family: 'Montserrat', sans-serif;
}
.id-submit-btn {
    display: inline-block;
    padding: 16px 50px;
    background: #111;
    color: #fff;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}
.id-submit-btn:hover {
    background: #333;
}
.id-contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}
.id-contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 400px;
}

/* === AWARDS SECTION === */
.id-awards {
    padding: 100px 0;
}
.id-awards-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.id-awards-header {
    margin-bottom: 50px;
}
.id-awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.id-award-item img {
    width: 100%;
    border: 1px solid #eee;
}

/* === FOOTER === */
.id-footer {
    background: #f5f0eb;
    padding: 60px 0 0;
}
.id-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.id-footer-logo {
    flex-shrink: 0;
}
.id-footer-logo img {
    height: 80px;
    width: auto;
}
.id-footer-divider {
    width: 1px;
    height: 80px;
    background: #ccc;
    flex-shrink: 0;
}
.id-footer-info {
    flex: 1;
}
.id-footer-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}
.id-footer-bottom {
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid #e0d8d0;
}
.id-footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: #888;
}

/* === SCROLL TO TOP === */
.id-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #ddd;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
}
.id-scroll-top:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}
.id-scroll-top:hover svg { stroke: #fff; }

/* === PAGE HERO BANNER === */
.id-page-hero {
    margin-top: 70px;
    height: 350px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.id-page-hero h1 {
    font-family: 'Questrial', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #111;
    letter-spacing: 2px;
}
.id-page-hero-dark {
    background: #111;
}
.id-page-hero-dark h1 {
    color: #fff;
}
.id-page-hero-img {
    background-size: cover;
    background-position: center;
}
.id-page-hero-img h1 {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.id-page-hero-img::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}
.id-page-hero-img h1 {
    position: relative;
    z-index: 1;
}

/* === ABOUT PAGE === */
.id-about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.id-value-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #eee;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.id-value-card .icon {
    font-size: 36px;
    margin-bottom: 15px;
}
.id-value-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* About split sections */
.id-about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.id-about-split.reverse {
    flex-direction: row-reverse;
}
.id-about-split-img {
    flex: 1;
    min-width: 0;
}
.id-about-split-img img {
    width: 100%;
    object-fit: cover;
}
.id-about-split-content {
    flex: 1;
    min-width: 0;
}
.id-about-split-content h3 {
    font-family: 'Questrial', sans-serif;
    font-size: 32px;
    color: #111;
    margin-bottom: 20px;
}
.id-about-split-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 15px;
}

/* === SERVICES PAGE === */
/* Service Tiles Grid (matching live site) */
.id-svc-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.id-svc-tile {
    padding: 30px 20px;
    border-bottom: 1px solid #ddd;
}
.id-svc-tile h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* Quote */
.id-quote {
    font-family: 'Questrial', sans-serif;
    font-size: 28px;
    line-height: 1.5;
    color: #111;
    max-width: 900px;
    margin: 0 auto;
}
/* Services Include 2-column */
.id-svc-include {
    display: flex;
    gap: 40px;
}
.id-svc-include-left {
    flex: 1;
    border-right: 1px solid #ddd;
    padding-right: 40px;
}
.id-svc-include-right {
    flex: 1;
}
.id-svc-include-item {
    margin-bottom: 40px;
}
.id-svc-include-item h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}
.id-svc-include-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Clients Page - larger colored logos */
.id-clients-page-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}
.id-clients-page-logos .id-client-logo {
    text-align: center;
    padding: 30px;
}
.id-clients-page-logos .id-client-logo img {
    max-width: 200px;
    max-height: 180px;
    margin: 0 auto;
    filter: none;
    opacity: 1;
}

.id-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.id-process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.id-process-step .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #ddd;
    line-height: 1;
    margin-bottom: 10px;
}
.id-process-step h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* === CASE STUDY PAGE === */
.id-cs-section {
    padding: 80px 0;
}
.id-cs-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}
.id-cs-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.id-cs-inner h2 {
    font-family: 'Questrial', sans-serif;
    font-size: 32px;
    margin-bottom: 25px;
}
.id-cs-inner p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 15px;
}
.id-cs-hero-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin: 40px 0;
}

/* === MAINTENANCE PAGE === */
.id-maint-hero {
    margin-top: 70px;
    padding: 80px 0;
    background: #111;
    color: #fff;
    text-align: center;
}
.id-maint-hero h1 {
    font-family: 'Questrial', sans-serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 10px;
}
.id-maint-hero .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: #888;
}
.id-maint-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.id-maint-card {
    padding: 30px;
    border: 1px solid #eee;
    transition: box-shadow 0.3s;
}
.id-maint-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.id-maint-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.id-maint-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}
.id-maint-card ul {
    padding-left: 18px;
    list-style: disc;
}
.id-maint-card ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* === CLIENTS PAGE GALLERIES === */
.id-client-gallery {
    margin-bottom: 60px;
}
.id-client-gallery h3 {
    font-family: 'Questrial', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.id-client-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.id-client-gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .id-nav-list > li > a {
        padding: 24px 10px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 991px) {
    .id-nav { display: none; }
    .id-mobile-toggle { display: flex; }
    .id-logo img { height: 35px; }
    .id-header-inner { height: 60px; }

    .id-hero-split {
        flex-direction: column;
        height: auto;
        min-height: auto;
        max-height: none;
        margin-top: 60px;
    }
    .id-hero-split-left {
        flex: none;
        width: 100%;
        padding: 40px 30px 30px;
        min-height: 280px;
    }
    .id-hero-title {
        font-size: 36px;
    }
    .id-hero-split-right {
        flex: none;
        width: 100%;
        height: 50vh;
        min-height: 300px;
    }

    .id-essence-inner,
    .id-partner-block,
    .id-casestudy-block,
    .id-about-split {
        flex-direction: column;
    }
    .id-partner-block.reverse,
    .id-casestudy-block.reverse,
    .id-about-split.reverse {
        flex-direction: column;
    }
    .id-services-grid {
        grid-template-columns: 1fr;
    }
    .id-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .id-clients-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    .id-contact-grid {
        grid-template-columns: 1fr;
    }
    .id-awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .id-about-values {
        grid-template-columns: repeat(2, 1fr);
    }
    .id-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .id-maint-services {
        grid-template-columns: 1fr;
    }
    .id-svc-tiles {
        grid-template-columns: 1fr;
    }
    .id-svc-include {
        flex-direction: column;
    }
    .id-svc-include-left {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #ddd;
        padding-bottom: 20px;
    }
    .id-clients-page-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    .id-section-title {
        font-size: 32px;
    }
    .id-page-hero h1 {
        font-size: 36px;
    }
    .id-footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .id-footer-divider {
        width: 60px;
        height: 1px;
    }
}

@media (max-width: 600px) {
    .id-container,
    .id-header-inner,
    .id-essence-inner,
    .id-services-inner,
    .id-clients-inner,
    .id-projects-inner,
    .id-partners-inner,
    .id-casestudy-inner,
    .id-contact-inner,
    .id-awards-inner,
    .id-footer-inner,
    .id-cs-inner {
        padding: 0 20px;
    }
    .id-section {
        padding: 60px 0;
    }
    .id-essence p,
    .id-partner-content p,
    .id-casestudy-text p,
    .id-about-split-content p,
    .id-section-text {
        font-size: 15px;
        line-height: 1.7;
    }
    .id-essence h3,
    .id-partner-content h3,
    .id-casestudy-text h3,
    .id-about-split-content h3 {
        font-size: 24px;
    }
    .id-essence {
        padding: 60px 0;
    }
    .id-essence-inner,
    .id-partner-block,
    .id-casestudy-block,
    .id-about-split {
        gap: 30px;
    }
    .id-hero-split-left {
        padding: 30px 20px 20px;
        min-height: 220px;
    }
    .id-hero-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .id-hero-split-right {
        height: 40vh;
        min-height: 250px;
    }
    .id-hero-explore {
        padding: 10px 30px;
        font-size: 10px;
    }
    .id-projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }
    .id-clients-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .id-contact-form .id-form-row {
        grid-template-columns: 1fr;
    }
    .id-section-title {
        font-size: 28px;
    }
    .id-page-hero {
        height: 250px;
        margin-top: 60px;
    }
    .id-maint-hero {
        margin-top: 60px;
    }
    .id-page-hero h1 {
        font-size: 28px;
    }
    .id-about-values {
        grid-template-columns: 1fr 1fr;
    }
    .id-process-steps {
        grid-template-columns: 1fr 1fr;
    }
    .id-awards-grid {
        grid-template-columns: 1fr;
    }
    .id-client-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .id-clients-page-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .id-clients-page-logos .id-client-logo img {
        max-width: 140px;
        max-height: 120px;
    }
    .id-quote {
        font-size: 20px;
    }
}
