/* -------------------------------------------------------------
   DESIGN SYSTEM & VARIABLES
   ------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-navy: #0B2240; /* Dark Blue */
    --color-navy-dark: #071526;
    --color-slate-blue: #5D3FD3; /* Iris Brand Color */
    --color-slate-light: #8067E3; /* Light Iris Accent */
    --color-lavender: #7C8BA6;
    --color-warm-grey: #8E8984;
    --color-olive: #C05C46; /* Terracotta Primary */
    --color-olive-light: #7E907A; /* Sage Green Nature */
    --color-bg-light: #F7F4EF; /* Sand Light */
    --color-bg-sand: #EFEAE2; /* Sand Background */
    --color-bg-sand-light: #F7F4EF; /* Sand Light Secondary */
    --color-white: #FFFFFF;
    --color-dark-text: #1E293B;
    --color-muted-text: #64748B;
    --color-border: #CBD5E1;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* -------------------------------------------------------------
   BASE RESETS & GLOBALS
   ------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark-text);
    background-color: var(--color-bg-sand);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* -------------------------------------------------------------
   BUTTON COMPONENT
   ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn i {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.btn:hover i {
    transform: translateX(4px);
}

/* Button Variants */
.btn-primary-header {
    background-color: var(--color-navy);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-primary-header:hover {
    background-color: var(--color-slate-blue);
}

.btn-primary-mobile {
    background-color: var(--color-navy);
    color: var(--color-white);
    border: none;
    width: 100%;
    margin-top: 15px;
}

.btn-solid-blue {
    background-color: var(--color-slate-blue);
    color: var(--color-white);
    border: 1px solid var(--color-slate-blue);
}

.btn-solid-blue:hover {
    background-color: var(--color-slate-light);
    border-color: var(--color-slate-light);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background-color: var(--color-slate-blue);
    color: var(--color-white);
    border-color: var(--color-slate-blue);
}

.btn-outline-navy {
    background-color: transparent;
    color: var(--color-navy);
    border: 1px solid var(--color-navy);
    padding: 10px 24px;
}

.btn-outline-navy:hover {
    background-color: var(--color-slate-blue);
    color: var(--color-white);
    border-color: var(--color-slate-blue);
}

.btn-solid-olive {
    background-color: var(--color-olive);
    color: var(--color-white);
    border: none;
}

.btn-solid-olive:hover {
    background-color: var(--color-slate-blue);
    border-color: var(--color-slate-blue);
    color: var(--color-white);
}

.btn-contact-white {
    background-color: var(--color-white);
    color: var(--color-navy);
    border: none;
}

.btn-contact-white:hover {
    background-color: var(--color-slate-light);
    color: var(--color-white);
}

/* -------------------------------------------------------------
   HEADER NAVBAR
   ------------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    background-color: var(--color-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo-link {
    display: flex;
    align-items: center;
    max-height: 60px;
}

.logo-img {
    height: 52px;
    object-fit: contain;
    mix-blend-mode: multiply; /* Eliminates white JPEG box */
}

/* Navigation Links */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-navy);
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-slate-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-slate-blue);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--color-navy);
    border-radius: 4px;
    transition: all var(--transition-normal);
}

/* Hamburger Active Animation */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Drawer Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--color-white);
    z-index: 999;
    overflow: hidden;
    transition: height var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mobile-nav-overlay.open {
    height: calc(100vh - 80px);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80%;
    gap: 20px;
    padding: 40px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: 1px;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: var(--color-slate-blue);
}

/* -------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------- */
.hero {
    position: relative;
    background-color: var(--color-navy-dark);
    height: calc(100vh - 80px);
    min-height: 600px;
    max-height: 850px;
    overflow: hidden;
}

.hero-split-container {
    display: flex;
    height: 100%;
    position: relative;
}

/* Left Content Column */
.hero-content-col {
    width: 50%;
    height: 100%;
    background-color: var(--color-navy);
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    padding-left: 8%;
    padding-right: 5%;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

/* Blueprint Grid Layer */
.blueprint-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    z-index: 1;
    pointer-events: none;
}

.hero-text-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 480px;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-slate-light);
    margin-bottom: 20px;
    position: relative;
}

.hero-subtitle::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--color-slate-light);
    vertical-align: middle;
    margin-right: 10px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-accent-slate {
    color: var(--color-slate-light);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Right Image Column */
.hero-img-col {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 5;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* -------------------------------------------------------------
   SERVICES SECTION (WHAT WE DO)
   ------------------------------------------------------------- */
.services-section {
    background-color: var(--color-bg-light);
    padding: 100px 0;
}

.services-grid-container {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 40px;
    align-items: center;
}

/* Section Common Typography Headers */
.section-tag {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-slate-blue);
    margin-bottom: 12px;
}

.section-tag.font-gold {
    color: var(--color-olive-light);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.section-desc {
    font-size: 1rem;
    color: var(--color-muted-text);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Services Cards Wrapper */
.services-cards-wrapper {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--color-slate-light) transparent;
}

.services-cards-wrapper::-webkit-scrollbar {
    height: 6px;
}

.services-cards-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--color-slate-light);
    border-radius: 10px;
}

/* Service Card Style */
.service-card {
    flex: 0 0 250px;
    scroll-snap-align: start;
    background-color: var(--color-white);
    padding: 30px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 3px solid transparent;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--color-slate-blue);
}

/* Circular Icon Styles */
.service-icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: 1.5rem;
    transform: translateZ(30px);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-icon-circle {
    transform: scale(1.1) translateZ(40px);
}

/* Card Circle Colors */
.bg-slate-blue { background-color: var(--color-slate-blue); }
.bg-navy { background-color: var(--color-navy); }
.bg-lavender { background-color: var(--color-lavender); }
.bg-warm-grey { background-color: var(--color-warm-grey); }
.bg-olive { background-color: var(--color-olive); }

.service-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    transform: translateZ(20px);
}

.service-card-desc {
    font-size: 0.85rem;
    color: var(--color-muted-text);
    line-height: 1.5;
    transform: translateZ(10px);
}

/* -------------------------------------------------------------
   ABOUT US SECTION
   ------------------------------------------------------------- */
.about-section {
    padding: 100px 0;
    background-color: var(--color-bg-sand);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

/* Center Image Frame styling */
.about-col-img {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-img-frame {
    position: relative;
    width: 100%;
    max-width: 320px;
    z-index: 10;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-center-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateZ(25px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Behind dark line frame border */
.about-img-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    right: 20px;
    bottom: -20px;
    border: 3px solid var(--color-navy);
    z-index: -1;
    pointer-events: none;
    border-radius: 2px;
    transform: translateZ(0px);
}

/* Stats Cards styling */
.about-col-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--color-border);
    transition: transform var(--transition-fast);
}

.stat-card:hover {
    transform: translateX(5px);
}

.stat-icon-wrapper {
    font-size: 1.8rem;
    color: var(--color-slate-blue);
    width: 40px;
    display: flex;
    justify-content: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-navy);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-muted-text);
    margin-top: 4px;
}

/* -------------------------------------------------------------
   FEATURED PROJECTS SECTION
   ------------------------------------------------------------- */
.projects-section {
    background-color: var(--color-navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.projects-grid-container {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 50px;
    align-items: center;
}

.projects-cards-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Project Card Item */
.project-card {
    background-color: var(--color-navy-dark);
    position: relative;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    transform: translateZ(20px);
    transform-style: preserve-3d;
    border-radius: 4px 4px 0 0;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow) cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card:hover .project-img {
    transform: scale(1.08) translateZ(10px);
}

/* Bottom Dark Text Bar Overlay */
.project-card-title-bar {
    background-color: var(--color-navy-dark);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
    position: relative;
    transform: translateZ(35px);
    transform-style: preserve-3d;
    border-radius: 0 0 4px 4px;
}

.project-card-title-bar h3 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-white);
    transform: translateZ(15px);
}

/* Glass Glare Overlay Style */
.card-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    mix-blend-mode: overlay;
}

.project-card:hover .card-glare,
.service-card:hover .card-glare,
.about-img-frame:hover .card-glare {
    opacity: 1;
}

/* -------------------------------------------------------------
   OUR PROCESS SECTION
   ------------------------------------------------------------- */
.process-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
    text-align: center;
}

.process-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 80px;
    letter-spacing: -0.5px;
    color: var(--color-navy);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
}

/* Dotted Horizontal Connector Line */
.timeline-line {
    position: absolute;
    top: 35px;
    left: 8%;
    right: 8%;
    height: 2px;
    border-top: 2px dashed rgba(93, 63, 211, 0.25);
    z-index: 1;
}

/* Individual Process Step */
.process-step {
    flex: 1;
    position: relative;
    z-index: 5;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 3px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-navy);
    font-size: 1.4rem;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all var(--transition-normal);
}

.process-step:hover .process-icon-circle {
    transform: scale(1.1);
    border-color: var(--color-slate-blue);
    background-color: var(--color-slate-blue);
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(93, 63, 211, 0.3);
}

/* Rotation effect on hovered step icon */
.process-step:hover .process-icon-circle i {
    transform: rotate(15deg);
}

/* Number Label */
.process-number {
    position: absolute;
    bottom: -12px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1px 7px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-muted-text);
}

.process-step:hover .process-number {
    background-color: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

.bg-olive-light {
    color: var(--color-olive-light);
}

.process-step-title {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.process-step-desc {
    font-size: 0.8rem;
    color: var(--color-muted-text);
    line-height: 1.5;
    max-width: 180px;
}

/* -------------------------------------------------------------
   FOOTER AREA & ANGLED BLOCKS
   ------------------------------------------------------------- */
.footer {
    background-color: var(--color-navy-dark);
    position: relative;
    overflow: hidden;
}

/* Angled Grid CTA block wrapper */
.footer-cta-container {
    display: flex;
    min-height: 280px;
}

/* Left CTA Section */
.footer-cta-left {
    background-color: var(--color-navy);
    width: 38%;
    display: flex;
    align-items: center;
    padding: 60px 4% 60px 8%;
    position: relative;
    z-index: 10;
}

.cta-left-content {
    max-width: 360px;
    color: var(--color-white);
}

.cta-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-slate-light);
    margin-bottom: 12px;
    display: block;
}

.cta-heading {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.3;
}

/* Middle Contact Info Block - Skewed! */
.footer-cta-middle {
    background-color: var(--color-olive-light); /* Sage Green */
    width: 28%;
    padding: 60px 4%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 15;
}

/* Diagonal Separator Lines via Skewed Pseudo-element */
.footer-cta-middle::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -35px;
    right: -35px;
    background-color: var(--color-olive-light); /* Sage Green */
    transform: skewX(-14deg);
    z-index: -1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--color-white);
}

.info-icon {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.info-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.info-value {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.4;
}

.info-value:hover {
    color: var(--color-navy);
}

/* Right Social Block */
.footer-cta-right {
    background-color: var(--color-navy);
    width: 34%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 8% 60px 4%;
    position: relative;
    z-index: 10;
    gap: 25px;
}

.footer-logo-wrap {
    max-width: 200px;
}

.footer-logo-img {
    height: 48px;
    object-fit: contain;
    /* Inverts the dark logo image to stand out as pure white on dark blue background */
    filter: brightness(0) invert(1);
}

.footer-slogan {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--color-lavender);
    text-transform: uppercase;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 5px;
    opacity: 0.85;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* Bottom Bar */
.footer-bottom {
    background-color: var(--color-navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a:hover {
    color: var(--color-white);
}

/* -------------------------------------------------------------
   INTERACTION & SCROLL ANIMATIONS
   ------------------------------------------------------------- */
.scroll-animate {
    opacity: 0;
    transition: all var(--transition-slow) cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-left {
    transform: translateX(-35px);
}

.fade-in-right {
    transform: translateX(35px);
}

.scroll-animate.animated {
    opacity: 1;
    transform: none;
}

/* Stagger delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Active keyframe animation on Page Load for Hero */
.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
    /* Base spacing adjustments */
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    /* Hero split column layout */
    .hero {
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .hero-split-container {
        flex-direction: column;
    }

    .hero-content-col {
        width: 100%;
        clip-path: none;
        padding: 80px 24px;
        order: 2;
    }

    .hero-img-col {
        position: relative;
        width: 100%;
        height: 380px;
        order: 1;
    }

    /* Services Grid Layout */
    .services-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-cards-wrapper {
        padding-bottom: 10px;
    }

    /* About Us Grid Layout */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-col-img {
        order: 3;
    }
    
    .about-col-stats {
        order: 2;
    }

    /* Featured Projects Layout */
    .projects-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .projects-cards-list {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Process section layout timeline */
    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .timeline-line {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: calc(100% - 70px);
        border-top: none;
        border-left: 2px dashed rgba(76, 94, 127, 0.25);
        transform: translateX(-50%);
    }

    .process-step {
        width: 100%;
        max-width: 320px;
    }

    /* Footer cta grid layout */
    .footer-cta-container {
        flex-direction: column;
    }

    .footer-cta-left,
    .footer-cta-middle,
    .footer-cta-right {
        width: 100%;
        padding: 50px 24px;
    }

    .footer-cta-middle::before {
        display: none; /* Turn off angled separations on stacked display */
    }
    
    .footer-cta-middle {
        background-color: var(--color-olive);
    }
}

@media (max-width: 768px) {
    /* Header layout */
    .header-cta {
        display: none;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero Typography */
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    /* Cards lists */
    .projects-cards-list {
        grid-template-columns: 1fr;
    }

    /* Bottom footer flex */
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* -------------------------------------------------------------
   SUBPAGE HERO BANNER & BREADCRUMBS
   ------------------------------------------------------------- */
.subpage-hero {
    background-color: var(--color-navy);
    padding: 140px 0 70px;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

.subpage-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.subpage-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 21, 38, 0.94) 0%, rgba(7, 21, 38, 0.82) 55%, rgba(7, 21, 38, 0.65) 100%);
    z-index: 2;
}

.hero-bg-services { background-image: url('assets/services_hero_bg.png'); }
.hero-bg-projects { background-image: url('assets/projects_hero_bg.png'); }
.hero-bg-palisades { background-image: url('assets/palisades-front-gate.jpg'); }
.hero-bg-about { background-image: url('assets/about_hero_bg.png'); }
.hero-bg-contact { background-image: url('assets/contact_hero_bg.png'); }

.subpage-hero .blueprint-grid {
    opacity: 0.15;
    z-index: 3;
}

.subpage-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-lavender);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.breadcrumb a {
    color: var(--color-lavender);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-slate-light);
}

.breadcrumb-separator {
    color: var(--color-slate-blue);
}

.subpage-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.subpage-subtitle {
    font-size: 1.1rem;
    color: var(--color-lavender);
    line-height: 1.6;
}

/* -------------------------------------------------------------
   PORTFOLIO FILTER BAR & GALLERY GRID
   ------------------------------------------------------------- */
.filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 40px;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    color: var(--color-dark-text);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-slate-blue);
    color: var(--color-white);
    border-color: var(--color-slate-blue);
    box-shadow: 0 4px 15px rgba(93, 63, 211, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.portfolio-item {
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.portfolio-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-card:hover .portfolio-img-wrap img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 34, 64, 0.2) 0%, rgba(11, 34, 64, 0.85) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: opacity var(--transition-normal);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-slate-blue);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.portfolio-action-btn:hover {
    transform: scale(1.15);
    background-color: var(--color-slate-light);
}

.portfolio-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-slate-blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.portfolio-desc {
    font-size: 0.9rem;
    color: var(--color-muted-text);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.portfolio-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-slate-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-fast);
}

.portfolio-card:hover .portfolio-link {
    gap: 12px;
}

/* -------------------------------------------------------------
   LIGHTBOX MODAL & VIDEO EMBED
   ------------------------------------------------------------- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(7, 21, 38, 0.92);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-slate-light);
}

/* Video Player Frame Container */
.video-tour-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(93, 63, 211, 0.3);
    background-color: var(--color-navy);
}

.video-tour-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* -------------------------------------------------------------
   DETAILED SERVICE MODULES & FAQ ACCORDION
   ------------------------------------------------------------- */
.service-module {
    padding: 80px 0;
}

.service-module:nth-child(even) {
    background-color: var(--color-bg-sand);
}

.service-module-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-module:nth-child(even) .service-module-grid {
    direction: rtl;
}

.service-module:nth-child(even) .service-module-content {
    direction: ltr;
}

.service-module-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-module-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.service-module-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-slate-blue);
    color: var(--color-white);
    padding: 8px 18px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-feature-list {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-dark-text);
}

.service-feature-item i {
    color: var(--color-slate-blue);
    margin-top: 4px;
}

/* FAQ Accordion Styling */
.faq-section {
    padding: 90px 0;
    background-color: var(--color-white);
}

.faq-accordion {
    max-width: 850px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item.active {
    border-color: var(--color-slate-blue);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background-color: var(--color-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    cursor: pointer;
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-item.active .faq-question {
    color: var(--color-slate-blue);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(93, 63, 211, 0.08);
    color: var(--color-slate-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background-color: var(--color-slate-blue);
    color: var(--color-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.4s ease;
    background-color: var(--color-bg-light);
    color: var(--color-muted-text);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* -------------------------------------------------------------
   CONTACT FORM & MAP UI
   ------------------------------------------------------------- */
.contact-section {
    padding: 90px 0;
    background-color: var(--color-bg-sand);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark-text);
    background-color: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-slate-blue);
    box-shadow: 0 0 0 3px rgba(93, 63, 211, 0.15);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B2240' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-status-alert {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-status-alert.success {
    display: block;
    background-color: rgba(126, 144, 122, 0.15);
    color: #3b5037;
    border: 1px solid var(--color-olive-light);
}

.map-card {
    background-color: var(--color-navy);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    color: var(--color-white);
}

.map-placeholder {
    height: 320px;
    background-color: #1a2f4c;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-badge {
    background-color: var(--color-white);
    color: var(--color-navy);
    padding: 15px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    z-index: 10;
}

.map-badge i {
    color: var(--color-slate-blue);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.map-badge h4 {
    font-size: 1rem;
    font-weight: 800;
}

.map-badge p {
    font-size: 0.8rem;
    color: var(--color-muted-text);
}

.map-info-footer {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-module-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-module:nth-child(even) .service-module-grid {
        direction: ltr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* -------------------------------------------------------------
   ABOUT US PAGE EXCLUSIVE STORY & STATS RIBBON
   ------------------------------------------------------------- */
.about-story-section {
    padding: 100px 0 80px;
    background-color: var(--color-white);
    position: relative;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Dual Image Overlapping Composition */
.story-image-composition {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}

.story-img-main {
    width: 88%;
    height: 440px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(11, 34, 64, 0.14);
    display: block;
}

.story-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    border: 6px solid var(--color-white);
    box-shadow: 0 15px 35px rgba(93, 63, 211, 0.2);
}

.story-experience-badge {
    position: absolute;
    top: 25px;
    left: -20px;
    background: var(--color-navy);
    color: var(--color-white);
    padding: 16px 24px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(7, 21, 38, 0.25);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    border-left: 4px solid var(--color-slate-blue);
}

.badge-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(93, 63, 211, 0.25);
    color: var(--color-slate-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.badge-text-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-text-sub {
    font-size: 0.8rem;
    color: var(--color-lavender);
}

/* About Story Text Content */
.about-story-content .section-tag {
    color: var(--color-slate-blue);
    font-weight: 800;
    letter-spacing: 1.5px;
}

.about-story-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-story-paragraph {
    font-size: 0.98rem;
    color: var(--color-dark-text);
    line-height: 1.7;
    margin-bottom: 18px;
}

.story-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0 32px;
}

.story-highlight-box {
    background-color: var(--color-bg-sand);
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-left: 3px solid var(--color-slate-blue);
}

.story-highlight-box i {
    color: var(--color-slate-blue);
    font-size: 1.1rem;
    margin-top: 2px;
}

.story-highlight-box span {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.35;
}

/* Full Width Stats Ribbon */
.about-stats-ribbon {
    background: linear-gradient(135deg, var(--color-navy) 0%, #122c54 100%);
    padding: 50px 0;
    color: var(--color-white);
    position: relative;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.15);
}

.stats-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.ribbon-stat-item {
    padding: 15px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ribbon-stat-item:last-child {
    border-right: none;
}

.ribbon-stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 8px;
}

.ribbon-stat-number .stat-number,
.about-stats-ribbon .stat-number {
    color: var(--color-white) !important;
    font-size: 3rem;
}

.ribbon-stat-plus {
    color: var(--color-slate-light);
    font-size: 2.2rem;
}

.ribbon-stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-lavender);
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-image-composition {
        padding-right: 20px;
        padding-bottom: 20px;
        max-width: 600px;
        margin: 0 auto;
    }

    .story-experience-badge {
        left: 10px;
        top: 15px;
        padding: 12px 18px;
    }

    .stats-ribbon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .ribbon-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }

    .ribbon-stat-item:nth-child(2),
    .ribbon-stat-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .story-highlights-grid {
        grid-template-columns: 1fr;
    }

    .stats-ribbon-grid {
        grid-template-columns: 1fr;
    }

    .ribbon-stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}



