/* =============================================
   HOSTRUC - Main Stylesheet
   Comprehensive Responsive Design
   ============================================= */

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

:root {
    --navy:      #1a2f4a;
    --navy-dark: #0f1e2e;
    --navy-light: #2c4f72;
    --orange:    #e07b2a;
    --teal:      #4ecdc4;
    --teal-dark: #2bb5ac;
    --white:     #ffffff;
    --off-white: #f8f9fa;
    --light-gray:#f0f2f4;
    --gray:      #6b7a8d;
    --mid-gray:  #9aa5b4;
    --dark-text: #1a2030;
    --border:    #e0e5ec;
    --font-main: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font: inherit; }

/* =============================================
   GLOBAL UTILITIES
   ============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-title {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--dark-text);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 680px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-icon { flex-shrink: 0; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--navy);
    letter-spacing: 2px;
}

.logo-sub {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.58rem;
    color: var(--gray);
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
    list-style: none;
}

.nav-link {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    color: var(--navy);
    padding: 4px 0;
    position: relative;
    transition: color var(--transition);
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 1.5px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-link:hover { color: var(--teal-dark); }
.nav-link.active { color: var(--dark-text); font-weight: 700; }
.nav-link.active::after,
.nav-link:hover::after { transform: scaleX(1); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    margin-top: 76px;
    background: var(--white);
}

.hero-text-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 32px 40px;
}

.hero-title {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    color: var(--dark-text);
    line-height: 1.06;
    letter-spacing: -1px;
    text-transform: uppercase;
    max-width: 780px;
}

.hero-image-wrap {
    width: 100%;
    height: clamp(280px, 45vw, 520px);
    overflow: hidden;
    position: relative;
}

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

/* ---- Hero Slider ---- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(26,47,74,0.45);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
}

.hero-arrow:hover {
    background: rgba(26,47,74,0.8);
}

.hero-arrow--prev { left: 16px; }
.hero-arrow--next { right: 16px; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;
}

.hero-dot.active {
    background: #fff;
    border-color: #fff;
}

/* Hero placeholder when no real image */
.hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2f4a 0%, #2c4f72 40%, #3d6b8c 70%, #4ecdc4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-img-placeholder svg {
    opacity: 0.25;
}

/* =============================================
   INTRO STRIP
   ============================================= */
.intro-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
    padding: 0;
}

.intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.intro-content {}

.intro-company {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.intro-tagline {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.intro-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.2s;
}

.intro-arrow:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

/* =============================================
   CONTACT US SECTION
   ============================================= */
.contact-us-section {
    background: #fff;
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-us-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

.contact-us-deco {
    position: absolute;
    top: -20px;
    right: 0;
    z-index: 1;
}

.contact-us-deco-img {
    height: 80px;
    width: auto;
    opacity: 0.18;
    filter: saturate(1.5);
}

.contact-us-heading {
    font-family: var(--font-main);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
}

.contact-heading-dark {
    color: var(--navy);
}

.contact-heading-teal {
    color: var(--teal);
}

.contact-us-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-us-map {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,47,74,0.10);
}

.contact-us-map iframe {
    display: block;
    width: 100%;
    height: 320px;
}

.contact-us-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 8px;
}

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

.contact-us-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}

.contact-icon-pin {
    background: #c0392b;
}

.contact-icon-email {
    background: #1a6fa8;
}

.contact-icon-phone {
    background: #1a8a9a;
}

.contact-us-text {
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: var(--dark-text);
    line-height: 1.65;
    margin: 0;
    padding-top: 14px;
}

/* =============================================
   OUR SERVICES — OFFER SECTION
   ============================================= */
.offer-section {
    padding: 72px 0 0;
    background: #fff;
    overflow: hidden;
}

.offer-header {
    text-align: center;
    padding: 0 32px 48px;
}

.offer-eyebrow {
    font-family: var(--font-main);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: 10px;
}

.offer-heading {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Slider wrapper */
.offer-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

/* Arrow buttons */
.offer-arrow {
    position: absolute;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.offer-arrow:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.offer-arrow--prev { left: 16px; }
.offer-arrow--next { right: 16px; }

/* Track — CSS scroll snap */
.offer-track {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    padding: 0 0 0 0;
}

.offer-track::-webkit-scrollbar { display: none; }

/* Card */
.offer-card {
    flex: 0 0 calc(33.333% - 3px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: opacity 0.2s;
}

.offer-card:hover { opacity: 0.92; }

/* Image area */
.offer-card-img {
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
    background: #c0c8d0;
}

.offer-card-img svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Caption */
.offer-card-label {
    padding: 14px 16px 16px;
    font-family: var(--font-main);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.45;
    background: #fff;
    border-top: 2px solid var(--light-gray);
    text-align: center;
    letter-spacing: 0.1px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dots */
.offer-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 28px;
}

.offer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.offer-dot.active {
    background: var(--navy);
    transform: scale(1.25);
}

/* =============================================
   EXPERTISE SECTION
   ============================================= */
.expertise-section {
    padding: 80px 0;
    background: var(--white);
}

.expertise-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.expertise-left {}

.expertise-title {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 28px;
}

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

.expertise-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray);
    padding: 7px 0;
    line-height: 1.5;
    border-bottom: 1px solid var(--light-gray);
}

.expertise-list li:last-child { border-bottom: none; }

.expertise-list li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    margin-top: 7px;
}

.expertise-right {}

.floorplan-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--light-gray);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.floorplan-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================================
   STRUCTURE BANNER
   ============================================= */
.structure-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #d8e8f0;
}

.structure-banner-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/sketch-bg.jpg');
    background-size: cover;
    background-position: center;
}

.structure-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(200,225,235,0.2) 0%,
        rgba(200,225,235,0.55) 50%,
        rgba(180,210,225,0.75) 100%
    );
}

/* SVG sketch placeholder overlay */
.sketch-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.structure-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 32px;
}

.structure-label {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.6rem);
    color: var(--dark-text);
    text-transform: uppercase;
    line-height: 1.05;
    max-width: 600px;
    margin-bottom: 16px;
}

.structure-sub {
    font-size: 0.95rem;
    color: var(--dark-text);
    opacity: 0.7;
    max-width: 520px;
    line-height: 1.65;
}

/* =============================================
   SUSTAINABLE SECTION
   ============================================= */
.sustainable-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.sustainable-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.sustainable-left {}

.sustainable-headline {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--teal);
    text-transform: uppercase;
    line-height: 1.1;
}

.sustainable-right {}

.sustain-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.sustain-icon-box {
    width: 56px;
    height: 56px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    background: var(--light-gray);
}

.sustain-item-text {}

.sustain-item-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--dark-text);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sustain-item-desc {
    font-size: 0.84rem;
    color: var(--gray);
    line-height: 1.5;
}

/* =============================================
   EXPERTISE/SERVICES GRID — (legacy, kept for other pages)
   ============================================= */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--off-white);
    padding: 32px 24px;
    border: 1px solid var(--border);
    border-radius: 4px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--teal);
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.1);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: var(--orange);
}

.service-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark-text);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.service-description {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* =============================================
   WHAT SETS US APART SECTION
   ============================================= */
.apart-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid var(--border);
}

.apart-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Single-column layout: quote on top, cards below */
.apart-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.apart-quote-col {
    max-width: 720px;
}

.apart-title {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--dark-text);
    line-height: 1.55;
    letter-spacing: -0.2px;
}

.apart-cards-col {}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.category-card {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    text-align: left;
    transition: none;
}

.category-card:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.category-icon {
    margin-bottom: 16px;
    height: 64px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.category-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--dark-text);
    margin-bottom: 10px;
    letter-spacing: 0;
}

/* Accent title colors matching image */
.category-title--teal  { color: var(--teal-dark); }
.category-title--orange { color: var(--orange, #e07b2a); }

.category-description {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.65;
}

/* =============================================
   PROJECTS SECTION
   ============================================= */
.projects-section {
    padding: 80px 0;
    background: #fff;
}

.projects-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.project-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

.project-card:hover {
    border-color: var(--teal);
    box-shadow: 0 12px 32px rgba(78, 205, 196, 0.15);
    transform: translateY(-6px);
}

.project-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--light-gray);
    position: relative;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img {
    transform: scale(1.06);
}

.project-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,47,74,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.project-card:hover .project-img-overlay {
    background: rgba(26,47,74,0.45);
}

.project-img-zoom {
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.project-card:hover .project-img-zoom {
    opacity: 1;
    transform: scale(1);
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--off-white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--gray);
}

.project-info {
    padding: 28px 24px;
}

.project-category {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.project-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.project-contribute {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
}

/* =============================================
   PROJECT MODAL
   ============================================= */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 4px;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark-text);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition);
}

.modal-close:hover { color: var(--dark-text); }

.modal-body {
    padding: 32px 24px;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.modal-image {
    width: 100%;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    background: var(--light-gray);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.modal-info-item {}

.modal-info-label {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.modal-info-value {
    font-size: 0.95rem;
    color: var(--gray);
}

.modal-description {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.75;
}

/* Project modal — image lightbox style */
.modal-content--project {
    background: #111;
    max-width: 900px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
}

.modal-content--project .modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-content--project .modal-close:hover {
    background: rgba(0,0,0,0.85);
}

.modal-project-img-wrap {
    flex: 1;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.modal-project-img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.modal-project-info {
    padding: 20px 24px;
    background: #fff;
}

.modal-project-title {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin: 6px 0 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--navy-dark);
    color: #fff;
}

.footer-main {
    padding: 28px 0 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-contacts {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
}

.footer-contact-item i {
    font-size: 1rem;
    opacity: 0.9;
}

.footer-contact-item:hover {
    color: #fff;
}

.footer-star {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 18px 40px;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom strong {
    color: #fff;
}

/* =============================================
   CAREER PAGE
   ============================================= */

/* What is it like to work here */
.ww-section {
    background: #fff;
    padding: 80px 0 72px;
}

.ww-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.ww-heading {
    font-family: var(--font-main);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 52px;
}

.ww-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ww-card {
    background: #f5f6f8;
    border-radius: 4px;
    padding: 44px 36px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ww-icon {
    font-size: 2rem;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.ww-card-title {
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.ww-card-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

/* Open Positions */
.career-pos-section {
    background: #f8f9fb;
    padding: 72px 0;
}

.career-pos-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.career-pos-heading {
    font-family: var(--font-main);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 36px;
    letter-spacing: 0.03em;
}

.career-pos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.career-pos-card {
    background: #fff;
    border: 1px solid #e0e4ea;
    border-radius: 4px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.career-pos-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.career-pos-title {
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

.career-pos-location {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.career-pos-location i {
    color: var(--teal);
    font-size: 0.75rem;
}

.career-pos-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.career-apply-btn {
    display: inline-block;
    margin-top: 4px;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background: var(--navy);
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s;
}

.career-apply-btn:hover {
    background: var(--teal-dark);
    color: #fff;
}

/* Application Process */
.career-proc-section {
    background: #fff;
    padding: 72px 0 80px;
}

.career-proc-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.career-proc-heading {
    font-family: var(--font-main);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 32px;
    letter-spacing: 0.03em;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--teal);
    display: inline-block;
}

.career-proc-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.career-proc-intro {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 16px;
}

.career-proc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.career-proc-list li {
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: #444;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
}

.career-proc-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal-dark);
    font-weight: 700;
}

.career-proc-contact {
    background: #f8f9fb;
    border: 1px solid #e0e4ea;
    border-radius: 6px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.career-proc-send {
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: #555;
    margin: 0;
}

.career-proc-email {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--teal-dark);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.career-proc-email:hover {
    color: var(--navy);
}

.career-proc-subject {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* =============================================
   CONTACT PAGE — FORM SECTION
   ============================================= */
.ctc-form-section {
    background: #f8f9fb;
    padding: 72px 0 80px;
}

.ctc-form-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.ctc-form-title {
    font-family: var(--font-main);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.ctc-form-sub {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 32px;
}

.ctc-alert {
    padding: 14px 18px;
    border-radius: 3px;
    margin-bottom: 24px;
    font-size: 0.92rem;
    font-family: var(--font-body);
}

.ctc-alert--success {
    background: #e8f5e9;
    border: 1.5px solid #a5d6a7;
    color: #2e7d32;
    font-weight: 600;
}

.ctc-alert--error {
    background: #ffebee;
    border: 1.5px solid #ef9a9a;
    color: #c62828;
}

.ctc-alert--error p {
    margin: 4px 0 0;
}

.ctc-form {
    background: #fff;
    border: 1px solid #e0e4ea;
    border-radius: 6px;
    padding: 36px;
}

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

.ctc-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.ctc-form-row .ctc-form-group {
    margin-bottom: 0;
}

.ctc-form-group label {
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ctc-req {
    color: #c62828;
}

.ctc-form-group input,
.ctc-form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid #d0d8e4;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #333;
    background: #fafbfc;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.ctc-form-group input:focus,
.ctc-form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.ctc-form-group textarea {
    resize: vertical;
    font-family: var(--font-body);
}

.ctc-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--navy);
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}

.ctc-submit-btn:hover {
    background: var(--teal-dark);
}

/* =============================================
   SERVICES PAGE — PRODUCT & SERVICES SECTION
   ============================================= */
.ps-section {
    position: relative;
    background: #fff;
    padding: 80px 0 72px;
    overflow: hidden;
}

.ps-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.ps-deco--tr {
    top: 0;
    right: 0;
}

.ps-deco--bl {
    bottom: 0;
    left: 0;
}

.ps-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

.ps-title {
    font-family: var(--font-main);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 36px;
    letter-spacing: 0.01em;
}

.ps-body {}

.ps-intro {
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: #333;
    line-height: 1.75;
    margin-bottom: 28px;
    text-align: justify;
}

.ps-company {
    font-weight: 700;
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ps-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ps-bullet {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--navy);
    line-height: 1.55;
    margin-top: 1px;
    font-weight: 700;
}

.ps-item-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ps-item-name {
    font-family: var(--font-body);
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.55;
}

.ps-item-desc {
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: #555;
    line-height: 1.65;
}

/* =============================================
   ABOUT US PAGE — AU SECTION
   ============================================= */
.au-section {
    position: relative;
    background: #fff;
    padding: 80px 0 72px;
    overflow: hidden;
}

.au-deco {
    position: absolute;
    pointer-events: none;
}

.au-deco--tr {
    top: 0;
    right: 0;
}

.au-deco--bl {
    bottom: 0;
    left: 0;
}

.au-deco--tl {
    top: 0;
    left: 0;
    width: 12px;
    height: 60%;
    background: linear-gradient(to bottom, var(--teal) 0%, transparent 100%);
    opacity: 0.35;
}

.au-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px 0 32px;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 48px;
    align-items: start;
}

.au-label-col {
    padding-top: 4px;
}

.au-label {
    font-family: var(--font-main);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 900;
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 6px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.au-text-col {}

.au-paragraph {
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: #333;
    line-height: 1.75;
    text-align: justify;
    margin-bottom: 22px;
}

.au-paragraph:last-child {
    margin-bottom: 0;
}

.au-company-name {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--navy);
}

/* =============================================
   ABOUT US PAGE — PILLARS STRIP
   ============================================= */
.au-pillars-strip {
    background: var(--navy);
    padding: 28px 40px;
}

.au-pillars-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.au-pillar {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
}

.au-pillar-icon {
    color: var(--teal);
    font-size: 1.2rem;
    line-height: 1;
}

.au-pillar-word {
    font-family: var(--font-main);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.au-pillar-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* =============================================
   ABOUT US PAGE — VISION & MISSION
   ============================================= */
.vm-section {
    background: #f8f9fb;
    padding: 72px 0;
}

.vm-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    align-items: center;
}

.vm-logo-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.vm-logo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2.5px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
}

.vm-logo-img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.vm-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--navy);
    letter-spacing: 0.08em;
    text-align: center;
}

.vm-logo-text-light {
    font-weight: 400;
    font-size: 0.72rem;
    color: #777;
    letter-spacing: 0.05em;
}

.vm-content-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.vm-block {}

.vm-heading {
    font-family: var(--font-main);
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.vm-heading-accent {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
}

.vm-accent-teal {
    color: #7c4ddb;
}

.vm-accent-orange {
    color: #d32f2f;
}

.vm-heading-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.1em;
    font-family: var(--font-body);
}

.vm-text {
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: #333;
    line-height: 1.75;
    text-align: justify;
    margin: 0;
}

/* =============================================
   ABOUT US PAGE — MANAGEMENT & TEAM
   ============================================= */
.mgmt-section {
    background: #fff;
    padding: 72px 0;
}

.mgmt-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.mgmt-title {
    font-family: var(--font-main);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.mgmt-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #333;
    line-height: 1.75;
    text-align: justify;
    margin-bottom: 18px;
}

.mgmt-text:last-child {
    margin-bottom: 0;
}

.mgmt-method-box {
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    padding: 28px 24px 24px;
    text-align: center;
}

.mgmt-method-title {
    font-family: var(--font-main);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    text-transform: uppercase;
    line-height: 1.3;
}

.mgmt-diagram {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
}

.diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.diagram-label {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-family: var(--font-main);
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-align: center;
}

.diagram-avatar {
    margin-bottom: 2px;
}

.diagram-label--tl { top: 0;   left: 0; }
.diagram-label--tr { top: 0;   right: 0; }
.diagram-label--bl { bottom: 0; left: 0; }
.diagram-label--br { bottom: 0; right: 0; }

.mgmt-method-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.mgmt-method-list li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #333;
    padding: 4px 0 4px 20px;
    position: relative;
}

.mgmt-method-list li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--navy);
    font-size: 1rem;
}

/* =============================================
   ABOUT US PAGE — LEGAL SECTION
   ============================================= */
.legal-section {
    background: #f8f9fb;
    padding: 64px 0;
}

.legal-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

.legal-text-block {
    flex: 1;
    min-width: 280px;
}

.legal-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #333;
    line-height: 1.75;
    margin-bottom: 24px;
}

.legal-request-btn {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}

.legal-request-btn:hover {
    background: var(--teal-dark);
}

.legal-docs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 160px;
}

.legal-doc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 600;
}

.legal-doc-item i {
    font-size: 1.2rem;
    color: var(--teal-dark);
    width: 22px;
    text-align: center;
}

.legal-form-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.legal-form-wrap.active {
    max-height: 700px;
    margin-top: 32px;
}

.legal-form-inner {
    background: #fff;
    border: 1px solid #e0e4ea;
    border-radius: 6px;
    padding: 36px;
}

.legal-form-title {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

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

.legal-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.legal-form-row .legal-form-group {
    margin-bottom: 0;
}

.legal-form-group label {
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.legal-form-group input,
.legal-form-group select,
.legal-form-group textarea {
    padding: 10px 12px;
    border: 1px solid #d0d5dd;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #333;
    transition: border-color 0.2s;
    background: #fafbfc;
    width: 100%;
    box-sizing: border-box;
}

.legal-form-group input:focus,
.legal-form-group select:focus,
.legal-form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.legal-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.legal-submit-btn {
    background: var(--navy);
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 11px 28px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}

.legal-submit-btn:hover {
    background: var(--teal-dark);
}

.legal-cancel-btn {
    background: transparent;
    color: #777;
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 11px 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
}

.legal-cancel-btn:hover {
    border-color: var(--navy);
    color: var(--navy);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    /* Offer slider: show 2 cards */
    .offer-card {
        flex: 0 0 calc(50% - 2px);
    }

    .offer-card-img { height: 360px; }

    .nav-container,
    .intro-inner,
    .expertise-inner,
    .apart-inner,
    .projects-inner,
    .career-content-inner,
    .footer-container {
        padding: 0 24px;
    }

    .logo-sub {
        display: none;
    }

    .nav-menu {
        gap: 24px;
    }

    .nav-link {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .modal-gallery {
        grid-template-columns: 1fr;
    }

    .modal-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 20px 32px;
        gap: 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-container,
    .intro-inner,
    .footer-container {
        padding: 0 20px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .hero-title {
        font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .expertise-section,
    .apart-section,
    .projects-section {
        padding: 60px 0;
    }

    .category-card {
        padding: 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .footer-contacts {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .footer-star {
        display: none;
    }

    .modal-content {
        max-width: 90vw;
    }

    .modal-header {
        padding: 20px 16px;
    }

    .modal-body {
        padding: 24px 16px;
    }

    .contact-us-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-us-inner {
        padding: 0 20px;
    }

    /* Career page responsive 768px */
    .ww-inner,
    .career-pos-inner,
    .career-proc-inner {
        padding: 0 20px;
    }

    .ww-grid {
        grid-template-columns: 1fr;
    }

    .career-pos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .career-proc-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Contact page form responsive 768px */
    .ctc-form-inner {
        padding: 0 20px;
    }

    .ctc-form-row {
        grid-template-columns: 1fr;
    }

    .ctc-form {
        padding: 24px 16px;
    }

    /* Services page responsive 768px */
    .ps-inner {
        padding: 0 20px;
    }

    /* About page responsive 768px */
    .au-pillars-strip {
        padding: 24px 20px;
    }

    .au-pillars-inner {
        gap: 0;
    }

    .au-pillar-word {
        font-size: 0.85rem;
    }

    .au-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }

    .au-label {
        font-size: 1.6rem;
    }

    .vm-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 20px;
    }

    .vm-logo-badge {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .mgmt-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .legal-inner {
        padding: 0 20px;
        flex-direction: column;
        gap: 28px;
    }

    .legal-form-wrap {
        padding: 0 20px;
    }

    .legal-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    /* Offer slider: show 1 card */
    .offer-card {
        flex: 0 0 90%;
    }
    .offer-card-img { height: 300px; }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .nav-container {
        padding: 0 16px;
        height: 60px;
    }

    .nav-menu {
        padding: 16px;
    }

    .logo-icon {
        width: 28px;
    }

    .hero-title {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
    }

    .intro-inner,
    .expertise-inner,
    .apart-inner,
    .projects-inner,
    .footer-container {
        padding: 0 16px;
        gap: 24px;
    }

    .service-card,
    .project-card {
        padding: 20px 16px;
    }

    .section-title {
        font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        text-align: left;
    }

    .service-icon {
        display: none;
    }

    .modal-info {
        grid-template-columns: 1fr;
    }

    .footer-contacts {
        gap: 10px;
    }

    .contact-us-body {
        grid-template-columns: 1fr;
    }

    .contact-us-map iframe {
        height: 240px;
    }

    .contact-us-deco-img {
        height: 60px;
    }

    .career-pos-grid {
        grid-template-columns: 1fr;
    }

    .ww-card {
        padding: 32px 20px 28px;
    }

    .au-inner {
        padding: 0 16px;
    }

    .vm-inner,
    .mgmt-inner,
    .legal-inner,
    .legal-form-wrap {
        padding: 0 16px;
    }

    .vm-logo-badge {
        flex-direction: column;
    }

    .mgmt-method-box {
        padding: 20px 16px;
    }

    .legal-form-inner {
        padding: 24px 16px;
    }
}
