/* ==========================================================================
   JETMAN AS - CSS STYLESHEET
   ========================================================================== */

:root {
    /* ==========================================================================
       CONTROL PANEL - CSS VARIABLES
       ========================================================================== */

    /* CHANGE MAIN ORANGE COLOUR HERE */
    --color-orange: #f45105;
    --color-orange-dark: #c93d00;

    /* OTHER CORE BRAND COLOURS */
    --color-black: #0d0d0d;
    --color-graphite: #151515;
    --color-steel: #7a7e85;
    --color-light: #f4f3ef;
    --color-white: #ffffff;
    --color-border: rgba(255, 255, 255, 0.10);
    --color-border-dark: rgba(0, 0, 0, 0.08);

    /* HERO BACKGROUND IMAGE REFERENCE */
    --hero-bg-image: url('assets/hero_bg.jpg');

    /* CHANGE LOGO SIZE HERE */
    --logo-header-width: 170px;
    --logo-hero-width: 310px;

    /* CHANGE MOBILE LAYOUT HERE */
    --logo-mobile-width: 130px;

    /* MOVE LOGO UP OR DOWN HERE */
    --logo-header-y-offset: 0px;
    --logo-hero-y-offset: 0px;

    /* CHANGE HERO HEIGHT HERE */
    --hero-height: 90vh;
    --hero-min-height: 700px;

    /* MOVE HERO CONTENT UP OR DOWN HERE */
    --hero-content-y-offset: 0px;

    /* CHANGE SECTION SPACING HERE */
    --section-padding-desktop: 110px 0;
    --section-padding-tablet: 80px 0;
    --section-padding-mobile: 60px 0;
    --card-spacing: 30px;

    /* CHANGE CARD PADDING HERE */
    --card-padding: 35px;
    --card-padding-small: 25px;

    /* CHANGE IMAGE HEIGHTS HERE */
    --gallery-image-height: 270px;
    --gallery-image-height-mobile: 220px;

    /* CHANGE BUTTON SIZE HERE */
    --btn-padding: 15px 32px;
    --btn-font-size: 0.95rem;

    /* CHANGE HEADING SIZE HERE */
    --font-size-h1: 4rem;
    --font-size-h1-mobile: 2.4rem;
    --font-size-h2: 2.4rem;
    --font-size-h2-mobile: 1.85rem;
    --font-size-h3: 1.45rem;
    --font-size-h3-mobile: 1.25rem;

    /* BODY TEXT VARIABLES */
    --font-size-body: 1.05rem;
    --font-size-body-mobile: 0.98rem;
    --line-height-body: 1.65;

    /* DESIGN DETAILS */
    --border-radius: 4px;
    --box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    --box-shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.45);
    --max-content-width: 1180px;

    /* TRANSITIONS */
    --transition-speed: 0.25s;
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-black);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    color: var(--color-light);
    background-color: var(--color-black);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

/* Accessibility Focus States */
a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
select:focus-visible, 
textarea:focus-visible {
    outline: 3px solid var(--color-orange);
    outline-offset: 3px;
}

/* Common Section Layout */
section {
    position: relative;
    width: 100%;
}

.section-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header-centered {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    display: inline-block;
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Courier, monospace;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-orange);
    margin-bottom: 12px;
}

.section-title {
    font-size: var(--font-size-h2);
    font-weight: 850;
    color: var(--color-white);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-orange);
    margin-top: 15px;
}

.section-header-centered .section-title::after {
    margin: 15px auto 0 auto;
}

.section-desc-centered {
    color: var(--color-steel);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--btn-padding);
    font-size: var(--btn-font-size);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}

.btn-primary:hover {
    background-color: var(--color-orange-dark);
    border-color: var(--color-orange-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(13, 13, 13, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
}

.header-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    width: var(--logo-header-width);
    height: auto;
    transform: translateY(var(--logo-header-y-offset));
    transition: transform var(--transition-speed) ease;
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-list a {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-light);
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-list a:hover {
    color: var(--color-white);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-orange);
    transition: width var(--transition-speed) ease;
}

.nav-list a:hover::after {
    width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    padding: 140px 0 160px 0;
    position: relative;
    background-color: var(--color-black);
    background-image: 
        linear-gradient(180deg, rgba(13, 13, 13, 0.82) 0%, rgba(21, 21, 21, 0.95) 100%),
        var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: var(--hero-height);
    display: flex;
    align-items: center;
}

/* Diagonal orange details and clip shape */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: var(--color-light);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: 5;
}

.hero-diagonal-bg {
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    z-index: 4;
}

.hero-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    transform: translateY(var(--hero-content-y-offset));
    position: relative;
    z-index: 6;
}

.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Industrial Corner Brackets */
.hero-logo-wrapper::before, .hero-logo-wrapper::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--color-orange);
    border-style: solid;
    opacity: 0.8;
}

.hero-logo-wrapper::before {
    top: -25px;
    left: 30px;
    border-width: 4px 0 0 4px;
}

.hero-logo-wrapper::after {
    bottom: -25px;
    right: 30px;
    border-width: 0 4px 4px 0;
}

.hero-logo {
    width: var(--logo-hero-width);
    height: auto;
    transform: translateY(var(--logo-hero-y-offset));
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: var(--font-size-h1);
    font-weight: 950;
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 24px;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.hero-body {
    font-size: 1.12rem;
    color: #e0e0e0;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-trustline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Courier, monospace;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-steel);
}

.trust-divider {
    color: var(--color-orange);
}

/* ==========================================================================
   INTRO SECTION (Asymmetrical / Overlap Layout)
   ========================================================================== */

.intro-section {
    padding: var(--section-padding-desktop);
    background-color: var(--color-light);
    color: var(--color-black);
    position: relative;
    z-index: 10;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-text-block {
    position: sticky;
    top: 130px;
}

.intro-text-block .section-title {
    color: var(--color-black);
}

.intro-text-block .section-title::after {
    background-color: var(--color-orange);
}

/* Overlapping Intro Cards Container */
.intro-cards-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: -120px; /* Overlap into Hero Section to break blockiness */
}

.intro-card {
    background-color: var(--color-white);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    border-left: 6px solid var(--color-black);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    position: relative;
    transition: all var(--transition-speed) ease;
}

.intro-card:nth-child(2) {
    border-left-color: var(--color-orange);
    /* Subtle horizontal offset */
    transform: translateX(15px);
}

.intro-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--box-shadow);
}

.intro-card:nth-child(2):hover {
    transform: translateX(15px) translateY(-5px) scale(1.01);
}

.card-icon-marker {
    position: absolute;
    right: 25px;
    top: 20px;
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Courier, monospace;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
}

.intro-card:nth-child(2) .card-icon-marker {
    color: rgba(244, 81, 5, 0.08);
}

.intro-card .card-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--color-black);
    text-transform: uppercase;
}

.intro-card .card-description {
    color: #444444;
    font-size: 1rem;
    line-height: 1.55;
}

/* ==========================================================================
   SERVICES SECTION (Staggered Dynamic Grid)
   ========================================================================== */

.services-section {
    padding: var(--section-padding-desktop);
    background-color: var(--color-graphite);
    border-top: 1px solid var(--color-border);
    position: relative;
    z-index: 9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px var(--card-spacing);
    padding-bottom: 30px;
}

/* Stagger service columns to break monotone horizontal lines */
@media (min-width: 1025px) {
    .services-grid > article:nth-child(2),
    .services-grid > article:nth-child(5) {
        transform: translateY(25px);
    }
}

.service-card {
    background-color: var(--color-black);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

/* Custom industrial structural accent inside cards */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: background-color var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-orange);
    box-shadow: var(--box-shadow-hover);
}

.service-card:hover::before {
    background-color: var(--color-orange);
}

/* Keep stagger offset logic intact on hover translation */
@media (min-width: 1025px) {
    .services-grid > article:nth-child(2):hover,
    .services-grid > article:nth-child(5):hover {
        transform: translateY(17px);
    }
}

.service-badge {
    align-self: flex-start;
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Courier, monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: rgba(244, 81, 5, 0.12);
    color: var(--color-orange);
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 24px;
    border-left: 3px solid var(--color-orange);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-text {
    font-size: 0.98rem;
    color: #b3b3b3;
    line-height: 1.6;
}

/* ==========================================================================
   PROCESS SECTION (Timeline Alternating Layout)
   ========================================================================== */

.process-section {
    padding: var(--section-padding-desktop);
    background-color: var(--color-light);
    color: var(--color-black);
}

.process-section .section-title {
    color: var(--color-black);
}

.process-steps-container {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 850px;
    margin: 50px auto 0 auto;
}

/* Timeline Vertical Line */
.process-steps-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: rgba(0, 0, 0, 0.08);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Center timeline numbers */
.step-number {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-black);
    color: var(--color-orange);
    font-size: 1.6rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--color-white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all var(--transition-speed) ease;
}

.process-step:hover .step-number {
    background-color: var(--color-orange);
    color: var(--color-white);
    transform: translateX(-50%) scale(1.1);
}

.step-content {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    transition: transform var(--transition-speed) ease;
    border-top: 3px solid var(--color-black);
}

.process-step:hover .step-content {
    transform: translateY(-5px);
}

/* Stagger layouts left and right */
.process-step:nth-child(odd) .step-content {
    grid-column: 1;
    text-align: right;
    border-top-color: var(--color-orange);
}

.process-step:nth-child(even) .step-content {
    grid-column: 2;
    border-top-color: var(--color-black);
}

/* Align empty column space */
.process-step:nth-child(odd) {
    direction: ltr;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.step-desc {
    font-size: 0.98rem;
    color: #555555;
    line-height: 1.55;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section {
    padding: var(--section-padding-desktop);
    background-color: var(--color-white);
    color: var(--color-black);
}

.about-section .section-title {
    color: var(--color-black);
}

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

.about-main-text p {
    font-size: 1.05rem;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-main-text p:last-child {
    margin-bottom: 0;
}

/* Fact Box Styling */
.fact-box {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--color-orange);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.fact-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(244,81,5,0.08) 50%);
}

.fact-box-title {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
}

.fact-list {
    list-style: none;
}

.fact-list li {
    margin-bottom: 18px;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
}

.fact-list li:last-child {
    margin-bottom: 0;
}

.fact-label {
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Courier, monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-orange);
    margin-bottom: 4px;
}

.fact-value {
    font-weight: 600;
    color: var(--color-light);
}

/* ==========================================================================
   VALUES SECTION (Zigzag Grids Layout)
   ========================================================================== */

.values-section {
    padding: var(--section-padding-desktop);
    background-color: var(--color-light);
    color: var(--color-black);
}

.values-section .section-title {
    color: var(--color-black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Asymmetric styling on specific cards */
.values-grid > div:nth-child(even) {
    background-color: var(--color-black);
    color: var(--color-white);
}

.values-grid > div:nth-child(even) .value-title {
    color: var(--color-white);
}

.values-grid > div:nth-child(even) .value-desc {
    color: #c5c5c5;
}

.values-grid > div:nth-child(4) {
    grid-column: span 1;
}

.value-card {
    background-color: var(--color-white);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    border-top: 4px solid transparent;
    transition: all var(--transition-speed) ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow);
}

.value-card:nth-child(odd):hover {
    border-top-color: var(--color-orange);
}

.value-card:nth-child(even):hover {
    border-top-color: var(--color-white);
}

.value-number {
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Courier, monospace;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(244, 81, 5, 0.18);
    margin-bottom: 15px;
}

.value-card:nth-child(even) .value-number {
    color: rgba(255, 255, 255, 0.08);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.value-desc {
    font-size: 0.98rem;
    color: #555555;
    line-height: 1.55;
}

/* ==========================================================================
   TARGET GROUPS SECTION (Asymmetrical hover tilts)
   ========================================================================== */

.target-groups-section {
    padding: var(--section-padding-desktop);
    background-color: var(--color-graphite);
    border-top: 1px solid var(--color-border);
}

.target-groups-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--card-spacing);
}

.target-card {
    background-color: var(--color-black);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    position: relative;
    transition: all var(--transition-speed) ease;
}

/* Staggered slight hover rotation for tactile feel */
.target-card:nth-child(odd):hover {
    transform: translateY(-8px) rotate(-0.5deg);
    border-color: var(--color-orange);
    box-shadow: var(--box-shadow-hover);
}

.target-card:nth-child(even):hover {
    transform: translateY(-8px) rotate(0.5deg);
    border-color: var(--color-orange);
    box-shadow: var(--box-shadow-hover);
}

.target-card-accent {
    width: 35px;
    height: 4px;
    background-color: var(--color-orange);
    margin-bottom: 22px;
}

.target-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.target-desc {
    font-size: 0.95rem;
    color: #ababab;
    line-height: 1.6;
}

/* ==========================================================================
   REFERENCES / GALLERY SECTION
   ========================================================================== */

.gallery-section {
    padding: var(--section-padding-desktop);
    background-color: var(--color-white);
    color: var(--color-black);
}

.gallery-section .section-title {
    color: var(--color-black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px var(--card-spacing);
}

.gallery-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.gallery-image-wrapper {
    position: relative;
    height: var(--gallery-image-height);
    background-color: var(--color-black);
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.06);
}

.gallery-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-graphite) 0%, var(--color-black) 100%);
    color: var(--color-orange);
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Courier, monospace;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
    border-bottom: 3px solid var(--color-orange);
}

.gallery-info {
    padding: 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gallery-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.gallery-card-desc {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
}

/* ==========================================================================
   BLOG SECTION
   ========================================================================== */

.blog-section {
    padding: var(--section-padding-desktop);
    background-color: var(--color-light);
    color: var(--color-black);
}

.blog-section .section-title {
    color: var(--color-black);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-spacing);
}

.blog-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    border-bottom: 4px solid transparent;
    transition: all var(--transition-speed) ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--color-orange);
    box-shadow: var(--box-shadow);
}

.blog-card-meta {
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Courier, monospace;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-steel);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: uppercase;
}

.blog-card-excerpt {
    font-size: 0.98rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-more {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-orange);
    transition: transform var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
}

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

/* ==========================================================================
   PRIVACY SECTION
   ========================================================================== */

.privacy-section {
    padding: var(--section-padding-tablet);
    background-color: var(--color-white);
    color: var(--color-black);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.privacy-section .section-title {
    color: var(--color-black);
}

.privacy-container {
    max-width: 800px;
    text-align: center;
}

.privacy-content p {
    font-size: 1.05rem;
    color: #444444;
    margin-bottom: 15px;
}

.privacy-disclaimer {
    font-size: 0.85rem !important;
    color: var(--color-steel) !important;
    font-style: italic;
    margin-top: 25px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
    padding: var(--section-padding-desktop);
    background-color: var(--color-black);
    background-image: linear-gradient(180deg, var(--color-graphite) 0%, var(--color-black) 100%);
    border-top: 1px solid var(--color-border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: start;
}

.contact-lead {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 1.6rem;
    background-color: rgba(244, 81, 5, 0.1);
    color: var(--color-orange);
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 81, 5, 0.2);
}

.contact-label {
    display: block;
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Courier, monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-orange);
    margin-bottom: 4px;
}

.contact-link {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
}

.contact-link:hover {
    color: var(--color-orange);
}

.contact-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
}

/* Form Styling */
.contact-form-block {
    background-color: var(--color-graphite);
    padding: 45px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    box-shadow: var(--box-shadow);
    position: relative;
}

/* Corner highlight marker for form container */
.contact-form-block::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 20px;
    height: 20px;
    border-top: 3px solid var(--color-orange);
    border-right: 3px solid var(--color-orange);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.contact-form label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-light);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--color-black);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    color: var(--color-white);
    font-size: 0.98rem;
    font-family: inherit;
    transition: all var(--transition-speed) ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(244, 81, 5, 0.15);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f45105' 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 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    background-color: var(--color-orange);
    color: var(--color-white);
    border: none;
    font-size: 1.05rem;
    width: 100%;
    padding: 16px 20px;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--color-orange-dark);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background-color: var(--color-black);
    color: var(--color-steel);
    border-top: 1px solid var(--color-border);
    padding: 75px 0 35px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #ababab;
    max-width: 280px;
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    margin-bottom: 24px;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-orange);
    margin-top: 10px;
}

.footer-menu {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.footer-menu a {
    font-size: 0.9rem;
    color: var(--color-steel);
}

.footer-menu a:hover {
    color: var(--color-orange);
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bcbcbc;
}

.footer-address strong {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 35px;
    text-align: center;
    font-size: 0.85rem;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE LAYOUTS)
   ========================================================================== */

/* TABLET LAYOUT */
@media (max-width: 1024px) {
    :root {
        --section-padding-desktop: var(--section-padding-tablet);
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-cards-container {
        margin-top: 0; /* Remove hero overlap on tablets */
    }
    
    .intro-card:nth-child(2) {
        transform: none;
    }
    
    .intro-card:nth-child(2):hover {
        transform: translateY(-5px);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .process-steps-container::before {
        left: 30px;
        transform: none;
    }
    
    .step-number {
        left: 30px;
        transform: none;
    }
    
    .process-step:hover .step-number {
        transform: scale(1.1);
    }
    
    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
        grid-column: 1;
        margin-left: 80px;
        text-align: left;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .target-groups-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid > article:nth-child(3) {
        grid-column: span 2;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-info {
        grid-column: span 2;
    }
}

/* MOBILE LAYOUT */
/* CHANGE MOBILE LAYOUT HERE */
@media (max-width: 768px) {
    :root {
        --section-padding-desktop: var(--section-padding-mobile);
        --font-size-h2: var(--font-size-h2-mobile);
        --font-size-h3: var(--font-size-h3-mobile);
        --font-size-body: var(--font-size-body-mobile);
    }

    /* Stack Navigation on Mobile without JS */
    .header-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .header-logo {
        width: var(--logo-mobile-width);
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 16px;
    }
    
    .nav-list a {
        font-size: 0.88rem;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 80px 0 90px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-logo {
        width: 190px;
    }
    
    .hero-logo-wrapper::before {
        left: 20px;
        top: -15px;
    }
    
    .hero-logo-wrapper::after {
        right: 20px;
        bottom: -15px;
    }
    
    .hero-title {
        font-size: var(--font-size-h1-mobile);
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 30px auto;
    }
    
    .hero-trustline {
        justify-content: center;
        font-size: 0.75rem;
    }

    /* Grids to 1 Column */
    .services-grid,
    .values-grid,
    .target-groups-grid,
    .gallery-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid > div:nth-child(4) {
        grid-column: span 1;
    }
    
    .blog-grid > article:nth-child(3) {
        grid-column: span 1;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .process-steps-container::before {
        left: 20px;
    }
    
    .step-number {
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
        margin-left: 60px;
        padding: 20px;
    }
    
    .gallery-image-wrapper {
        height: var(--gallery-image-height-mobile);
    }
    
    .contact-form-block {
        padding: 24px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-info {
        grid-column: span 1;
    }
    
    .footer-menu {
        grid-template-columns: 1fr;
    }
}
